@tsonic/efcore 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -36,6 +36,8 @@ export type SharedTableEntryValueFactory_1<TValue> = (table: ITable, comparer: I
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
export interface IRowForeignKeyValueFactory$instance {
|
|
39
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
40
|
+
|
|
39
41
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
40
42
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
41
43
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -45,6 +47,8 @@ export interface IRowForeignKeyValueFactory$instance {
|
|
|
45
47
|
export type IRowForeignKeyValueFactory = IRowForeignKeyValueFactory$instance;
|
|
46
48
|
|
|
47
49
|
export interface IRowForeignKeyValueFactory_1$instance<TKey> extends IRowForeignKeyValueFactory {
|
|
50
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
51
|
+
|
|
48
52
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
49
53
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
50
54
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
@@ -60,6 +64,8 @@ export interface IRowForeignKeyValueFactory_1$instance<TKey> extends IRowForeign
|
|
|
60
64
|
export type IRowForeignKeyValueFactory_1<TKey> = IRowForeignKeyValueFactory_1$instance<TKey>;
|
|
61
65
|
|
|
62
66
|
export interface IRowForeignKeyValueFactoryFactory$instance {
|
|
67
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactoryFactory: never;
|
|
68
|
+
|
|
63
69
|
Create(foreignKey: IForeignKeyConstraint): IRowForeignKeyValueFactory;
|
|
64
70
|
}
|
|
65
71
|
|
|
@@ -67,6 +73,8 @@ export interface IRowForeignKeyValueFactoryFactory$instance {
|
|
|
67
73
|
export type IRowForeignKeyValueFactoryFactory = IRowForeignKeyValueFactoryFactory$instance;
|
|
68
74
|
|
|
69
75
|
export interface IRowIdentityMap$instance {
|
|
76
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIdentityMap: never;
|
|
77
|
+
|
|
70
78
|
readonly Rows: IEnumerable<INonTrackedModificationCommand>;
|
|
71
79
|
Add(keyValues: unknown[], command: INonTrackedModificationCommand): void;
|
|
72
80
|
Clear(): void;
|
|
@@ -78,6 +86,8 @@ export interface IRowIdentityMap$instance {
|
|
|
78
86
|
export type IRowIdentityMap = IRowIdentityMap$instance;
|
|
79
87
|
|
|
80
88
|
export interface IRowIdentityMapFactory$instance {
|
|
89
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIdentityMapFactory: never;
|
|
90
|
+
|
|
81
91
|
Create(key: IUniqueConstraint): IRowIdentityMap;
|
|
82
92
|
}
|
|
83
93
|
|
|
@@ -85,6 +95,8 @@ export interface IRowIdentityMapFactory$instance {
|
|
|
85
95
|
export type IRowIdentityMapFactory = IRowIdentityMapFactory$instance;
|
|
86
96
|
|
|
87
97
|
export interface IRowIndexValueFactory$instance {
|
|
98
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory: never;
|
|
99
|
+
|
|
88
100
|
CreateIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown[], System_Internal.Boolean>;
|
|
89
101
|
}
|
|
90
102
|
|
|
@@ -92,6 +104,8 @@ export interface IRowIndexValueFactory$instance {
|
|
|
92
104
|
export type IRowIndexValueFactory = IRowIndexValueFactory$instance;
|
|
93
105
|
|
|
94
106
|
export interface IRowIndexValueFactory_1$instance<TKey> extends IRowIndexValueFactory {
|
|
107
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory_1: never;
|
|
108
|
+
|
|
95
109
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
96
110
|
CreateIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown[], System_Internal.Boolean>;
|
|
97
111
|
TryCreateIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: TKey, hasNullValue: boolean): boolean;
|
|
@@ -105,6 +119,8 @@ export interface IRowIndexValueFactory_1$instance<TKey> extends IRowIndexValueFa
|
|
|
105
119
|
export type IRowIndexValueFactory_1<TKey> = IRowIndexValueFactory_1$instance<TKey>;
|
|
106
120
|
|
|
107
121
|
export interface IRowIndexValueFactoryFactory$instance {
|
|
122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactoryFactory: never;
|
|
123
|
+
|
|
108
124
|
Create(index: ITableIndex): IRowIndexValueFactory;
|
|
109
125
|
}
|
|
110
126
|
|
|
@@ -112,6 +128,8 @@ export interface IRowIndexValueFactoryFactory$instance {
|
|
|
112
128
|
export type IRowIndexValueFactoryFactory = IRowIndexValueFactoryFactory$instance;
|
|
113
129
|
|
|
114
130
|
export interface IRowKeyValueFactory$instance {
|
|
131
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory: never;
|
|
132
|
+
|
|
115
133
|
CreateEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
116
134
|
CreateKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
117
135
|
}
|
|
@@ -120,6 +138,8 @@ export interface IRowKeyValueFactory$instance {
|
|
|
120
138
|
export type IRowKeyValueFactory = IRowKeyValueFactory$instance;
|
|
121
139
|
|
|
122
140
|
export interface IRowKeyValueFactory_1$instance<TKey> extends IRowKeyValueFactory {
|
|
141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory_1: never;
|
|
142
|
+
|
|
123
143
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
124
144
|
CreateEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
125
145
|
CreateKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -132,19 +152,19 @@ export interface IRowKeyValueFactory_1$instance<TKey> extends IRowKeyValueFactor
|
|
|
132
152
|
export type IRowKeyValueFactory_1<TKey> = IRowKeyValueFactory_1$instance<TKey>;
|
|
133
153
|
|
|
134
154
|
export interface IRowKeyValueFactoryFactory$instance {
|
|
155
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactoryFactory: never;
|
|
156
|
+
|
|
135
157
|
Create(key: IUniqueConstraint): IRowKeyValueFactory;
|
|
136
158
|
}
|
|
137
159
|
|
|
138
160
|
|
|
139
161
|
export type IRowKeyValueFactoryFactory = IRowKeyValueFactoryFactory$instance;
|
|
140
162
|
|
|
141
|
-
export
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
163
|
+
export interface BatchExecutor$instance {
|
|
164
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IBatchExecutor: never;
|
|
145
165
|
|
|
146
|
-
export interface BatchExecutor$instance extends BatchExecutor$protected {
|
|
147
166
|
readonly CurrentContext: ICurrentDbContext;
|
|
167
|
+
readonly UpdateLogger: IDiagnosticsLogger_1<DbLoggerCategory_Update>;
|
|
148
168
|
Execute(commandBatches: IEnumerable<ModificationCommandBatch>, connection: IRelationalConnection): int;
|
|
149
169
|
ExecuteAsync(commandBatches: IEnumerable<ModificationCommandBatch>, connection: IRelationalConnection, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
150
170
|
}
|
|
@@ -177,15 +197,14 @@ export const ColumnAccessors: {
|
|
|
177
197
|
|
|
178
198
|
export type ColumnAccessors = ColumnAccessors$instance;
|
|
179
199
|
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
}
|
|
184
|
-
|
|
200
|
+
export interface CommandBatchPreparer$instance {
|
|
201
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
202
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_ICommandBatchPreparer: never;
|
|
185
203
|
|
|
186
|
-
|
|
204
|
+
readonly Dependencies: CommandBatchPreparerDependencies;
|
|
187
205
|
BatchCommands(entries: IList<IUpdateEntry>, updateAdapter: IUpdateAdapter): IEnumerable<ModificationCommandBatch>;
|
|
188
206
|
CreateCommandBatches(commandSet: IEnumerable<IReadOnlyModificationCommand>, moreCommandSets: boolean): IEnumerable<ModificationCommandBatch>;
|
|
207
|
+
CreateModificationCommands(entries: IList<IUpdateEntry>, updateAdapter: IUpdateAdapter, generateParameterName: Func<System_Internal.String>): IEnumerable<IReadOnlyModificationCommand>;
|
|
189
208
|
TopologicalSort(commands: IEnumerable<IReadOnlyModificationCommand>): IReadOnlyList<List<IReadOnlyModificationCommand>>;
|
|
190
209
|
}
|
|
191
210
|
|
|
@@ -206,6 +225,8 @@ export type CommandBatchPreparer = CommandBatchPreparer$instance & __CommandBatc
|
|
|
206
225
|
|
|
207
226
|
|
|
208
227
|
export interface CommandBatchPreparerDependencies$instance {
|
|
228
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
229
|
+
|
|
209
230
|
LoggingOptions: ILoggingOptions;
|
|
210
231
|
ModificationCommandBatchFactory: IModificationCommandBatchFactory;
|
|
211
232
|
ModificationCommandComparer: IComparer<IReadOnlyModificationCommand>;
|
|
@@ -228,23 +249,22 @@ export const CommandBatchPreparerDependencies: {
|
|
|
228
249
|
|
|
229
250
|
export type CommandBatchPreparerDependencies = CommandBatchPreparerDependencies$instance;
|
|
230
251
|
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
protected TryCreateDependentKeyValue4(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[], hasNullValue: boolean): boolean;
|
|
235
|
-
protected TryCreateDependentKeyValue6(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[], hasNullValue: boolean): boolean;
|
|
236
|
-
}
|
|
237
|
-
|
|
252
|
+
export interface CompositeRowForeignKeyValueFactory$instance extends CompositeRowValueFactory {
|
|
253
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
254
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
238
255
|
|
|
239
|
-
export interface CompositeRowForeignKeyValueFactory$instance extends CompositeRowForeignKeyValueFactory$protected, CompositeRowValueFactory {
|
|
240
256
|
EqualityComparer: IEqualityComparer<(unknown | undefined)[]>;
|
|
257
|
+
readonly ValueConverters: List<ValueConverter | undefined> | undefined;
|
|
241
258
|
CreateDependentEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown | undefined;
|
|
242
259
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
243
260
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
244
261
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
245
262
|
TryCreateDependentKeyValue(keyValues: unknown[], key: unknown[]): boolean;
|
|
263
|
+
TryCreateDependentKeyValue(keyValues: unknown[], key: unknown[], hasNullValue: boolean): boolean;
|
|
246
264
|
TryCreateDependentKeyValue(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[]): boolean;
|
|
265
|
+
TryCreateDependentKeyValue(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[], hasNullValue: boolean): boolean;
|
|
247
266
|
TryCreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[]): boolean;
|
|
267
|
+
TryCreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[], hasNullValue: boolean): boolean;
|
|
248
268
|
}
|
|
249
269
|
|
|
250
270
|
|
|
@@ -262,6 +282,9 @@ export type CompositeRowForeignKeyValueFactory = CompositeRowForeignKeyValueFact
|
|
|
262
282
|
|
|
263
283
|
|
|
264
284
|
export interface CompositeRowIndexValueFactory$instance extends CompositeRowValueFactory {
|
|
285
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory: never;
|
|
286
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory_1: never;
|
|
287
|
+
|
|
265
288
|
CreateEquatableIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown, System_Internal.Boolean>;
|
|
266
289
|
CreateIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown[], System_Internal.Boolean>;
|
|
267
290
|
TryCreateIndexValue(keyValues: unknown[], key: unknown[], hasNullValue: boolean): boolean;
|
|
@@ -284,6 +307,9 @@ export type CompositeRowIndexValueFactory = CompositeRowIndexValueFactory$instan
|
|
|
284
307
|
|
|
285
308
|
|
|
286
309
|
export interface CompositeRowKeyValueFactory$instance extends CompositeRowValueFactory {
|
|
310
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory: never;
|
|
311
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory_1: never;
|
|
312
|
+
|
|
287
313
|
CreateEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
288
314
|
CreateKeyValue(keyValues: unknown[]): (unknown | undefined)[];
|
|
289
315
|
CreateKeyValue(keyValues: IDictionary<System_Internal.String, unknown>): (unknown | undefined)[];
|
|
@@ -304,25 +330,20 @@ export interface __CompositeRowKeyValueFactory$views {
|
|
|
304
330
|
export type CompositeRowKeyValueFactory = CompositeRowKeyValueFactory$instance & __CompositeRowKeyValueFactory$views;
|
|
305
331
|
|
|
306
332
|
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
protected readonly ValueConverters: List<ValueConverter | undefined> | undefined;
|
|
310
|
-
protected TryCreateDependentKeyValue(keyValues: unknown[], key: unknown[], hasNullValue: boolean): boolean;
|
|
311
|
-
protected TryCreateDependentKeyValue(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[], hasNullValue: boolean): boolean;
|
|
312
|
-
protected TryCreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[], hasNullValue: boolean): boolean;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
export interface CompositeRowValueFactory$instance extends CompositeRowValueFactory$protected {
|
|
333
|
+
export interface CompositeRowValueFactory$instance {
|
|
334
|
+
readonly Columns: IReadOnlyList<IColumn>;
|
|
317
335
|
EqualityComparer: IEqualityComparer<(unknown | undefined)[]>;
|
|
336
|
+
readonly ValueConverters: List<ValueConverter | undefined> | undefined;
|
|
318
337
|
TryCreateDependentKeyValue(keyValues: unknown[], key: unknown[]): boolean;
|
|
338
|
+
TryCreateDependentKeyValue(keyValues: unknown[], key: unknown[], hasNullValue: boolean): boolean;
|
|
319
339
|
TryCreateDependentKeyValue(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[]): boolean;
|
|
340
|
+
TryCreateDependentKeyValue(keyValues: IDictionary<System_Internal.String, unknown>, key: unknown[], hasNullValue: boolean): boolean;
|
|
320
341
|
TryCreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[]): boolean;
|
|
342
|
+
TryCreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues: boolean, key: unknown[], hasNullValue: boolean): boolean;
|
|
321
343
|
}
|
|
322
344
|
|
|
323
345
|
|
|
324
|
-
export const CompositeRowValueFactory: {
|
|
325
|
-
new(columns: IReadOnlyList<IColumn>): CompositeRowValueFactory;
|
|
346
|
+
export const CompositeRowValueFactory: (abstract new(columns: IReadOnlyList<IColumn>) => CompositeRowValueFactory) & {
|
|
326
347
|
CreateEqualityComparer(columns: IReadOnlyList<IColumn>, valueConverters: List<ValueConverter>): IEqualityComparer<(unknown | undefined)[]>;
|
|
327
348
|
};
|
|
328
349
|
|
|
@@ -330,6 +351,8 @@ export const CompositeRowValueFactory: {
|
|
|
330
351
|
export type CompositeRowValueFactory = CompositeRowValueFactory$instance;
|
|
331
352
|
|
|
332
353
|
export interface ModificationCommandComparer$instance {
|
|
354
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
355
|
+
|
|
333
356
|
Compare(x: IReadOnlyModificationCommand, y: IReadOnlyModificationCommand): int;
|
|
334
357
|
}
|
|
335
358
|
|
|
@@ -342,6 +365,8 @@ export const ModificationCommandComparer: {
|
|
|
342
365
|
export type ModificationCommandComparer = ModificationCommandComparer$instance;
|
|
343
366
|
|
|
344
367
|
export interface ModificationCommandFactory$instance {
|
|
368
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandFactory: never;
|
|
369
|
+
|
|
345
370
|
CreateModificationCommand(modificationCommandParameters: ModificationCommandParameters): IModificationCommand;
|
|
346
371
|
CreateNonTrackedModificationCommand(modificationCommandParameters: NonTrackedModificationCommandParameters): INonTrackedModificationCommand;
|
|
347
372
|
}
|
|
@@ -362,10 +387,13 @@ export type ModificationCommandFactory = ModificationCommandFactory$instance & _
|
|
|
362
387
|
|
|
363
388
|
|
|
364
389
|
export interface RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
390
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
391
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
392
|
+
|
|
365
393
|
readonly Column: IColumn;
|
|
366
394
|
readonly ColumnAccessors: ColumnAccessors;
|
|
367
395
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
368
|
-
readonly ValueConverter: ValueConverter;
|
|
396
|
+
readonly ValueConverter: ValueConverter | undefined;
|
|
369
397
|
CreateDependentEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown | undefined;
|
|
370
398
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
371
399
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
@@ -376,8 +404,7 @@ export interface RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
|
376
404
|
}
|
|
377
405
|
|
|
378
406
|
|
|
379
|
-
export const RowForeignKeyValueFactory_2: {
|
|
380
|
-
new<TKey, TForeignKey>(foreignKey: IForeignKeyConstraint, column: IColumn, columnAccessors: ColumnAccessors): RowForeignKeyValueFactory_2<TKey, TForeignKey>;
|
|
407
|
+
export const RowForeignKeyValueFactory_2: (abstract new<TKey, TForeignKey>(foreignKey: IForeignKeyConstraint, column: IColumn, columnAccessors: ColumnAccessors) => RowForeignKeyValueFactory_2<TKey, TForeignKey>) & {
|
|
381
408
|
};
|
|
382
409
|
|
|
383
410
|
|
|
@@ -390,6 +417,8 @@ export type RowForeignKeyValueFactory_2<TKey, TForeignKey> = RowForeignKeyValueF
|
|
|
390
417
|
|
|
391
418
|
|
|
392
419
|
export interface RowForeignKeyValueFactoryFactory$instance {
|
|
420
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactoryFactory: never;
|
|
421
|
+
|
|
393
422
|
Create(foreignKey: IForeignKeyConstraint): IRowForeignKeyValueFactory;
|
|
394
423
|
}
|
|
395
424
|
|
|
@@ -410,14 +439,12 @@ export interface RowForeignKeyValueFactoryFactory$instance extends IRowForeignKe
|
|
|
410
439
|
export type RowForeignKeyValueFactoryFactory = RowForeignKeyValueFactoryFactory$instance & __RowForeignKeyValueFactoryFactory$views;
|
|
411
440
|
|
|
412
441
|
|
|
413
|
-
export
|
|
414
|
-
|
|
415
|
-
}
|
|
442
|
+
export interface RowIdentityMap_1$instance<TKey> {
|
|
443
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIdentityMap: never;
|
|
416
444
|
|
|
417
|
-
|
|
418
|
-
export interface RowIdentityMap_1$instance<TKey> extends RowIdentityMap_1$protected<TKey> {
|
|
419
445
|
readonly Rows: IEnumerable<INonTrackedModificationCommand>;
|
|
420
446
|
Add(keyValues: unknown[], command: INonTrackedModificationCommand): void;
|
|
447
|
+
Add(key: TKey, command: INonTrackedModificationCommand): void;
|
|
421
448
|
Clear(): void;
|
|
422
449
|
FindCommand(keyValues: unknown[]): INonTrackedModificationCommand | undefined;
|
|
423
450
|
Remove(command: INonTrackedModificationCommand): void;
|
|
@@ -439,6 +466,8 @@ export type RowIdentityMap_1<TKey> = RowIdentityMap_1$instance<TKey> & __RowIden
|
|
|
439
466
|
|
|
440
467
|
|
|
441
468
|
export interface RowIdentityMapFactory$instance {
|
|
469
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIdentityMapFactory: never;
|
|
470
|
+
|
|
442
471
|
Create(key: IUniqueConstraint): IRowIdentityMap;
|
|
443
472
|
}
|
|
444
473
|
|
|
@@ -458,6 +487,8 @@ export type RowIdentityMapFactory = RowIdentityMapFactory$instance & __RowIdenti
|
|
|
458
487
|
|
|
459
488
|
|
|
460
489
|
export interface RowIndexValueFactoryFactory$instance {
|
|
490
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactoryFactory: never;
|
|
491
|
+
|
|
461
492
|
Create(index: ITableIndex): IRowIndexValueFactory;
|
|
462
493
|
}
|
|
463
494
|
|
|
@@ -477,6 +508,8 @@ export type RowIndexValueFactoryFactory = RowIndexValueFactoryFactory$instance &
|
|
|
477
508
|
|
|
478
509
|
|
|
479
510
|
export interface RowKeyValueFactoryFactory$instance {
|
|
511
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactoryFactory: never;
|
|
512
|
+
|
|
480
513
|
Create(key: IUniqueConstraint): IRowKeyValueFactory;
|
|
481
514
|
}
|
|
482
515
|
|
|
@@ -511,6 +544,9 @@ export const SharedTableEntryMap_1: {
|
|
|
511
544
|
export type SharedTableEntryMap_1<TValue> = SharedTableEntryMap_1$instance<TValue>;
|
|
512
545
|
|
|
513
546
|
export interface SimpleFullyNullableRowForeignKeyValueFactory_2$instance<TKey, TForeignKey> extends RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
547
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
548
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
549
|
+
|
|
514
550
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
515
551
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
516
552
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -534,6 +570,9 @@ export type SimpleFullyNullableRowForeignKeyValueFactory_2<TKey, TForeignKey> =
|
|
|
534
570
|
|
|
535
571
|
|
|
536
572
|
export interface SimpleNonNullableRowForeignKeyValueFactory_2$instance<TKey, TForeignKey> extends RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
573
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
574
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
575
|
+
|
|
537
576
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
538
577
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
539
578
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -557,6 +596,9 @@ export type SimpleNonNullableRowForeignKeyValueFactory_2<TKey, TForeignKey> = Si
|
|
|
557
596
|
|
|
558
597
|
|
|
559
598
|
export interface SimpleNullablePrincipalRowForeignKeyValueFactory_2$instance<TKey, TForeignKey> extends RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
599
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
600
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
601
|
+
|
|
560
602
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
561
603
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
562
604
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -580,6 +622,9 @@ export type SimpleNullablePrincipalRowForeignKeyValueFactory_2<TKey, TForeignKey
|
|
|
580
622
|
|
|
581
623
|
|
|
582
624
|
export interface SimpleNullableRowForeignKeyValueFactory_2$instance<TKey extends unknown, TForeignKey> extends RowForeignKeyValueFactory_2$instance<TKey, TForeignKey> {
|
|
625
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory: never;
|
|
626
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowForeignKeyValueFactory_1: never;
|
|
627
|
+
|
|
583
628
|
CreateDependentKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[] | undefined;
|
|
584
629
|
CreatePrincipalEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
585
630
|
CreatePrincipalKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown[];
|
|
@@ -603,6 +648,9 @@ export type SimpleNullableRowForeignKeyValueFactory_2<TKey, TForeignKey> = Simpl
|
|
|
603
648
|
|
|
604
649
|
|
|
605
650
|
export interface SimpleRowIndexValueFactory_1$instance<TKey> {
|
|
651
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory: never;
|
|
652
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowIndexValueFactory_1: never;
|
|
653
|
+
|
|
606
654
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
607
655
|
CreateEquatableIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown, System_Internal.Boolean>;
|
|
608
656
|
CreateIndexValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): ValueTuple<unknown[], System_Internal.Boolean>;
|
|
@@ -626,6 +674,9 @@ export type SimpleRowIndexValueFactory_1<TKey> = SimpleRowIndexValueFactory_1$in
|
|
|
626
674
|
|
|
627
675
|
|
|
628
676
|
export interface SimpleRowKeyValueFactory_1$instance<TKey> {
|
|
677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory: never;
|
|
678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_Internal_IRowKeyValueFactory_1: never;
|
|
679
|
+
|
|
629
680
|
readonly EqualityComparer: IEqualityComparer<TKey>;
|
|
630
681
|
CreateEquatableKeyValue(command: IReadOnlyModificationCommand, fromOriginalValues?: boolean): unknown;
|
|
631
682
|
CreateKeyValue(keyValues: unknown[]): TKey;
|
|
@@ -648,6 +699,8 @@ export type SimpleRowKeyValueFactory_1<TKey> = SimpleRowKeyValueFactory_1$instan
|
|
|
648
699
|
|
|
649
700
|
|
|
650
701
|
export interface UpdateAdapter$instance {
|
|
702
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateAdapter: never;
|
|
703
|
+
|
|
651
704
|
CascadeDeleteTiming: CascadeTiming;
|
|
652
705
|
DeleteOrphansTiming: CascadeTiming;
|
|
653
706
|
readonly Entries: IEnumerable<IUpdateEntry>;
|
|
@@ -678,6 +731,8 @@ export type UpdateAdapter = UpdateAdapter$instance & __UpdateAdapter$views;
|
|
|
678
731
|
|
|
679
732
|
|
|
680
733
|
export interface UpdateAdapterFactory$instance {
|
|
734
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateAdapterFactory: never;
|
|
735
|
+
|
|
681
736
|
Create(): IUpdateAdapter;
|
|
682
737
|
CreateStandalone(model?: IModel): IUpdateAdapter;
|
|
683
738
|
}
|
|
@@ -18,6 +18,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
18
18
|
import type { Task, ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
19
19
|
|
|
20
20
|
export interface IValueGeneratorCache$instance {
|
|
21
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorCache: never;
|
|
22
|
+
|
|
21
23
|
GetOrAdd(property: IProperty, typeBase: ITypeBase, factory: Func<IProperty, ITypeBase, ValueGenerator>): ValueGenerator | undefined;
|
|
22
24
|
}
|
|
23
25
|
|
|
@@ -25,6 +27,8 @@ export interface IValueGeneratorCache$instance {
|
|
|
25
27
|
export type IValueGeneratorCache = IValueGeneratorCache$instance;
|
|
26
28
|
|
|
27
29
|
export interface IValueGeneratorSelector$instance {
|
|
30
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorSelector: never;
|
|
31
|
+
|
|
28
32
|
Select(property: IProperty, typeBase: ITypeBase): ValueGenerator | undefined;
|
|
29
33
|
TrySelect(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
30
34
|
}
|
|
@@ -72,13 +76,9 @@ export const GuidValueGenerator: {
|
|
|
72
76
|
|
|
73
77
|
export type GuidValueGenerator = GuidValueGenerator$instance;
|
|
74
78
|
|
|
75
|
-
export
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
export interface HiLoValueGenerator_1$instance<TValue> extends HiLoValueGenerator_1$protected<TValue>, ValueGenerator_1<TValue> {
|
|
79
|
+
export interface HiLoValueGenerator_1$instance<TValue> extends ValueGenerator_1<TValue> {
|
|
80
|
+
GetNewLowValue(): long;
|
|
81
|
+
GetNewLowValueAsync(cancellationToken?: CancellationToken): Task<System_Internal.Int64>;
|
|
82
82
|
Next(entry: EntityEntry): TValue;
|
|
83
83
|
Next(entry: EntityEntry): unknown;
|
|
84
84
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<TValue>;
|
|
@@ -86,14 +86,15 @@ export interface HiLoValueGenerator_1$instance<TValue> extends HiLoValueGenerato
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
export const HiLoValueGenerator_1: {
|
|
90
|
-
new<TValue>(generatorState: HiLoValueGeneratorState): HiLoValueGenerator_1<TValue>;
|
|
89
|
+
export const HiLoValueGenerator_1: (abstract new<TValue>(generatorState: HiLoValueGeneratorState) => HiLoValueGenerator_1<TValue>) & {
|
|
91
90
|
};
|
|
92
91
|
|
|
93
92
|
|
|
94
93
|
export type HiLoValueGenerator_1<TValue> = HiLoValueGenerator_1$instance<TValue>;
|
|
95
94
|
|
|
96
95
|
export interface HiLoValueGeneratorState$instance {
|
|
96
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
97
|
+
|
|
97
98
|
Dispose(): void;
|
|
98
99
|
Next<TValue>(getNewLowValue: Func<System_Internal.Int64>): TValue;
|
|
99
100
|
NextAsync<TValue>(getNewLowValue: Func<CancellationToken, Task<System_Internal.Int64>>, cancellationToken?: CancellationToken): ValueTask<TValue>;
|
|
@@ -107,12 +108,10 @@ export const HiLoValueGeneratorState: {
|
|
|
107
108
|
|
|
108
109
|
export type HiLoValueGeneratorState = HiLoValueGeneratorState$instance;
|
|
109
110
|
|
|
110
|
-
export
|
|
111
|
-
|
|
112
|
-
}
|
|
113
|
-
|
|
111
|
+
export interface RelationalValueGeneratorSelector$instance extends ValueGeneratorSelector$instance {
|
|
112
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorSelector: never;
|
|
114
113
|
|
|
115
|
-
|
|
114
|
+
FindForType(property: IProperty, typeBase: ITypeBase, clrType: Type): ValueGenerator | undefined;
|
|
116
115
|
Select(property: IProperty, typeBase: ITypeBase): ValueGenerator | undefined;
|
|
117
116
|
TrySelect(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
118
117
|
}
|
|
@@ -182,56 +181,44 @@ export const TemporaryNumberValueGeneratorFactory: {
|
|
|
182
181
|
|
|
183
182
|
export type TemporaryNumberValueGeneratorFactory = TemporaryNumberValueGeneratorFactory$instance;
|
|
184
183
|
|
|
185
|
-
export
|
|
186
|
-
protected abstract NextValue(entry: EntityEntry): unknown | undefined;
|
|
187
|
-
protected NextValueAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
export interface ValueGenerator$instance extends ValueGenerator$protected {
|
|
184
|
+
export interface ValueGenerator$instance {
|
|
192
185
|
readonly GeneratesStableValues: boolean;
|
|
193
186
|
readonly GeneratesTemporaryValues: boolean;
|
|
194
187
|
Next(entry: EntityEntry): unknown;
|
|
195
188
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
189
|
+
NextValue(entry: EntityEntry): unknown | undefined;
|
|
190
|
+
NextValueAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
196
191
|
WithConverter(converter: ValueConverter): ValueGenerator;
|
|
197
192
|
}
|
|
198
193
|
|
|
199
194
|
|
|
200
|
-
export const ValueGenerator: {
|
|
201
|
-
new(): ValueGenerator;
|
|
195
|
+
export const ValueGenerator: (abstract new() => ValueGenerator) & {
|
|
202
196
|
};
|
|
203
197
|
|
|
204
198
|
|
|
205
199
|
export type ValueGenerator = ValueGenerator$instance;
|
|
206
200
|
|
|
207
|
-
export
|
|
208
|
-
protected NextValue(entry: EntityEntry): unknown | undefined;
|
|
209
|
-
protected NextValueAsync2(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
210
|
-
protected NextValueAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
export interface ValueGenerator_1$instance<TValue> extends ValueGenerator_1$protected<TValue>, ValueGenerator {
|
|
201
|
+
export interface ValueGenerator_1$instance<TValue> extends ValueGenerator {
|
|
215
202
|
Next(entry: EntityEntry): TValue;
|
|
216
203
|
Next(entry: EntityEntry): unknown;
|
|
217
204
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<TValue>;
|
|
218
205
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
206
|
+
NextValue(entry: EntityEntry): unknown | undefined;
|
|
207
|
+
NextValueAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
208
|
+
NextValueAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
219
209
|
}
|
|
220
210
|
|
|
221
211
|
|
|
222
|
-
export const ValueGenerator_1: {
|
|
223
|
-
new<TValue>(): ValueGenerator_1<TValue>;
|
|
212
|
+
export const ValueGenerator_1: (abstract new<TValue>() => ValueGenerator_1<TValue>) & {
|
|
224
213
|
};
|
|
225
214
|
|
|
226
215
|
|
|
227
216
|
export type ValueGenerator_1<TValue> = ValueGenerator_1$instance<TValue>;
|
|
228
217
|
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
|
|
218
|
+
export interface ValueGeneratorCache$instance {
|
|
219
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorCache: never;
|
|
233
220
|
|
|
234
|
-
|
|
221
|
+
readonly Dependencies: ValueGeneratorCacheDependencies;
|
|
235
222
|
GetOrAdd(property: IProperty, typeBase: ITypeBase, factory: Func<IProperty, ITypeBase, ValueGenerator>): ValueGenerator | undefined;
|
|
236
223
|
}
|
|
237
224
|
|
|
@@ -251,6 +238,8 @@ export type ValueGeneratorCache = ValueGeneratorCache$instance & __ValueGenerato
|
|
|
251
238
|
|
|
252
239
|
|
|
253
240
|
export interface ValueGeneratorCacheDependencies$instance {
|
|
241
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
242
|
+
|
|
254
243
|
_Clone_$(): ValueGeneratorCacheDependencies;
|
|
255
244
|
Equals(obj: unknown): boolean;
|
|
256
245
|
Equals(other: ValueGeneratorCacheDependencies): boolean;
|
|
@@ -271,22 +260,19 @@ export interface ValueGeneratorFactory$instance {
|
|
|
271
260
|
}
|
|
272
261
|
|
|
273
262
|
|
|
274
|
-
export const ValueGeneratorFactory: {
|
|
275
|
-
new(): ValueGeneratorFactory;
|
|
263
|
+
export const ValueGeneratorFactory: (abstract new() => ValueGeneratorFactory) & {
|
|
276
264
|
};
|
|
277
265
|
|
|
278
266
|
|
|
279
267
|
export type ValueGeneratorFactory = ValueGeneratorFactory$instance;
|
|
280
268
|
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
protected FindForType(property: IProperty, typeBase: ITypeBase, clrType: Type): ValueGenerator | undefined;
|
|
284
|
-
}
|
|
269
|
+
export interface ValueGeneratorSelector$instance {
|
|
270
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorSelector: never;
|
|
285
271
|
|
|
286
|
-
|
|
287
|
-
export interface ValueGeneratorSelector$instance extends ValueGeneratorSelector$protected {
|
|
288
272
|
readonly Cache: IValueGeneratorCache;
|
|
273
|
+
readonly Dependencies: ValueGeneratorSelectorDependencies;
|
|
289
274
|
Create(property: IProperty, typeBase: ITypeBase): ValueGenerator;
|
|
275
|
+
FindForType(property: IProperty, typeBase: ITypeBase, clrType: Type): ValueGenerator | undefined;
|
|
290
276
|
Select(property: IProperty, typeBase: ITypeBase): ValueGenerator | undefined;
|
|
291
277
|
TryCreate(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
292
278
|
TrySelect(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
@@ -308,6 +294,8 @@ export type ValueGeneratorSelector = ValueGeneratorSelector$instance & __ValueGe
|
|
|
308
294
|
|
|
309
295
|
|
|
310
296
|
export interface ValueGeneratorSelectorDependencies$instance {
|
|
297
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
298
|
+
|
|
311
299
|
Cache: IValueGeneratorCache;
|
|
312
300
|
_Clone_$(): ValueGeneratorSelectorDependencies;
|
|
313
301
|
Equals(obj: unknown): boolean;
|
|
@@ -16,16 +16,12 @@ import type { Boolean as ClrBoolean, Byte, Char, DateTime, DateTimeOffset, Decim
|
|
|
16
16
|
import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
17
17
|
import type { ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
18
18
|
|
|
19
|
-
export
|
|
20
|
-
protected NextValue(entry: EntityEntry): unknown | undefined;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export interface ConvertedValueGenerator$instance extends ConvertedValueGenerator$protected, ValueGenerator {
|
|
19
|
+
export interface ConvertedValueGenerator$instance extends ValueGenerator {
|
|
25
20
|
readonly GeneratesStableValues: boolean;
|
|
26
21
|
readonly GeneratesTemporaryValues: boolean;
|
|
27
22
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
28
23
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
24
|
+
NextValue(entry: EntityEntry): unknown | undefined;
|
|
29
25
|
}
|
|
30
26
|
|
|
31
27
|
|
|
@@ -36,14 +32,10 @@ export const ConvertedValueGenerator: {
|
|
|
36
32
|
|
|
37
33
|
export type ConvertedValueGenerator = ConvertedValueGenerator$instance;
|
|
38
34
|
|
|
39
|
-
export
|
|
40
|
-
protected NextValue(entry: EntityEntry): unknown;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
export interface DiscriminatorValueGenerator$instance extends DiscriminatorValueGenerator$protected, ValueGenerator {
|
|
35
|
+
export interface DiscriminatorValueGenerator$instance extends ValueGenerator {
|
|
45
36
|
readonly GeneratesStableValues: boolean;
|
|
46
37
|
readonly GeneratesTemporaryValues: boolean;
|
|
38
|
+
NextValue(entry: EntityEntry): unknown;
|
|
47
39
|
}
|
|
48
40
|
|
|
49
41
|
|
|
@@ -192,8 +184,7 @@ export interface TemporaryNumberValueGenerator_1$instance<TValue> extends ValueG
|
|
|
192
184
|
}
|
|
193
185
|
|
|
194
186
|
|
|
195
|
-
export const TemporaryNumberValueGenerator_1: {
|
|
196
|
-
new<TValue>(): TemporaryNumberValueGenerator_1<TValue>;
|
|
187
|
+
export const TemporaryNumberValueGenerator_1: (abstract new<TValue>() => TemporaryNumberValueGenerator_1<TValue>) & {
|
|
197
188
|
};
|
|
198
189
|
|
|
199
190
|
|
|
@@ -12,3 +12,6 @@ import type { IServiceCollection, ServiceLifetime } from '@tsonic/microsoft-exte
|
|
|
12
12
|
|
|
13
13
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
14
14
|
export { EntityFrameworkServiceCollectionExtensions$instance as EntityFrameworkServiceCollectionExtensions } from './Microsoft.Extensions.DependencyInjection/internal/index.js';
|
|
15
|
+
// Extension methods (C# using semantics)
|
|
16
|
+
export type { ExtensionMethods_Microsoft_Extensions_DependencyInjection as ExtensionMethods } from './__internal/extensions/index.js';
|
|
17
|
+
|