@tsonic/efcore 10.0.5 → 10.0.8

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.
Files changed (38) hide show
  1. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +599 -529
  2. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +193 -155
  3. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +385 -291
  4. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
  5. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
  6. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
  7. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
  8. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +215 -145
  9. package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
  10. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +140 -122
  11. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1139 -1035
  12. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +510 -476
  13. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
  14. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
  15. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +25 -21
  16. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1557 -1305
  17. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
  18. package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
  19. package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
  20. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
  21. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
  22. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
  23. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
  24. package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
  25. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
  26. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +357 -239
  27. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +51 -35
  28. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
  29. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
  30. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
  31. package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
  32. package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
  33. package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
  34. package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
  35. package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
  36. package/System.Transactions/internal/index.d.ts +3 -3
  37. package/__internal/extensions/index.d.ts +1462 -1465
  38. package/package.json +4 -4
@@ -12,8 +12,8 @@ import type { Annotatable, Annotation, IAnnotatable, IAnnotation, IReadOnlyAnnot
12
12
  import * as Microsoft_EntityFrameworkCore_Metadata_Internal from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
13
13
  import type { ICheckConstraint, IForeignKeyConstraint, IMutableAnnotatable, IPrimaryKeyConstraint, ITableIndex, IUniqueConstraint } from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
14
14
  import type { ReferentialAction } from "../../Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
15
- import type { IEnumerable, IReadOnlyDictionary, List } from "@tsonic/dotnet/System.Collections.Generic.js";
16
- import type { Boolean as ClrBoolean, Func, Int32, Int64, Nullable, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System.js";
15
+ import type { IEnumerable_1, IReadOnlyDictionary_2, List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
16
+ import type { Boolean as ClrBoolean, Func_2, Int32, Int64, Nullable_1, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
17
17
 
18
18
  export interface IAlterMigrationOperation$instance {
19
19
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
@@ -35,6 +35,8 @@ export interface ITableMigrationOperation$instance {
35
35
  export type ITableMigrationOperation = ITableMigrationOperation$instance;
36
36
 
37
37
  export interface AddCheckConstraintOperation$instance extends MigrationOperation$instance {
38
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddCheckConstraintOperation: never;
39
+
38
40
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
39
41
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
40
42
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -48,8 +50,8 @@ export interface AddCheckConstraintOperation$instance extends MigrationOperation
48
50
  AddAnnotation(name: string, value: unknown): IAnnotation;
49
51
  AddAnnotation(name: string, value: unknown): Annotation;
50
52
  AddAnnotation(name: string, annotation: Annotation): Annotation;
51
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
52
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
53
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
54
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
53
55
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
54
56
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
55
57
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -59,9 +61,9 @@ export interface AddCheckConstraintOperation$instance extends MigrationOperation
59
61
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
60
62
  FindRuntimeAnnotation(name: string): Annotation | undefined;
61
63
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
62
- GetAnnotations(): IEnumerable<IAnnotation>;
63
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
64
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
64
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
65
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
66
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
65
67
  RemoveAnnotation(name: string): IAnnotation | undefined;
66
68
  RemoveAnnotation(name: string): Annotation | undefined;
67
69
  SetAnnotation(name: string, value: unknown): void;
@@ -86,6 +88,8 @@ export type AddCheckConstraintOperation = AddCheckConstraintOperation$instance &
86
88
 
87
89
 
88
90
  export interface AddColumnOperation$instance extends ColumnOperation$instance {
91
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddColumnOperation: never;
92
+
89
93
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
90
94
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
91
95
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -94,8 +98,8 @@ export interface AddColumnOperation$instance extends ColumnOperation$instance {
94
98
  AddAnnotation(name: string, value: unknown): IAnnotation;
95
99
  AddAnnotation(name: string, value: unknown): Annotation;
96
100
  AddAnnotation(name: string, annotation: Annotation): Annotation;
97
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
98
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
101
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
102
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
99
103
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
100
104
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
101
105
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -105,9 +109,9 @@ export interface AddColumnOperation$instance extends ColumnOperation$instance {
105
109
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
106
110
  FindRuntimeAnnotation(name: string): Annotation | undefined;
107
111
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
108
- GetAnnotations(): IEnumerable<IAnnotation>;
109
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
110
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
112
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
113
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
114
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
111
115
  RemoveAnnotation(name: string): IAnnotation | undefined;
112
116
  RemoveAnnotation(name: string): Annotation | undefined;
113
117
  SetAnnotation(name: string, value: unknown): void;
@@ -131,6 +135,8 @@ export type AddColumnOperation = AddColumnOperation$instance & __AddColumnOperat
131
135
 
132
136
 
133
137
  export interface AddForeignKeyOperation$instance extends MigrationOperation$instance {
138
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddForeignKeyOperation: never;
139
+
134
140
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
135
141
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
136
142
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -151,8 +157,8 @@ export interface AddForeignKeyOperation$instance extends MigrationOperation$inst
151
157
  AddAnnotation(name: string, value: unknown): IAnnotation;
152
158
  AddAnnotation(name: string, value: unknown): Annotation;
153
159
  AddAnnotation(name: string, annotation: Annotation): Annotation;
154
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
155
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
160
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
161
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
156
162
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
157
163
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
158
164
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -162,9 +168,9 @@ export interface AddForeignKeyOperation$instance extends MigrationOperation$inst
162
168
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
163
169
  FindRuntimeAnnotation(name: string): Annotation | undefined;
164
170
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
165
- GetAnnotations(): IEnumerable<IAnnotation>;
166
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
167
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
171
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
172
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
173
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
168
174
  RemoveAnnotation(name: string): IAnnotation | undefined;
169
175
  RemoveAnnotation(name: string): Annotation | undefined;
170
176
  SetAnnotation(name: string, value: unknown): void;
@@ -189,6 +195,8 @@ export type AddForeignKeyOperation = AddForeignKeyOperation$instance & __AddFore
189
195
 
190
196
 
191
197
  export interface AddPrimaryKeyOperation$instance extends MigrationOperation$instance {
198
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddPrimaryKeyOperation: never;
199
+
192
200
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
193
201
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
194
202
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -202,8 +210,8 @@ export interface AddPrimaryKeyOperation$instance extends MigrationOperation$inst
202
210
  AddAnnotation(name: string, value: unknown): IAnnotation;
203
211
  AddAnnotation(name: string, value: unknown): Annotation;
204
212
  AddAnnotation(name: string, annotation: Annotation): Annotation;
205
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
206
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
213
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
214
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
207
215
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
208
216
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
209
217
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -213,9 +221,9 @@ export interface AddPrimaryKeyOperation$instance extends MigrationOperation$inst
213
221
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
214
222
  FindRuntimeAnnotation(name: string): Annotation | undefined;
215
223
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
216
- GetAnnotations(): IEnumerable<IAnnotation>;
217
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
218
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
224
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
225
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
226
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
219
227
  RemoveAnnotation(name: string): IAnnotation | undefined;
220
228
  RemoveAnnotation(name: string): Annotation | undefined;
221
229
  SetAnnotation(name: string, value: unknown): void;
@@ -240,6 +248,8 @@ export type AddPrimaryKeyOperation = AddPrimaryKeyOperation$instance & __AddPrim
240
248
 
241
249
 
242
250
  export interface AddUniqueConstraintOperation$instance extends MigrationOperation$instance {
251
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddUniqueConstraintOperation: never;
252
+
243
253
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
244
254
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
245
255
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -253,8 +263,8 @@ export interface AddUniqueConstraintOperation$instance extends MigrationOperatio
253
263
  AddAnnotation(name: string, value: unknown): IAnnotation;
254
264
  AddAnnotation(name: string, value: unknown): Annotation;
255
265
  AddAnnotation(name: string, annotation: Annotation): Annotation;
256
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
257
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
266
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
267
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
258
268
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
259
269
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
260
270
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -264,9 +274,9 @@ export interface AddUniqueConstraintOperation$instance extends MigrationOperatio
264
274
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
265
275
  FindRuntimeAnnotation(name: string): Annotation | undefined;
266
276
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
267
- GetAnnotations(): IEnumerable<IAnnotation>;
268
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
269
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
277
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
278
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
279
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
270
280
  RemoveAnnotation(name: string): IAnnotation | undefined;
271
281
  RemoveAnnotation(name: string): Annotation | undefined;
272
282
  SetAnnotation(name: string, value: unknown): void;
@@ -290,7 +300,9 @@ export interface __AddUniqueConstraintOperation$views {
290
300
  export type AddUniqueConstraintOperation = AddUniqueConstraintOperation$instance & __AddUniqueConstraintOperation$views;
291
301
 
292
302
 
293
- export interface AlterColumnOperation$instance extends ColumnOperation$instance {
303
+ export interface AlterColumnOperation$instance extends ColumnOperation$instance, IAlterMigrationOperation$instance {
304
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AlterColumnOperation: never;
305
+
294
306
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
295
307
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
296
308
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -301,8 +313,8 @@ export interface AlterColumnOperation$instance extends ColumnOperation$instance
301
313
  AddAnnotation(name: string, value: unknown): IAnnotation;
302
314
  AddAnnotation(name: string, value: unknown): Annotation;
303
315
  AddAnnotation(name: string, annotation: Annotation): Annotation;
304
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
305
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
316
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
317
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
306
318
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
307
319
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
308
320
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -312,9 +324,9 @@ export interface AlterColumnOperation$instance extends ColumnOperation$instance
312
324
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
313
325
  FindRuntimeAnnotation(name: string): Annotation | undefined;
314
326
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
315
- GetAnnotations(): IEnumerable<IAnnotation>;
316
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
317
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
327
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
328
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
329
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
318
330
  RemoveAnnotation(name: string): IAnnotation | undefined;
319
331
  RemoveAnnotation(name: string): Annotation | undefined;
320
332
  SetAnnotation(name: string, value: unknown): void;
@@ -335,12 +347,12 @@ export interface __AlterColumnOperation$views {
335
347
  As_ITableMigrationOperation(): ITableMigrationOperation$instance;
336
348
  }
337
349
 
338
- export interface AlterColumnOperation$instance extends IAlterMigrationOperation$instance {}
339
-
340
350
  export type AlterColumnOperation = AlterColumnOperation$instance & __AlterColumnOperation$views;
341
351
 
342
352
 
343
- export interface AlterDatabaseOperation$instance extends DatabaseOperation$instance {
353
+ export interface AlterDatabaseOperation$instance extends DatabaseOperation$instance, IAlterMigrationOperation$instance {
354
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AlterDatabaseOperation: never;
355
+
344
356
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
345
357
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
346
358
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -350,8 +362,8 @@ export interface AlterDatabaseOperation$instance extends DatabaseOperation$insta
350
362
  AddAnnotation(name: string, value: unknown): IAnnotation;
351
363
  AddAnnotation(name: string, value: unknown): Annotation;
352
364
  AddAnnotation(name: string, annotation: Annotation): Annotation;
353
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
354
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
365
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
366
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
355
367
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
356
368
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
357
369
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -361,9 +373,9 @@ export interface AlterDatabaseOperation$instance extends DatabaseOperation$insta
361
373
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
362
374
  FindRuntimeAnnotation(name: string): Annotation | undefined;
363
375
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
364
- GetAnnotations(): IEnumerable<IAnnotation>;
365
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
366
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
376
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
377
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
378
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
367
379
  RemoveAnnotation(name: string): IAnnotation | undefined;
368
380
  RemoveAnnotation(name: string): Annotation | undefined;
369
381
  SetAnnotation(name: string, value: unknown): void;
@@ -383,12 +395,12 @@ export interface __AlterDatabaseOperation$views {
383
395
  As_IAlterMigrationOperation(): IAlterMigrationOperation$instance;
384
396
  }
385
397
 
386
- export interface AlterDatabaseOperation$instance extends IAlterMigrationOperation$instance {}
387
-
388
398
  export type AlterDatabaseOperation = AlterDatabaseOperation$instance & __AlterDatabaseOperation$views;
389
399
 
390
400
 
391
- export interface AlterSequenceOperation$instance extends SequenceOperation$instance {
401
+ export interface AlterSequenceOperation$instance extends SequenceOperation$instance, IAlterMigrationOperation$instance {
402
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AlterSequenceOperation: never;
403
+
392
404
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
393
405
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
394
406
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -401,8 +413,8 @@ export interface AlterSequenceOperation$instance extends SequenceOperation$insta
401
413
  AddAnnotation(name: string, value: unknown): IAnnotation;
402
414
  AddAnnotation(name: string, value: unknown): Annotation;
403
415
  AddAnnotation(name: string, annotation: Annotation): Annotation;
404
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
405
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
416
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
417
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
406
418
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
407
419
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
408
420
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -412,9 +424,9 @@ export interface AlterSequenceOperation$instance extends SequenceOperation$insta
412
424
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
413
425
  FindRuntimeAnnotation(name: string): Annotation | undefined;
414
426
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
415
- GetAnnotations(): IEnumerable<IAnnotation>;
416
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
417
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
427
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
428
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
429
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
418
430
  RemoveAnnotation(name: string): IAnnotation | undefined;
419
431
  RemoveAnnotation(name: string): Annotation | undefined;
420
432
  SetAnnotation(name: string, value: unknown): void;
@@ -434,12 +446,12 @@ export interface __AlterSequenceOperation$views {
434
446
  As_IAlterMigrationOperation(): IAlterMigrationOperation$instance;
435
447
  }
436
448
 
437
- export interface AlterSequenceOperation$instance extends IAlterMigrationOperation$instance {}
438
-
439
449
  export type AlterSequenceOperation = AlterSequenceOperation$instance & __AlterSequenceOperation$views;
440
450
 
441
451
 
442
- export interface AlterTableOperation$instance extends TableOperation$instance {
452
+ export interface AlterTableOperation$instance extends TableOperation$instance, IAlterMigrationOperation$instance {
453
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AlterTableOperation: never;
454
+
443
455
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
444
456
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
445
457
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -450,8 +462,8 @@ export interface AlterTableOperation$instance extends TableOperation$instance {
450
462
  AddAnnotation(name: string, value: unknown): IAnnotation;
451
463
  AddAnnotation(name: string, value: unknown): Annotation;
452
464
  AddAnnotation(name: string, annotation: Annotation): Annotation;
453
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
454
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
465
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
466
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
455
467
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
456
468
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
457
469
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -461,9 +473,9 @@ export interface AlterTableOperation$instance extends TableOperation$instance {
461
473
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
462
474
  FindRuntimeAnnotation(name: string): Annotation | undefined;
463
475
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
464
- GetAnnotations(): IEnumerable<IAnnotation>;
465
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
466
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
476
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
477
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
478
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
467
479
  RemoveAnnotation(name: string): IAnnotation | undefined;
468
480
  RemoveAnnotation(name: string): Annotation | undefined;
469
481
  SetAnnotation(name: string, value: unknown): void;
@@ -484,12 +496,12 @@ export interface __AlterTableOperation$views {
484
496
  As_ITableMigrationOperation(): ITableMigrationOperation$instance;
485
497
  }
486
498
 
487
- export interface AlterTableOperation$instance extends IAlterMigrationOperation$instance {}
488
-
489
499
  export type AlterTableOperation = AlterTableOperation$instance & __AlterTableOperation$views;
490
500
 
491
501
 
492
502
  export interface ColumnOperation$instance extends MigrationOperation$instance {
503
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_ColumnOperation: never;
504
+
493
505
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
494
506
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
495
507
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -508,23 +520,23 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
508
520
  set DefaultValue(value: unknown | undefined);
509
521
  get DefaultValueSql(): string | undefined;
510
522
  set DefaultValueSql(value: string | undefined);
511
- IsFixedLength: Nullable<System_Internal.Boolean>;
523
+ IsFixedLength: Nullable_1<System_Internal.Boolean>;
512
524
  IsNullable: boolean;
513
525
  IsRowVersion: boolean;
514
- IsStored: Nullable<System_Internal.Boolean>;
515
- IsUnicode: Nullable<System_Internal.Boolean>;
516
- MaxLength: Nullable<System_Internal.Int32>;
526
+ IsStored: Nullable_1<System_Internal.Boolean>;
527
+ IsUnicode: Nullable_1<System_Internal.Boolean>;
528
+ MaxLength: Nullable_1<System_Internal.Int32>;
517
529
  Name: string;
518
- Precision: Nullable<System_Internal.Int32>;
519
- Scale: Nullable<System_Internal.Int32>;
530
+ Precision: Nullable_1<System_Internal.Int32>;
531
+ Scale: Nullable_1<System_Internal.Int32>;
520
532
  get Schema(): string | undefined;
521
533
  set Schema(value: string | undefined);
522
534
  Table: string;
523
535
  AddAnnotation(name: string, value: unknown): IAnnotation;
524
536
  AddAnnotation(name: string, value: unknown): Annotation;
525
537
  AddAnnotation(name: string, annotation: Annotation): Annotation;
526
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
527
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
538
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
539
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
528
540
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
529
541
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
530
542
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -534,9 +546,9 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
534
546
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
535
547
  FindRuntimeAnnotation(name: string): Annotation | undefined;
536
548
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
537
- GetAnnotations(): IEnumerable<IAnnotation>;
538
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
539
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
549
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
550
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
551
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
540
552
  RemoveAnnotation(name: string): IAnnotation | undefined;
541
553
  RemoveAnnotation(name: string): Annotation | undefined;
542
554
  SetAnnotation(name: string, value: unknown): void;
@@ -559,6 +571,8 @@ export type ColumnOperation = ColumnOperation$instance & __ColumnOperation$views
559
571
 
560
572
 
561
573
  export interface CreateIndexOperation$instance extends MigrationOperation$instance {
574
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateIndexOperation: never;
575
+
562
576
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
563
577
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
564
578
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -577,8 +591,8 @@ export interface CreateIndexOperation$instance extends MigrationOperation$instan
577
591
  AddAnnotation(name: string, value: unknown): IAnnotation;
578
592
  AddAnnotation(name: string, value: unknown): Annotation;
579
593
  AddAnnotation(name: string, annotation: Annotation): Annotation;
580
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
581
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
594
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
595
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
582
596
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
583
597
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
584
598
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -588,9 +602,9 @@ export interface CreateIndexOperation$instance extends MigrationOperation$instan
588
602
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
589
603
  FindRuntimeAnnotation(name: string): Annotation | undefined;
590
604
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
591
- GetAnnotations(): IEnumerable<IAnnotation>;
592
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
593
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
605
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
606
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
607
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
594
608
  RemoveAnnotation(name: string): IAnnotation | undefined;
595
609
  RemoveAnnotation(name: string): Annotation | undefined;
596
610
  SetAnnotation(name: string, value: unknown): void;
@@ -615,6 +629,8 @@ export type CreateIndexOperation = CreateIndexOperation$instance & __CreateIndex
615
629
 
616
630
 
617
631
  export interface CreateSequenceOperation$instance extends SequenceOperation$instance {
632
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateSequenceOperation: never;
633
+
618
634
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
619
635
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
620
636
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -627,8 +643,8 @@ export interface CreateSequenceOperation$instance extends SequenceOperation$inst
627
643
  AddAnnotation(name: string, value: unknown): IAnnotation;
628
644
  AddAnnotation(name: string, value: unknown): Annotation;
629
645
  AddAnnotation(name: string, annotation: Annotation): Annotation;
630
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
631
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
646
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
647
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
632
648
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
633
649
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
634
650
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -638,9 +654,9 @@ export interface CreateSequenceOperation$instance extends SequenceOperation$inst
638
654
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
639
655
  FindRuntimeAnnotation(name: string): Annotation | undefined;
640
656
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
641
- GetAnnotations(): IEnumerable<IAnnotation>;
642
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
643
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
657
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
658
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
659
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
644
660
  RemoveAnnotation(name: string): IAnnotation | undefined;
645
661
  RemoveAnnotation(name: string): Annotation | undefined;
646
662
  SetAnnotation(name: string, value: unknown): void;
@@ -663,22 +679,24 @@ export type CreateSequenceOperation = CreateSequenceOperation$instance & __Creat
663
679
 
664
680
 
665
681
  export interface CreateTableOperation$instance extends TableOperation$instance {
682
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateTableOperation: never;
683
+
666
684
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
667
685
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
668
686
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
669
687
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
670
688
 
671
- readonly CheckConstraints: List<AddCheckConstraintOperation>;
672
- readonly Columns: List<AddColumnOperation>;
673
- readonly ForeignKeys: List<AddForeignKeyOperation>;
689
+ readonly CheckConstraints: List_1<AddCheckConstraintOperation>;
690
+ readonly Columns: List_1<AddColumnOperation>;
691
+ readonly ForeignKeys: List_1<AddForeignKeyOperation>;
674
692
  get PrimaryKey(): AddPrimaryKeyOperation | undefined;
675
693
  set PrimaryKey(value: AddPrimaryKeyOperation | undefined);
676
- readonly UniqueConstraints: List<AddUniqueConstraintOperation>;
694
+ readonly UniqueConstraints: List_1<AddUniqueConstraintOperation>;
677
695
  AddAnnotation(name: string, value: unknown): IAnnotation;
678
696
  AddAnnotation(name: string, value: unknown): Annotation;
679
697
  AddAnnotation(name: string, annotation: Annotation): Annotation;
680
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
681
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
698
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
699
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
682
700
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
683
701
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
684
702
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -688,9 +706,9 @@ export interface CreateTableOperation$instance extends TableOperation$instance {
688
706
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
689
707
  FindRuntimeAnnotation(name: string): Annotation | undefined;
690
708
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
691
- GetAnnotations(): IEnumerable<IAnnotation>;
692
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
693
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
709
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
710
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
711
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
694
712
  RemoveAnnotation(name: string): IAnnotation | undefined;
695
713
  RemoveAnnotation(name: string): Annotation | undefined;
696
714
  SetAnnotation(name: string, value: unknown): void;
@@ -714,6 +732,8 @@ export type CreateTableOperation = CreateTableOperation$instance & __CreateTable
714
732
 
715
733
 
716
734
  export interface DatabaseOperation$instance extends MigrationOperation$instance {
735
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DatabaseOperation: never;
736
+
717
737
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
718
738
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
719
739
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -723,8 +743,8 @@ export interface DatabaseOperation$instance extends MigrationOperation$instance
723
743
  AddAnnotation(name: string, value: unknown): IAnnotation;
724
744
  AddAnnotation(name: string, value: unknown): Annotation;
725
745
  AddAnnotation(name: string, annotation: Annotation): Annotation;
726
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
727
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
746
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
747
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
728
748
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
729
749
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
730
750
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -734,9 +754,9 @@ export interface DatabaseOperation$instance extends MigrationOperation$instance
734
754
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
735
755
  FindRuntimeAnnotation(name: string): Annotation | undefined;
736
756
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
737
- GetAnnotations(): IEnumerable<IAnnotation>;
738
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
739
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
757
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
758
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
759
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
740
760
  RemoveAnnotation(name: string): IAnnotation | undefined;
741
761
  RemoveAnnotation(name: string): Annotation | undefined;
742
762
  SetAnnotation(name: string, value: unknown): void;
@@ -758,6 +778,8 @@ export type DatabaseOperation = DatabaseOperation$instance & __DatabaseOperation
758
778
 
759
779
 
760
780
  export interface DeleteDataOperation$instance extends MigrationOperation$instance {
781
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DeleteDataOperation: never;
782
+
761
783
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
762
784
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
763
785
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -773,8 +795,8 @@ export interface DeleteDataOperation$instance extends MigrationOperation$instanc
773
795
  AddAnnotation(name: string, value: unknown): IAnnotation;
774
796
  AddAnnotation(name: string, value: unknown): Annotation;
775
797
  AddAnnotation(name: string, annotation: Annotation): Annotation;
776
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
777
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
798
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
799
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
778
800
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
779
801
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
780
802
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -784,9 +806,9 @@ export interface DeleteDataOperation$instance extends MigrationOperation$instanc
784
806
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
785
807
  FindRuntimeAnnotation(name: string): Annotation | undefined;
786
808
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
787
- GetAnnotations(): IEnumerable<IAnnotation>;
788
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
789
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
809
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
810
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
811
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
790
812
  RemoveAnnotation(name: string): IAnnotation | undefined;
791
813
  RemoveAnnotation(name: string): Annotation | undefined;
792
814
  SetAnnotation(name: string, value: unknown): void;
@@ -810,6 +832,8 @@ export type DeleteDataOperation = DeleteDataOperation$instance & __DeleteDataOpe
810
832
 
811
833
 
812
834
  export interface DropCheckConstraintOperation$instance extends MigrationOperation$instance {
835
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropCheckConstraintOperation: never;
836
+
813
837
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
814
838
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
815
839
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -822,8 +846,8 @@ export interface DropCheckConstraintOperation$instance extends MigrationOperatio
822
846
  AddAnnotation(name: string, value: unknown): IAnnotation;
823
847
  AddAnnotation(name: string, value: unknown): Annotation;
824
848
  AddAnnotation(name: string, annotation: Annotation): Annotation;
825
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
826
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
849
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
850
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
827
851
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
828
852
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
829
853
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -833,9 +857,9 @@ export interface DropCheckConstraintOperation$instance extends MigrationOperatio
833
857
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
834
858
  FindRuntimeAnnotation(name: string): Annotation | undefined;
835
859
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
836
- GetAnnotations(): IEnumerable<IAnnotation>;
837
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
838
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
860
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
861
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
862
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
839
863
  RemoveAnnotation(name: string): IAnnotation | undefined;
840
864
  RemoveAnnotation(name: string): Annotation | undefined;
841
865
  SetAnnotation(name: string, value: unknown): void;
@@ -859,6 +883,8 @@ export type DropCheckConstraintOperation = DropCheckConstraintOperation$instance
859
883
 
860
884
 
861
885
  export interface DropColumnOperation$instance extends MigrationOperation$instance {
886
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropColumnOperation: never;
887
+
862
888
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
863
889
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
864
890
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -871,8 +897,8 @@ export interface DropColumnOperation$instance extends MigrationOperation$instanc
871
897
  AddAnnotation(name: string, value: unknown): IAnnotation;
872
898
  AddAnnotation(name: string, value: unknown): Annotation;
873
899
  AddAnnotation(name: string, annotation: Annotation): Annotation;
874
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
875
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
900
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
901
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
876
902
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
877
903
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
878
904
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -882,9 +908,9 @@ export interface DropColumnOperation$instance extends MigrationOperation$instanc
882
908
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
883
909
  FindRuntimeAnnotation(name: string): Annotation | undefined;
884
910
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
885
- GetAnnotations(): IEnumerable<IAnnotation>;
886
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
887
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
911
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
912
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
913
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
888
914
  RemoveAnnotation(name: string): IAnnotation | undefined;
889
915
  RemoveAnnotation(name: string): Annotation | undefined;
890
916
  SetAnnotation(name: string, value: unknown): void;
@@ -908,6 +934,8 @@ export type DropColumnOperation = DropColumnOperation$instance & __DropColumnOpe
908
934
 
909
935
 
910
936
  export interface DropForeignKeyOperation$instance extends MigrationOperation$instance {
937
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropForeignKeyOperation: never;
938
+
911
939
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
912
940
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
913
941
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -920,8 +948,8 @@ export interface DropForeignKeyOperation$instance extends MigrationOperation$ins
920
948
  AddAnnotation(name: string, value: unknown): IAnnotation;
921
949
  AddAnnotation(name: string, value: unknown): Annotation;
922
950
  AddAnnotation(name: string, annotation: Annotation): Annotation;
923
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
924
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
951
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
952
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
925
953
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
926
954
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
927
955
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -931,9 +959,9 @@ export interface DropForeignKeyOperation$instance extends MigrationOperation$ins
931
959
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
932
960
  FindRuntimeAnnotation(name: string): Annotation | undefined;
933
961
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
934
- GetAnnotations(): IEnumerable<IAnnotation>;
935
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
936
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
962
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
963
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
964
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
937
965
  RemoveAnnotation(name: string): IAnnotation | undefined;
938
966
  RemoveAnnotation(name: string): Annotation | undefined;
939
967
  SetAnnotation(name: string, value: unknown): void;
@@ -957,6 +985,8 @@ export type DropForeignKeyOperation = DropForeignKeyOperation$instance & __DropF
957
985
 
958
986
 
959
987
  export interface DropIndexOperation$instance extends MigrationOperation$instance {
988
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropIndexOperation: never;
989
+
960
990
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
961
991
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
962
992
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -969,8 +999,8 @@ export interface DropIndexOperation$instance extends MigrationOperation$instance
969
999
  AddAnnotation(name: string, value: unknown): IAnnotation;
970
1000
  AddAnnotation(name: string, value: unknown): Annotation;
971
1001
  AddAnnotation(name: string, annotation: Annotation): Annotation;
972
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
973
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1002
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1003
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
974
1004
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
975
1005
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
976
1006
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -980,9 +1010,9 @@ export interface DropIndexOperation$instance extends MigrationOperation$instance
980
1010
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
981
1011
  FindRuntimeAnnotation(name: string): Annotation | undefined;
982
1012
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
983
- GetAnnotations(): IEnumerable<IAnnotation>;
984
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
985
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1013
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1014
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1015
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
986
1016
  RemoveAnnotation(name: string): IAnnotation | undefined;
987
1017
  RemoveAnnotation(name: string): Annotation | undefined;
988
1018
  SetAnnotation(name: string, value: unknown): void;
@@ -1005,6 +1035,8 @@ export type DropIndexOperation = DropIndexOperation$instance & __DropIndexOperat
1005
1035
 
1006
1036
 
1007
1037
  export interface DropPrimaryKeyOperation$instance extends MigrationOperation$instance {
1038
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropPrimaryKeyOperation: never;
1039
+
1008
1040
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1009
1041
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1010
1042
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1017,8 +1049,8 @@ export interface DropPrimaryKeyOperation$instance extends MigrationOperation$ins
1017
1049
  AddAnnotation(name: string, value: unknown): IAnnotation;
1018
1050
  AddAnnotation(name: string, value: unknown): Annotation;
1019
1051
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1020
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1021
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1052
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1053
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1022
1054
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1023
1055
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1024
1056
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1028,9 +1060,9 @@ export interface DropPrimaryKeyOperation$instance extends MigrationOperation$ins
1028
1060
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1029
1061
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1030
1062
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1031
- GetAnnotations(): IEnumerable<IAnnotation>;
1032
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1033
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1063
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1064
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1065
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1034
1066
  RemoveAnnotation(name: string): IAnnotation | undefined;
1035
1067
  RemoveAnnotation(name: string): Annotation | undefined;
1036
1068
  SetAnnotation(name: string, value: unknown): void;
@@ -1054,6 +1086,8 @@ export type DropPrimaryKeyOperation = DropPrimaryKeyOperation$instance & __DropP
1054
1086
 
1055
1087
 
1056
1088
  export interface DropSchemaOperation$instance extends MigrationOperation$instance {
1089
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropSchemaOperation: never;
1090
+
1057
1091
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1058
1092
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1059
1093
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1062,8 +1096,8 @@ export interface DropSchemaOperation$instance extends MigrationOperation$instanc
1062
1096
  AddAnnotation(name: string, value: unknown): IAnnotation;
1063
1097
  AddAnnotation(name: string, value: unknown): Annotation;
1064
1098
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1065
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1066
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1099
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1100
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1067
1101
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1068
1102
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1069
1103
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1073,9 +1107,9 @@ export interface DropSchemaOperation$instance extends MigrationOperation$instanc
1073
1107
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1074
1108
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1075
1109
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1076
- GetAnnotations(): IEnumerable<IAnnotation>;
1077
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1078
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1110
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1111
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1112
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1079
1113
  RemoveAnnotation(name: string): IAnnotation | undefined;
1080
1114
  RemoveAnnotation(name: string): Annotation | undefined;
1081
1115
  SetAnnotation(name: string, value: unknown): void;
@@ -1098,6 +1132,8 @@ export type DropSchemaOperation = DropSchemaOperation$instance & __DropSchemaOpe
1098
1132
 
1099
1133
 
1100
1134
  export interface DropSequenceOperation$instance extends MigrationOperation$instance {
1135
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropSequenceOperation: never;
1136
+
1101
1137
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1102
1138
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1103
1139
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1108,8 +1144,8 @@ export interface DropSequenceOperation$instance extends MigrationOperation$insta
1108
1144
  AddAnnotation(name: string, value: unknown): IAnnotation;
1109
1145
  AddAnnotation(name: string, value: unknown): Annotation;
1110
1146
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1111
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1112
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1147
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1148
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1113
1149
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1114
1150
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1115
1151
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1119,9 +1155,9 @@ export interface DropSequenceOperation$instance extends MigrationOperation$insta
1119
1155
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1120
1156
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1121
1157
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1122
- GetAnnotations(): IEnumerable<IAnnotation>;
1123
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1124
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1158
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1159
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1160
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1125
1161
  RemoveAnnotation(name: string): IAnnotation | undefined;
1126
1162
  RemoveAnnotation(name: string): Annotation | undefined;
1127
1163
  SetAnnotation(name: string, value: unknown): void;
@@ -1144,6 +1180,8 @@ export type DropSequenceOperation = DropSequenceOperation$instance & __DropSeque
1144
1180
 
1145
1181
 
1146
1182
  export interface DropTableOperation$instance extends MigrationOperation$instance {
1183
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropTableOperation: never;
1184
+
1147
1185
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1148
1186
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1149
1187
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1155,8 +1193,8 @@ export interface DropTableOperation$instance extends MigrationOperation$instance
1155
1193
  AddAnnotation(name: string, value: unknown): IAnnotation;
1156
1194
  AddAnnotation(name: string, value: unknown): Annotation;
1157
1195
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1158
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1159
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1196
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1197
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1160
1198
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1161
1199
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1162
1200
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1166,9 +1204,9 @@ export interface DropTableOperation$instance extends MigrationOperation$instance
1166
1204
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1167
1205
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1168
1206
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1169
- GetAnnotations(): IEnumerable<IAnnotation>;
1170
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1171
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1207
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1208
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1209
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1172
1210
  RemoveAnnotation(name: string): IAnnotation | undefined;
1173
1211
  RemoveAnnotation(name: string): Annotation | undefined;
1174
1212
  SetAnnotation(name: string, value: unknown): void;
@@ -1192,6 +1230,8 @@ export type DropTableOperation = DropTableOperation$instance & __DropTableOperat
1192
1230
 
1193
1231
 
1194
1232
  export interface DropUniqueConstraintOperation$instance extends MigrationOperation$instance {
1233
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropUniqueConstraintOperation: never;
1234
+
1195
1235
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1196
1236
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1197
1237
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1204,8 +1244,8 @@ export interface DropUniqueConstraintOperation$instance extends MigrationOperati
1204
1244
  AddAnnotation(name: string, value: unknown): IAnnotation;
1205
1245
  AddAnnotation(name: string, value: unknown): Annotation;
1206
1246
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1207
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1208
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1247
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1248
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1209
1249
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1210
1250
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1211
1251
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1215,9 +1255,9 @@ export interface DropUniqueConstraintOperation$instance extends MigrationOperati
1215
1255
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1216
1256
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1217
1257
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1218
- GetAnnotations(): IEnumerable<IAnnotation>;
1219
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1220
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1258
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1259
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1260
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1221
1261
  RemoveAnnotation(name: string): IAnnotation | undefined;
1222
1262
  RemoveAnnotation(name: string): Annotation | undefined;
1223
1263
  SetAnnotation(name: string, value: unknown): void;
@@ -1241,6 +1281,8 @@ export type DropUniqueConstraintOperation = DropUniqueConstraintOperation$instan
1241
1281
 
1242
1282
 
1243
1283
  export interface EnsureSchemaOperation$instance extends MigrationOperation$instance {
1284
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_EnsureSchemaOperation: never;
1285
+
1244
1286
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1245
1287
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1246
1288
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1249,8 +1291,8 @@ export interface EnsureSchemaOperation$instance extends MigrationOperation$insta
1249
1291
  AddAnnotation(name: string, value: unknown): IAnnotation;
1250
1292
  AddAnnotation(name: string, value: unknown): Annotation;
1251
1293
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1252
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1253
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1294
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1295
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1254
1296
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1255
1297
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1256
1298
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1260,9 +1302,9 @@ export interface EnsureSchemaOperation$instance extends MigrationOperation$insta
1260
1302
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1261
1303
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1262
1304
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1263
- GetAnnotations(): IEnumerable<IAnnotation>;
1264
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1265
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1305
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1306
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1307
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1266
1308
  RemoveAnnotation(name: string): IAnnotation | undefined;
1267
1309
  RemoveAnnotation(name: string): Annotation | undefined;
1268
1310
  SetAnnotation(name: string, value: unknown): void;
@@ -1285,6 +1327,8 @@ export type EnsureSchemaOperation = EnsureSchemaOperation$instance & __EnsureSch
1285
1327
 
1286
1328
 
1287
1329
  export interface InsertDataOperation$instance extends MigrationOperation$instance {
1330
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_InsertDataOperation: never;
1331
+
1288
1332
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1289
1333
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1290
1334
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1300,8 +1344,8 @@ export interface InsertDataOperation$instance extends MigrationOperation$instanc
1300
1344
  AddAnnotation(name: string, value: unknown): IAnnotation;
1301
1345
  AddAnnotation(name: string, value: unknown): Annotation;
1302
1346
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1303
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1304
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1347
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1348
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1305
1349
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1306
1350
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1307
1351
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1311,9 +1355,9 @@ export interface InsertDataOperation$instance extends MigrationOperation$instanc
1311
1355
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1312
1356
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1313
1357
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1314
- GetAnnotations(): IEnumerable<IAnnotation>;
1315
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1316
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1358
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1359
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1360
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1317
1361
  RemoveAnnotation(name: string): IAnnotation | undefined;
1318
1362
  RemoveAnnotation(name: string): Annotation | undefined;
1319
1363
  SetAnnotation(name: string, value: unknown): void;
@@ -1337,6 +1381,8 @@ export type InsertDataOperation = InsertDataOperation$instance & __InsertDataOpe
1337
1381
 
1338
1382
 
1339
1383
  export interface MigrationOperation$instance extends Annotatable {
1384
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_MigrationOperation: never;
1385
+
1340
1386
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1341
1387
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1342
1388
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1345,8 +1391,8 @@ export interface MigrationOperation$instance extends Annotatable {
1345
1391
  AddAnnotation(name: string, value: unknown): IAnnotation;
1346
1392
  AddAnnotation(name: string, value: unknown): Annotation;
1347
1393
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1348
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1349
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1394
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1395
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1350
1396
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1351
1397
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1352
1398
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1356,9 +1402,9 @@ export interface MigrationOperation$instance extends Annotatable {
1356
1402
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1357
1403
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1358
1404
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1359
- GetAnnotations(): IEnumerable<IAnnotation>;
1360
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1361
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1405
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1406
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1407
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1362
1408
  RemoveAnnotation(name: string): IAnnotation | undefined;
1363
1409
  RemoveAnnotation(name: string): Annotation | undefined;
1364
1410
  SetAnnotation(name: string, value: unknown): void;
@@ -1380,6 +1426,8 @@ export type MigrationOperation = MigrationOperation$instance & __MigrationOperat
1380
1426
 
1381
1427
 
1382
1428
  export interface RenameColumnOperation$instance extends MigrationOperation$instance {
1429
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameColumnOperation: never;
1430
+
1383
1431
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1384
1432
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1385
1433
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1393,8 +1441,8 @@ export interface RenameColumnOperation$instance extends MigrationOperation$insta
1393
1441
  AddAnnotation(name: string, value: unknown): IAnnotation;
1394
1442
  AddAnnotation(name: string, value: unknown): Annotation;
1395
1443
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1396
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1397
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1444
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1445
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1398
1446
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1399
1447
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1400
1448
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1404,9 +1452,9 @@ export interface RenameColumnOperation$instance extends MigrationOperation$insta
1404
1452
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1405
1453
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1406
1454
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1407
- GetAnnotations(): IEnumerable<IAnnotation>;
1408
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1409
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1455
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1456
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1457
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1410
1458
  RemoveAnnotation(name: string): IAnnotation | undefined;
1411
1459
  RemoveAnnotation(name: string): Annotation | undefined;
1412
1460
  SetAnnotation(name: string, value: unknown): void;
@@ -1430,6 +1478,8 @@ export type RenameColumnOperation = RenameColumnOperation$instance & __RenameCol
1430
1478
 
1431
1479
 
1432
1480
  export interface RenameIndexOperation$instance extends MigrationOperation$instance {
1481
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameIndexOperation: never;
1482
+
1433
1483
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1434
1484
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1435
1485
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1443,8 +1493,8 @@ export interface RenameIndexOperation$instance extends MigrationOperation$instan
1443
1493
  AddAnnotation(name: string, value: unknown): IAnnotation;
1444
1494
  AddAnnotation(name: string, value: unknown): Annotation;
1445
1495
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1446
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1447
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1496
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1497
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1448
1498
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1449
1499
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1450
1500
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1454,9 +1504,9 @@ export interface RenameIndexOperation$instance extends MigrationOperation$instan
1454
1504
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1455
1505
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1456
1506
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1457
- GetAnnotations(): IEnumerable<IAnnotation>;
1458
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1459
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1507
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1508
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1509
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1460
1510
  RemoveAnnotation(name: string): IAnnotation | undefined;
1461
1511
  RemoveAnnotation(name: string): Annotation | undefined;
1462
1512
  SetAnnotation(name: string, value: unknown): void;
@@ -1479,6 +1529,8 @@ export type RenameIndexOperation = RenameIndexOperation$instance & __RenameIndex
1479
1529
 
1480
1530
 
1481
1531
  export interface RenameSequenceOperation$instance extends MigrationOperation$instance {
1532
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameSequenceOperation: never;
1533
+
1482
1534
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1483
1535
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1484
1536
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1493,8 +1545,8 @@ export interface RenameSequenceOperation$instance extends MigrationOperation$ins
1493
1545
  AddAnnotation(name: string, value: unknown): IAnnotation;
1494
1546
  AddAnnotation(name: string, value: unknown): Annotation;
1495
1547
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1496
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1497
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1548
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1549
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1498
1550
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1499
1551
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1500
1552
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1504,9 +1556,9 @@ export interface RenameSequenceOperation$instance extends MigrationOperation$ins
1504
1556
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1505
1557
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1506
1558
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1507
- GetAnnotations(): IEnumerable<IAnnotation>;
1508
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1509
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1559
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1560
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1561
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1510
1562
  RemoveAnnotation(name: string): IAnnotation | undefined;
1511
1563
  RemoveAnnotation(name: string): Annotation | undefined;
1512
1564
  SetAnnotation(name: string, value: unknown): void;
@@ -1529,6 +1581,8 @@ export type RenameSequenceOperation = RenameSequenceOperation$instance & __Renam
1529
1581
 
1530
1582
 
1531
1583
  export interface RenameTableOperation$instance extends MigrationOperation$instance {
1584
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameTableOperation: never;
1585
+
1532
1586
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1533
1587
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1534
1588
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1544,8 +1598,8 @@ export interface RenameTableOperation$instance extends MigrationOperation$instan
1544
1598
  AddAnnotation(name: string, value: unknown): IAnnotation;
1545
1599
  AddAnnotation(name: string, value: unknown): Annotation;
1546
1600
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1547
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1548
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1601
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1602
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1549
1603
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1550
1604
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1551
1605
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1555,9 +1609,9 @@ export interface RenameTableOperation$instance extends MigrationOperation$instan
1555
1609
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1556
1610
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1557
1611
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1558
- GetAnnotations(): IEnumerable<IAnnotation>;
1559
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1560
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1612
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1613
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1614
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1561
1615
  RemoveAnnotation(name: string): IAnnotation | undefined;
1562
1616
  RemoveAnnotation(name: string): Annotation | undefined;
1563
1617
  SetAnnotation(name: string, value: unknown): void;
@@ -1581,6 +1635,8 @@ export type RenameTableOperation = RenameTableOperation$instance & __RenameTable
1581
1635
 
1582
1636
 
1583
1637
  export interface RestartSequenceOperation$instance extends MigrationOperation$instance {
1638
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RestartSequenceOperation: never;
1639
+
1584
1640
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1585
1641
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1586
1642
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1588,12 +1644,12 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
1588
1644
  Name: string;
1589
1645
  get Schema(): string | undefined;
1590
1646
  set Schema(value: string | undefined);
1591
- StartValue: Nullable<System_Internal.Int64>;
1647
+ StartValue: Nullable_1<System_Internal.Int64>;
1592
1648
  AddAnnotation(name: string, value: unknown): IAnnotation;
1593
1649
  AddAnnotation(name: string, value: unknown): Annotation;
1594
1650
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1595
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1596
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1651
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1652
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1597
1653
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1598
1654
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1599
1655
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1603,9 +1659,9 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
1603
1659
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1604
1660
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1605
1661
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1606
- GetAnnotations(): IEnumerable<IAnnotation>;
1607
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1608
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1662
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1663
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1664
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1609
1665
  RemoveAnnotation(name: string): IAnnotation | undefined;
1610
1666
  RemoveAnnotation(name: string): Annotation | undefined;
1611
1667
  SetAnnotation(name: string, value: unknown): void;
@@ -1628,19 +1684,21 @@ export type RestartSequenceOperation = RestartSequenceOperation$instance & __Res
1628
1684
 
1629
1685
 
1630
1686
  export interface SequenceOperation$instance extends MigrationOperation$instance {
1687
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_SequenceOperation: never;
1688
+
1631
1689
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1632
1690
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1633
1691
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
1634
1692
 
1635
1693
  IncrementBy: int;
1636
1694
  IsCyclic: boolean;
1637
- MaxValue: Nullable<System_Internal.Int64>;
1638
- MinValue: Nullable<System_Internal.Int64>;
1695
+ MaxValue: Nullable_1<System_Internal.Int64>;
1696
+ MinValue: Nullable_1<System_Internal.Int64>;
1639
1697
  AddAnnotation(name: string, value: unknown): IAnnotation;
1640
1698
  AddAnnotation(name: string, value: unknown): Annotation;
1641
1699
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1642
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1643
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1700
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1701
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1644
1702
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1645
1703
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1646
1704
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1650,9 +1708,9 @@ export interface SequenceOperation$instance extends MigrationOperation$instance
1650
1708
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1651
1709
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1652
1710
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1653
- GetAnnotations(): IEnumerable<IAnnotation>;
1654
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1655
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1711
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1712
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1713
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1656
1714
  RemoveAnnotation(name: string): IAnnotation | undefined;
1657
1715
  RemoveAnnotation(name: string): Annotation | undefined;
1658
1716
  SetAnnotation(name: string, value: unknown): void;
@@ -1674,6 +1732,8 @@ export type SequenceOperation = SequenceOperation$instance & __SequenceOperation
1674
1732
 
1675
1733
 
1676
1734
  export interface SqlOperation$instance extends MigrationOperation$instance {
1735
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_SqlOperation: never;
1736
+
1677
1737
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1678
1738
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1679
1739
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1683,8 +1743,8 @@ export interface SqlOperation$instance extends MigrationOperation$instance {
1683
1743
  AddAnnotation(name: string, value: unknown): IAnnotation;
1684
1744
  AddAnnotation(name: string, value: unknown): Annotation;
1685
1745
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1686
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1687
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1746
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1747
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1688
1748
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1689
1749
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1690
1750
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1694,9 +1754,9 @@ export interface SqlOperation$instance extends MigrationOperation$instance {
1694
1754
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1695
1755
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1696
1756
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1697
- GetAnnotations(): IEnumerable<IAnnotation>;
1698
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1699
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1757
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1758
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1759
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1700
1760
  RemoveAnnotation(name: string): IAnnotation | undefined;
1701
1761
  RemoveAnnotation(name: string): Annotation | undefined;
1702
1762
  SetAnnotation(name: string, value: unknown): void;
@@ -1719,6 +1779,8 @@ export type SqlOperation = SqlOperation$instance & __SqlOperation$views;
1719
1779
 
1720
1780
 
1721
1781
  export interface TableOperation$instance extends MigrationOperation$instance {
1782
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_TableOperation: never;
1783
+
1722
1784
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1723
1785
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1724
1786
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1732,8 +1794,8 @@ export interface TableOperation$instance extends MigrationOperation$instance {
1732
1794
  AddAnnotation(name: string, value: unknown): IAnnotation;
1733
1795
  AddAnnotation(name: string, value: unknown): Annotation;
1734
1796
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1735
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1736
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1797
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1798
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1737
1799
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1738
1800
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1739
1801
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1743,9 +1805,9 @@ export interface TableOperation$instance extends MigrationOperation$instance {
1743
1805
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1744
1806
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1745
1807
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1746
- GetAnnotations(): IEnumerable<IAnnotation>;
1747
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1748
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1808
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1809
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1810
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1749
1811
  RemoveAnnotation(name: string): IAnnotation | undefined;
1750
1812
  RemoveAnnotation(name: string): Annotation | undefined;
1751
1813
  SetAnnotation(name: string, value: unknown): void;
@@ -1768,6 +1830,8 @@ export type TableOperation = TableOperation$instance & __TableOperation$views;
1768
1830
 
1769
1831
 
1770
1832
  export interface UpdateDataOperation$instance extends MigrationOperation$instance {
1833
+ readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_UpdateDataOperation: never;
1834
+
1771
1835
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1772
1836
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1773
1837
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
@@ -1787,8 +1851,8 @@ export interface UpdateDataOperation$instance extends MigrationOperation$instanc
1787
1851
  AddAnnotation(name: string, value: unknown): IAnnotation;
1788
1852
  AddAnnotation(name: string, value: unknown): Annotation;
1789
1853
  AddAnnotation(name: string, annotation: Annotation): Annotation;
1790
- AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1791
- AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1854
+ AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1855
+ AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1792
1856
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1793
1857
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1794
1858
  AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
@@ -1798,9 +1862,9 @@ export interface UpdateDataOperation$instance extends MigrationOperation$instanc
1798
1862
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1799
1863
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1800
1864
  FindRuntimeAnnotationValue(name: string): unknown | undefined;
1801
- GetAnnotations(): IEnumerable<IAnnotation>;
1802
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
1803
- GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
1865
+ GetAnnotations(): IEnumerable_1<IAnnotation>;
1866
+ GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1867
+ GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1804
1868
  RemoveAnnotation(name: string): IAnnotation | undefined;
1805
1869
  RemoveAnnotation(name: string): Annotation | undefined;
1806
1870
  SetAnnotation(name: string, value: unknown): void;