@tsonic/efcore 10.0.11 → 10.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/bindings.json +0 -500
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +22 -5
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +0 -480
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +16 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +981 -2411
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -70
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +0 -2
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +2 -22
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/bindings.json +0 -528
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +14 -18
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +900 -1800
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -46
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +0 -260
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -13
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +9011 -16771
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1 -376
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +7901 -14241
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +361 -47
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +350 -2250
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +51 -91
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +44938 -86844
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +17 -2067
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +1 -757
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +3 -183
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +3 -4
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +0 -160
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +2 -3
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +14 -794
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +26 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/bindings.json +1610 -5810
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +1 -211
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +129 -309
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +12 -52
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -3
- package/Microsoft.EntityFrameworkCore.Storage.Json/bindings.json +26 -1406
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Update/bindings.json +0 -86
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +0 -4
- package/Microsoft.EntityFrameworkCore.Update.Internal/bindings.json +0 -512
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +0 -18
- package/Microsoft.EntityFrameworkCore.ValueGeneration/bindings.json +6 -272
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +10 -13
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/bindings.json +0 -660
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +32 -33
- package/README.md +119 -2
- package/package.json +4 -4
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
9
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
10
10
|
import * as Microsoft_EntityFrameworkCore_Infrastructure_Internal from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
11
11
|
import type { Annotatable, Annotation, IAnnotatable, IAnnotation, IReadOnlyAnnotatable } from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
12
12
|
import * as Microsoft_EntityFrameworkCore_Metadata_Internal from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
@@ -47,27 +47,6 @@ export interface AddCheckConstraintOperation$instance extends MigrationOperation
|
|
|
47
47
|
set Schema(value: string | undefined);
|
|
48
48
|
Sql: string;
|
|
49
49
|
Table: string;
|
|
50
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
51
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
52
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
53
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
54
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
55
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
56
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
57
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
58
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
59
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
60
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
61
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
62
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
63
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
64
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
65
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
66
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
67
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
68
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
69
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
70
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
71
50
|
}
|
|
72
51
|
|
|
73
52
|
|
|
@@ -95,27 +74,6 @@ export interface AddColumnOperation$instance extends ColumnOperation$instance {
|
|
|
95
74
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
96
75
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
97
76
|
|
|
98
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
99
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
100
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
101
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
102
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
103
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
104
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
105
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
106
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
107
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
108
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
109
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
110
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
111
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
112
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
113
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
114
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
115
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
116
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
117
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
118
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
119
77
|
}
|
|
120
78
|
|
|
121
79
|
|
|
@@ -154,27 +112,6 @@ export interface AddForeignKeyOperation$instance extends MigrationOperation$inst
|
|
|
154
112
|
get Schema(): string | undefined;
|
|
155
113
|
set Schema(value: string | undefined);
|
|
156
114
|
Table: string;
|
|
157
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
158
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
159
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
160
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
161
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
162
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
163
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
164
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
165
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
166
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
167
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
168
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
169
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
170
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
171
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
172
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
173
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
174
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
175
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
176
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
177
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
178
115
|
}
|
|
179
116
|
|
|
180
117
|
|
|
@@ -207,27 +144,6 @@ export interface AddPrimaryKeyOperation$instance extends MigrationOperation$inst
|
|
|
207
144
|
get Schema(): string | undefined;
|
|
208
145
|
set Schema(value: string | undefined);
|
|
209
146
|
Table: string;
|
|
210
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
211
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
212
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
213
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
214
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
215
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
216
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
217
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
218
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
219
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
220
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
221
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
222
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
223
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
224
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
225
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
226
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
227
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
228
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
229
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
230
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
231
147
|
}
|
|
232
148
|
|
|
233
149
|
|
|
@@ -260,27 +176,6 @@ export interface AddUniqueConstraintOperation$instance extends MigrationOperatio
|
|
|
260
176
|
get Schema(): string | undefined;
|
|
261
177
|
set Schema(value: string | undefined);
|
|
262
178
|
Table: string;
|
|
263
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
264
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
265
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
266
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
267
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
268
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
269
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
270
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
271
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
272
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
273
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
274
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
275
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
276
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
277
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
278
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
279
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
280
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
281
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
282
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
283
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
284
179
|
}
|
|
285
180
|
|
|
286
181
|
|
|
@@ -310,27 +205,6 @@ export interface AlterColumnOperation$instance extends ColumnOperation$instance,
|
|
|
310
205
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
311
206
|
|
|
312
207
|
OldColumn: ColumnOperation;
|
|
313
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
314
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
315
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
316
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
317
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
318
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
319
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
320
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
321
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
322
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
323
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
324
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
325
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
326
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
327
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
328
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
329
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
330
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
331
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
332
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
333
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
334
208
|
}
|
|
335
209
|
|
|
336
210
|
|
|
@@ -359,27 +233,6 @@ export interface AlterDatabaseOperation$instance extends DatabaseOperation$insta
|
|
|
359
233
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
360
234
|
|
|
361
235
|
readonly OldDatabase: DatabaseOperation;
|
|
362
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
363
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
364
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
365
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
366
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
367
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
368
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
369
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
370
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
371
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
372
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
373
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
374
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
375
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
376
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
377
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
378
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
379
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
380
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
381
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
382
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
383
236
|
}
|
|
384
237
|
|
|
385
238
|
|
|
@@ -410,27 +263,6 @@ export interface AlterSequenceOperation$instance extends SequenceOperation$insta
|
|
|
410
263
|
OldSequence: SequenceOperation;
|
|
411
264
|
get Schema(): string | undefined;
|
|
412
265
|
set Schema(value: string | undefined);
|
|
413
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
414
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
415
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
416
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
417
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
418
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
419
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
420
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
421
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
422
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
423
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
424
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
425
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
426
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
427
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
428
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
429
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
430
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
431
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
432
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
433
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
434
266
|
}
|
|
435
267
|
|
|
436
268
|
|
|
@@ -459,27 +291,6 @@ export interface AlterTableOperation$instance extends TableOperation$instance, I
|
|
|
459
291
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
460
292
|
|
|
461
293
|
OldTable: TableOperation;
|
|
462
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
463
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
464
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
465
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
466
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
467
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
468
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
469
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
470
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
471
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
472
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
473
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
474
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
475
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
476
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
477
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
478
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
479
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
480
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
481
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
482
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
483
294
|
}
|
|
484
295
|
|
|
485
296
|
|
|
@@ -532,27 +343,6 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
|
|
|
532
343
|
get Schema(): string | undefined;
|
|
533
344
|
set Schema(value: string | undefined);
|
|
534
345
|
Table: string;
|
|
535
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
536
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
537
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
538
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
539
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
540
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
541
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
542
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
543
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
544
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
545
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
546
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
547
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
548
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
549
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
550
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
551
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
552
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
553
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
554
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
555
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
556
346
|
}
|
|
557
347
|
|
|
558
348
|
|
|
@@ -588,27 +378,6 @@ export interface CreateIndexOperation$instance extends MigrationOperation$instan
|
|
|
588
378
|
get Schema(): string | undefined;
|
|
589
379
|
set Schema(value: string | undefined);
|
|
590
380
|
Table: string;
|
|
591
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
592
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
593
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
594
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
595
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
596
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
597
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
598
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
599
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
600
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
601
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
602
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
603
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
604
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
605
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
606
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
607
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
608
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
609
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
610
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
611
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
612
381
|
}
|
|
613
382
|
|
|
614
383
|
|
|
@@ -640,27 +409,6 @@ export interface CreateSequenceOperation$instance extends SequenceOperation$inst
|
|
|
640
409
|
get Schema(): string | undefined;
|
|
641
410
|
set Schema(value: string | undefined);
|
|
642
411
|
StartValue: long;
|
|
643
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
644
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
645
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
646
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
647
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
648
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
649
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
650
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
651
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
652
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
653
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
654
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
655
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
656
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
657
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
658
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
659
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
660
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
661
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
662
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
663
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
664
412
|
}
|
|
665
413
|
|
|
666
414
|
|
|
@@ -692,27 +440,6 @@ export interface CreateTableOperation$instance extends TableOperation$instance {
|
|
|
692
440
|
get PrimaryKey(): AddPrimaryKeyOperation | undefined;
|
|
693
441
|
set PrimaryKey(value: AddPrimaryKeyOperation | undefined);
|
|
694
442
|
readonly UniqueConstraints: List_1<AddUniqueConstraintOperation>;
|
|
695
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
696
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
697
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
698
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
699
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
700
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
701
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
702
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
703
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
704
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
705
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
706
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
707
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
708
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
709
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
710
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
711
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
712
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
713
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
714
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
715
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
716
443
|
}
|
|
717
444
|
|
|
718
445
|
|
|
@@ -740,27 +467,6 @@ export interface DatabaseOperation$instance extends MigrationOperation$instance
|
|
|
740
467
|
|
|
741
468
|
get Collation(): string | undefined;
|
|
742
469
|
set Collation(value: string | undefined);
|
|
743
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
744
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
745
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
746
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
747
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
748
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
749
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
750
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
751
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
752
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
753
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
754
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
755
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
756
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
757
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
758
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
759
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
760
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
761
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
762
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
763
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
764
470
|
}
|
|
765
471
|
|
|
766
472
|
|
|
@@ -792,27 +498,6 @@ export interface DeleteDataOperation$instance extends MigrationOperation$instanc
|
|
|
792
498
|
get Schema(): string | undefined;
|
|
793
499
|
set Schema(value: string | undefined);
|
|
794
500
|
Table: string;
|
|
795
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
796
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
797
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
798
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
799
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
800
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
801
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
802
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
803
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
804
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
805
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
806
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
807
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
808
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
809
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
810
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
811
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
812
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
813
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
814
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
815
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
816
501
|
}
|
|
817
502
|
|
|
818
503
|
|
|
@@ -843,27 +528,6 @@ export interface DropCheckConstraintOperation$instance extends MigrationOperatio
|
|
|
843
528
|
get Schema(): string | undefined;
|
|
844
529
|
set Schema(value: string | undefined);
|
|
845
530
|
Table: string;
|
|
846
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
847
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
848
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
849
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
850
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
851
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
852
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
853
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
854
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
855
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
856
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
857
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
858
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
859
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
860
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
861
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
862
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
863
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
864
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
865
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
866
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
867
531
|
}
|
|
868
532
|
|
|
869
533
|
|
|
@@ -894,27 +558,6 @@ export interface DropColumnOperation$instance extends MigrationOperation$instanc
|
|
|
894
558
|
get Schema(): string | undefined;
|
|
895
559
|
set Schema(value: string | undefined);
|
|
896
560
|
Table: string;
|
|
897
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
898
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
899
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
900
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
901
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
902
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
903
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
904
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
905
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
906
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
907
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
908
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
909
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
910
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
911
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
912
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
913
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
914
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
915
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
916
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
917
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
918
561
|
}
|
|
919
562
|
|
|
920
563
|
|
|
@@ -945,27 +588,6 @@ export interface DropForeignKeyOperation$instance extends MigrationOperation$ins
|
|
|
945
588
|
get Schema(): string | undefined;
|
|
946
589
|
set Schema(value: string | undefined);
|
|
947
590
|
Table: string;
|
|
948
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
949
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
950
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
951
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
952
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
953
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
954
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
955
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
956
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
957
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
958
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
959
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
960
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
961
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
962
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
963
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
964
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
965
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
966
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
967
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
968
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
969
591
|
}
|
|
970
592
|
|
|
971
593
|
|
|
@@ -996,27 +618,6 @@ export interface DropIndexOperation$instance extends MigrationOperation$instance
|
|
|
996
618
|
set Schema(value: string | undefined);
|
|
997
619
|
get Table(): string | undefined;
|
|
998
620
|
set Table(value: string | undefined);
|
|
999
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1000
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1001
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1002
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1003
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1004
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1005
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1006
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1007
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1008
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1009
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1010
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1011
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1012
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1013
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1014
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1015
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1016
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1017
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1018
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1019
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1020
621
|
}
|
|
1021
622
|
|
|
1022
623
|
|
|
@@ -1046,27 +647,6 @@ export interface DropPrimaryKeyOperation$instance extends MigrationOperation$ins
|
|
|
1046
647
|
get Schema(): string | undefined;
|
|
1047
648
|
set Schema(value: string | undefined);
|
|
1048
649
|
Table: string;
|
|
1049
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1050
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1051
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1052
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1053
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1054
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1055
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1056
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1057
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1058
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1059
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1060
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1061
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1062
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1063
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1064
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1065
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1066
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1067
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1068
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1069
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1070
650
|
}
|
|
1071
651
|
|
|
1072
652
|
|
|
@@ -1093,27 +673,6 @@ export interface DropSchemaOperation$instance extends MigrationOperation$instanc
|
|
|
1093
673
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1094
674
|
|
|
1095
675
|
Name: string;
|
|
1096
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1097
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1098
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1099
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1100
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1101
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1102
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1103
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1104
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1105
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1106
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1107
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1108
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1109
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1110
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1111
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1112
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1113
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1114
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1115
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1116
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1117
676
|
}
|
|
1118
677
|
|
|
1119
678
|
|
|
@@ -1141,27 +700,6 @@ export interface DropSequenceOperation$instance extends MigrationOperation$insta
|
|
|
1141
700
|
Name: string;
|
|
1142
701
|
get Schema(): string | undefined;
|
|
1143
702
|
set Schema(value: string | undefined);
|
|
1144
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1145
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1146
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1147
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1148
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1149
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1150
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1151
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1152
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1153
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1154
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1155
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1156
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1157
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1158
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1159
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1160
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1161
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1162
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1163
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1164
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1165
703
|
}
|
|
1166
704
|
|
|
1167
705
|
|
|
@@ -1190,27 +728,6 @@ export interface DropTableOperation$instance extends MigrationOperation$instance
|
|
|
1190
728
|
Name: string;
|
|
1191
729
|
get Schema(): string | undefined;
|
|
1192
730
|
set Schema(value: string | undefined);
|
|
1193
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1194
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1195
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1196
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1197
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1198
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1199
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1200
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1201
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1202
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1203
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1204
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1205
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1206
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1207
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1208
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1209
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1210
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1211
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1212
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1213
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1214
731
|
}
|
|
1215
732
|
|
|
1216
733
|
|
|
@@ -1241,27 +758,6 @@ export interface DropUniqueConstraintOperation$instance extends MigrationOperati
|
|
|
1241
758
|
get Schema(): string | undefined;
|
|
1242
759
|
set Schema(value: string | undefined);
|
|
1243
760
|
Table: string;
|
|
1244
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1245
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1246
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1247
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1248
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1249
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1250
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1251
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1252
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1253
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1254
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1255
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1256
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1257
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1258
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1259
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1260
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1261
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1262
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1263
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1264
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1265
761
|
}
|
|
1266
762
|
|
|
1267
763
|
|
|
@@ -1288,27 +784,6 @@ export interface EnsureSchemaOperation$instance extends MigrationOperation$insta
|
|
|
1288
784
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1289
785
|
|
|
1290
786
|
Name: string;
|
|
1291
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1292
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1293
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1294
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1295
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1296
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1297
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1298
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1299
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1300
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1301
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1302
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1303
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1304
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1305
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1306
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1307
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1308
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1309
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1310
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1311
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1312
787
|
}
|
|
1313
788
|
|
|
1314
789
|
|
|
@@ -1341,27 +816,6 @@ export interface InsertDataOperation$instance extends MigrationOperation$instanc
|
|
|
1341
816
|
set Schema(value: string | undefined);
|
|
1342
817
|
Table: string;
|
|
1343
818
|
Values: Array<Array<(unknown | undefined)>>;
|
|
1344
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1345
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1346
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1347
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1348
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1349
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1350
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1351
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1352
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1353
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1354
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1355
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1356
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1357
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1358
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1359
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1360
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1361
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1362
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1363
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1364
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1365
819
|
}
|
|
1366
820
|
|
|
1367
821
|
|
|
@@ -1388,27 +842,6 @@ export interface MigrationOperation$instance extends Annotatable {
|
|
|
1388
842
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1389
843
|
|
|
1390
844
|
IsDestructiveChange: boolean;
|
|
1391
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1392
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1393
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1394
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1395
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1396
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1397
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1398
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1399
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1400
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1401
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1402
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1403
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1404
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1405
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1406
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1407
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1408
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1409
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1410
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1411
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1412
845
|
}
|
|
1413
846
|
|
|
1414
847
|
|
|
@@ -1438,27 +871,6 @@ export interface RenameColumnOperation$instance extends MigrationOperation$insta
|
|
|
1438
871
|
get Schema(): string | undefined;
|
|
1439
872
|
set Schema(value: string | undefined);
|
|
1440
873
|
Table: string;
|
|
1441
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1442
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1443
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1444
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1445
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1446
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1447
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1448
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1449
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1450
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1451
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1452
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1453
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1454
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1455
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1456
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1457
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1458
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1459
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1460
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1461
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1462
874
|
}
|
|
1463
875
|
|
|
1464
876
|
|
|
@@ -1490,27 +902,6 @@ export interface RenameIndexOperation$instance extends MigrationOperation$instan
|
|
|
1490
902
|
set Schema(value: string | undefined);
|
|
1491
903
|
get Table(): string | undefined;
|
|
1492
904
|
set Table(value: string | undefined);
|
|
1493
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1494
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1495
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1496
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1497
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1498
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1499
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1500
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1501
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1502
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1503
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1504
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1505
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1506
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1507
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1508
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1509
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1510
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1511
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1512
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1513
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1514
905
|
}
|
|
1515
906
|
|
|
1516
907
|
|
|
@@ -1542,27 +933,6 @@ export interface RenameSequenceOperation$instance extends MigrationOperation$ins
|
|
|
1542
933
|
set NewSchema(value: string | undefined);
|
|
1543
934
|
get Schema(): string | undefined;
|
|
1544
935
|
set Schema(value: string | undefined);
|
|
1545
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1546
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1547
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1548
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1549
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1550
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1551
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1552
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1553
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1554
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1555
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1556
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1557
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1558
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1559
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1560
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1561
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1562
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1563
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1564
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1565
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1566
936
|
}
|
|
1567
937
|
|
|
1568
938
|
|
|
@@ -1595,27 +965,6 @@ export interface RenameTableOperation$instance extends MigrationOperation$instan
|
|
|
1595
965
|
set NewSchema(value: string | undefined);
|
|
1596
966
|
get Schema(): string | undefined;
|
|
1597
967
|
set Schema(value: string | undefined);
|
|
1598
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1599
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1600
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1601
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1602
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1603
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1604
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1605
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1606
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1607
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1608
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1609
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1610
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1611
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1612
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1613
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1614
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1615
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1616
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1617
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1618
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1619
968
|
}
|
|
1620
969
|
|
|
1621
970
|
|
|
@@ -1645,27 +994,6 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
|
|
|
1645
994
|
get Schema(): string | undefined;
|
|
1646
995
|
set Schema(value: string | undefined);
|
|
1647
996
|
StartValue: Nullable_1<System_Internal.Int64>;
|
|
1648
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1649
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1650
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1651
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1652
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1653
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1654
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1655
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1656
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1657
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1658
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1659
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1660
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1661
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1662
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1663
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1664
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1665
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1666
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1667
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1668
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1669
997
|
}
|
|
1670
998
|
|
|
1671
999
|
|
|
@@ -1694,27 +1022,6 @@ export interface SequenceOperation$instance extends MigrationOperation$instance
|
|
|
1694
1022
|
IsCyclic: boolean;
|
|
1695
1023
|
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
1696
1024
|
MinValue: Nullable_1<System_Internal.Int64>;
|
|
1697
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1698
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1699
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1700
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1701
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1702
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1703
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1704
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1705
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1706
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1707
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1708
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1709
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1710
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1711
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1712
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1713
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1714
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1715
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1716
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1717
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1718
1025
|
}
|
|
1719
1026
|
|
|
1720
1027
|
|
|
@@ -1740,27 +1047,6 @@ export interface SqlOperation$instance extends MigrationOperation$instance {
|
|
|
1740
1047
|
|
|
1741
1048
|
Sql: string;
|
|
1742
1049
|
SuppressTransaction: boolean;
|
|
1743
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1744
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1745
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1746
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1747
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1748
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1749
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1750
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1751
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1752
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1753
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1754
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1755
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1756
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1757
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1758
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1759
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1760
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1761
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1762
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1763
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1764
1050
|
}
|
|
1765
1051
|
|
|
1766
1052
|
|
|
@@ -1791,27 +1077,6 @@ export interface TableOperation$instance extends MigrationOperation$instance {
|
|
|
1791
1077
|
Name: string;
|
|
1792
1078
|
get Schema(): string | undefined;
|
|
1793
1079
|
set Schema(value: string | undefined);
|
|
1794
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1795
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1796
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1797
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1798
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1799
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1800
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1801
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1802
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1803
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1804
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1805
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1806
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1807
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1808
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1809
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1810
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1811
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1812
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1813
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1814
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1815
1080
|
}
|
|
1816
1081
|
|
|
1817
1082
|
|
|
@@ -1848,27 +1113,6 @@ export interface UpdateDataOperation$instance extends MigrationOperation$instanc
|
|
|
1848
1113
|
set Schema(value: string | undefined);
|
|
1849
1114
|
Table: string;
|
|
1850
1115
|
Values: Array<Array<(unknown | undefined)>>;
|
|
1851
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1852
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1853
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1854
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1855
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1856
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1857
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1858
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1859
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
1860
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1861
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
1862
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1863
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1864
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1865
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1866
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1867
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1868
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1869
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1870
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
1871
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1872
1116
|
}
|
|
1873
1117
|
|
|
1874
1118
|
|