@tsonic/efcore 10.0.3 → 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.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +634 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +299 -154
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +591 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +139 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +36 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +535 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +105 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +330 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +62 -30
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +235 -121
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1624 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +718 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +860 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +27 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +35 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +2232 -1303
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +123 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +88 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +445 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +28 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +601 -240
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +505 -257
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +318 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +35 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +133 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +502 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +80 -35
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +102 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +143 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +136 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +198 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +69 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1553 -1291
- package/package.json +4 -4
|
@@ -12,10 +12,12 @@ 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 {
|
|
16
|
-
import type { Boolean as ClrBoolean,
|
|
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
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
20
|
+
|
|
19
21
|
readonly OldAnnotations: IMutableAnnotatable;
|
|
20
22
|
}
|
|
21
23
|
|
|
@@ -23,6 +25,8 @@ export interface IAlterMigrationOperation$instance {
|
|
|
23
25
|
export type IAlterMigrationOperation = IAlterMigrationOperation$instance;
|
|
24
26
|
|
|
25
27
|
export interface ITableMigrationOperation$instance {
|
|
28
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
29
|
+
|
|
26
30
|
readonly Schema: string | undefined;
|
|
27
31
|
readonly Table: string;
|
|
28
32
|
}
|
|
@@ -31,6 +35,13 @@ export interface ITableMigrationOperation$instance {
|
|
|
31
35
|
export type ITableMigrationOperation = ITableMigrationOperation$instance;
|
|
32
36
|
|
|
33
37
|
export interface AddCheckConstraintOperation$instance extends MigrationOperation$instance {
|
|
38
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddCheckConstraintOperation: never;
|
|
39
|
+
|
|
40
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
41
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
42
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
43
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
44
|
+
|
|
34
45
|
Name: string;
|
|
35
46
|
get Schema(): string | undefined;
|
|
36
47
|
set Schema(value: string | undefined);
|
|
@@ -39,8 +50,8 @@ export interface AddCheckConstraintOperation$instance extends MigrationOperation
|
|
|
39
50
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
40
51
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
41
52
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
42
|
-
AddAnnotations(annotations:
|
|
43
|
-
AddAnnotations(annotations:
|
|
53
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
54
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
44
55
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
45
56
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
46
57
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -50,9 +61,9 @@ export interface AddCheckConstraintOperation$instance extends MigrationOperation
|
|
|
50
61
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
51
62
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
52
63
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
53
|
-
GetAnnotations():
|
|
54
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
55
|
-
GetRuntimeAnnotations():
|
|
64
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
65
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
66
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
56
67
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
57
68
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
58
69
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -77,11 +88,18 @@ export type AddCheckConstraintOperation = AddCheckConstraintOperation$instance &
|
|
|
77
88
|
|
|
78
89
|
|
|
79
90
|
export interface AddColumnOperation$instance extends ColumnOperation$instance {
|
|
91
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddColumnOperation: never;
|
|
92
|
+
|
|
93
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
94
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
95
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
96
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
97
|
+
|
|
80
98
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
81
99
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
82
100
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
83
|
-
AddAnnotations(annotations:
|
|
84
|
-
AddAnnotations(annotations:
|
|
101
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
102
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
85
103
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
86
104
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
87
105
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -91,9 +109,9 @@ export interface AddColumnOperation$instance extends ColumnOperation$instance {
|
|
|
91
109
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
92
110
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
93
111
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
94
|
-
GetAnnotations():
|
|
95
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
96
|
-
GetRuntimeAnnotations():
|
|
112
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
113
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
114
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
97
115
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
98
116
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
99
117
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -117,6 +135,13 @@ export type AddColumnOperation = AddColumnOperation$instance & __AddColumnOperat
|
|
|
117
135
|
|
|
118
136
|
|
|
119
137
|
export interface AddForeignKeyOperation$instance extends MigrationOperation$instance {
|
|
138
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddForeignKeyOperation: never;
|
|
139
|
+
|
|
140
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
143
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
144
|
+
|
|
120
145
|
Columns: string[];
|
|
121
146
|
Name: string;
|
|
122
147
|
OnDelete: ReferentialAction;
|
|
@@ -132,8 +157,8 @@ export interface AddForeignKeyOperation$instance extends MigrationOperation$inst
|
|
|
132
157
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
133
158
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
134
159
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
135
|
-
AddAnnotations(annotations:
|
|
136
|
-
AddAnnotations(annotations:
|
|
160
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
161
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
137
162
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
138
163
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
139
164
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -143,9 +168,9 @@ export interface AddForeignKeyOperation$instance extends MigrationOperation$inst
|
|
|
143
168
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
144
169
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
145
170
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
146
|
-
GetAnnotations():
|
|
147
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
148
|
-
GetRuntimeAnnotations():
|
|
171
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
172
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
173
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
149
174
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
150
175
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
151
176
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -170,6 +195,13 @@ export type AddForeignKeyOperation = AddForeignKeyOperation$instance & __AddFore
|
|
|
170
195
|
|
|
171
196
|
|
|
172
197
|
export interface AddPrimaryKeyOperation$instance extends MigrationOperation$instance {
|
|
198
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddPrimaryKeyOperation: never;
|
|
199
|
+
|
|
200
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
201
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
202
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
203
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
204
|
+
|
|
173
205
|
Columns: string[];
|
|
174
206
|
Name: string;
|
|
175
207
|
get Schema(): string | undefined;
|
|
@@ -178,8 +210,8 @@ export interface AddPrimaryKeyOperation$instance extends MigrationOperation$inst
|
|
|
178
210
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
179
211
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
180
212
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
181
|
-
AddAnnotations(annotations:
|
|
182
|
-
AddAnnotations(annotations:
|
|
213
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
214
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
183
215
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
184
216
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
185
217
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -189,9 +221,9 @@ export interface AddPrimaryKeyOperation$instance extends MigrationOperation$inst
|
|
|
189
221
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
190
222
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
191
223
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
192
|
-
GetAnnotations():
|
|
193
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
194
|
-
GetRuntimeAnnotations():
|
|
224
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
225
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
226
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
195
227
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
196
228
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
197
229
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -216,6 +248,13 @@ export type AddPrimaryKeyOperation = AddPrimaryKeyOperation$instance & __AddPrim
|
|
|
216
248
|
|
|
217
249
|
|
|
218
250
|
export interface AddUniqueConstraintOperation$instance extends MigrationOperation$instance {
|
|
251
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_AddUniqueConstraintOperation: never;
|
|
252
|
+
|
|
253
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
254
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
255
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
256
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
257
|
+
|
|
219
258
|
Columns: string[];
|
|
220
259
|
Name: string;
|
|
221
260
|
get Schema(): string | undefined;
|
|
@@ -224,8 +263,8 @@ export interface AddUniqueConstraintOperation$instance extends MigrationOperatio
|
|
|
224
263
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
225
264
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
226
265
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
227
|
-
AddAnnotations(annotations:
|
|
228
|
-
AddAnnotations(annotations:
|
|
266
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
267
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
229
268
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
230
269
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
231
270
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -235,9 +274,9 @@ export interface AddUniqueConstraintOperation$instance extends MigrationOperatio
|
|
|
235
274
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
236
275
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
237
276
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
238
|
-
GetAnnotations():
|
|
239
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
240
|
-
GetRuntimeAnnotations():
|
|
277
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
278
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
279
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
241
280
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
242
281
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
243
282
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -261,13 +300,21 @@ export interface __AddUniqueConstraintOperation$views {
|
|
|
261
300
|
export type AddUniqueConstraintOperation = AddUniqueConstraintOperation$instance & __AddUniqueConstraintOperation$views;
|
|
262
301
|
|
|
263
302
|
|
|
264
|
-
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
|
+
|
|
306
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
307
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
308
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
309
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
310
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
311
|
+
|
|
265
312
|
OldColumn: ColumnOperation;
|
|
266
313
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
267
314
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
268
315
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
269
|
-
AddAnnotations(annotations:
|
|
270
|
-
AddAnnotations(annotations:
|
|
316
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
317
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
271
318
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
272
319
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
273
320
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -277,9 +324,9 @@ export interface AlterColumnOperation$instance extends ColumnOperation$instance
|
|
|
277
324
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
278
325
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
279
326
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
280
|
-
GetAnnotations():
|
|
281
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
282
|
-
GetRuntimeAnnotations():
|
|
327
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
328
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
329
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
283
330
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
284
331
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
285
332
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -300,18 +347,23 @@ export interface __AlterColumnOperation$views {
|
|
|
300
347
|
As_ITableMigrationOperation(): ITableMigrationOperation$instance;
|
|
301
348
|
}
|
|
302
349
|
|
|
303
|
-
export interface AlterColumnOperation$instance extends IAlterMigrationOperation$instance {}
|
|
304
|
-
|
|
305
350
|
export type AlterColumnOperation = AlterColumnOperation$instance & __AlterColumnOperation$views;
|
|
306
351
|
|
|
307
352
|
|
|
308
|
-
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
|
+
|
|
356
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
357
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
358
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
359
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
360
|
+
|
|
309
361
|
readonly OldDatabase: DatabaseOperation;
|
|
310
362
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
311
363
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
312
364
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
313
|
-
AddAnnotations(annotations:
|
|
314
|
-
AddAnnotations(annotations:
|
|
365
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
366
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
315
367
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
316
368
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
317
369
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -321,9 +373,9 @@ export interface AlterDatabaseOperation$instance extends DatabaseOperation$insta
|
|
|
321
373
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
322
374
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
323
375
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
324
|
-
GetAnnotations():
|
|
325
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
326
|
-
GetRuntimeAnnotations():
|
|
376
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
377
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
378
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
327
379
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
328
380
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
329
381
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -343,12 +395,17 @@ export interface __AlterDatabaseOperation$views {
|
|
|
343
395
|
As_IAlterMigrationOperation(): IAlterMigrationOperation$instance;
|
|
344
396
|
}
|
|
345
397
|
|
|
346
|
-
export interface AlterDatabaseOperation$instance extends IAlterMigrationOperation$instance {}
|
|
347
|
-
|
|
348
398
|
export type AlterDatabaseOperation = AlterDatabaseOperation$instance & __AlterDatabaseOperation$views;
|
|
349
399
|
|
|
350
400
|
|
|
351
|
-
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
|
+
|
|
404
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
405
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
406
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
407
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
408
|
+
|
|
352
409
|
Name: string;
|
|
353
410
|
OldSequence: SequenceOperation;
|
|
354
411
|
get Schema(): string | undefined;
|
|
@@ -356,8 +413,8 @@ export interface AlterSequenceOperation$instance extends SequenceOperation$insta
|
|
|
356
413
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
357
414
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
358
415
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
359
|
-
AddAnnotations(annotations:
|
|
360
|
-
AddAnnotations(annotations:
|
|
416
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
417
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
361
418
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
362
419
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
363
420
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -367,9 +424,9 @@ export interface AlterSequenceOperation$instance extends SequenceOperation$insta
|
|
|
367
424
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
368
425
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
369
426
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
370
|
-
GetAnnotations():
|
|
371
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
372
|
-
GetRuntimeAnnotations():
|
|
427
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
428
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
429
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
373
430
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
374
431
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
375
432
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -389,18 +446,24 @@ export interface __AlterSequenceOperation$views {
|
|
|
389
446
|
As_IAlterMigrationOperation(): IAlterMigrationOperation$instance;
|
|
390
447
|
}
|
|
391
448
|
|
|
392
|
-
export interface AlterSequenceOperation$instance extends IAlterMigrationOperation$instance {}
|
|
393
|
-
|
|
394
449
|
export type AlterSequenceOperation = AlterSequenceOperation$instance & __AlterSequenceOperation$views;
|
|
395
450
|
|
|
396
451
|
|
|
397
|
-
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
|
+
|
|
455
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
456
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
457
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
458
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_IAlterMigrationOperation: never;
|
|
459
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
460
|
+
|
|
398
461
|
OldTable: TableOperation;
|
|
399
462
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
400
463
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
401
464
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
402
|
-
AddAnnotations(annotations:
|
|
403
|
-
AddAnnotations(annotations:
|
|
465
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
466
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
404
467
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
405
468
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
406
469
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -410,9 +473,9 @@ export interface AlterTableOperation$instance extends TableOperation$instance {
|
|
|
410
473
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
411
474
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
412
475
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
413
|
-
GetAnnotations():
|
|
414
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
415
|
-
GetRuntimeAnnotations():
|
|
476
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
477
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
478
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
416
479
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
417
480
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
418
481
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -433,12 +496,17 @@ export interface __AlterTableOperation$views {
|
|
|
433
496
|
As_ITableMigrationOperation(): ITableMigrationOperation$instance;
|
|
434
497
|
}
|
|
435
498
|
|
|
436
|
-
export interface AlterTableOperation$instance extends IAlterMigrationOperation$instance {}
|
|
437
|
-
|
|
438
499
|
export type AlterTableOperation = AlterTableOperation$instance & __AlterTableOperation$views;
|
|
439
500
|
|
|
440
501
|
|
|
441
502
|
export interface ColumnOperation$instance extends MigrationOperation$instance {
|
|
503
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_ColumnOperation: never;
|
|
504
|
+
|
|
505
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
506
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
507
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
508
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
509
|
+
|
|
442
510
|
ClrType: Type;
|
|
443
511
|
get Collation(): string | undefined;
|
|
444
512
|
set Collation(value: string | undefined);
|
|
@@ -452,23 +520,23 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
|
|
|
452
520
|
set DefaultValue(value: unknown | undefined);
|
|
453
521
|
get DefaultValueSql(): string | undefined;
|
|
454
522
|
set DefaultValueSql(value: string | undefined);
|
|
455
|
-
IsFixedLength:
|
|
523
|
+
IsFixedLength: Nullable_1<System_Internal.Boolean>;
|
|
456
524
|
IsNullable: boolean;
|
|
457
525
|
IsRowVersion: boolean;
|
|
458
|
-
IsStored:
|
|
459
|
-
IsUnicode:
|
|
460
|
-
MaxLength:
|
|
526
|
+
IsStored: Nullable_1<System_Internal.Boolean>;
|
|
527
|
+
IsUnicode: Nullable_1<System_Internal.Boolean>;
|
|
528
|
+
MaxLength: Nullable_1<System_Internal.Int32>;
|
|
461
529
|
Name: string;
|
|
462
|
-
Precision:
|
|
463
|
-
Scale:
|
|
530
|
+
Precision: Nullable_1<System_Internal.Int32>;
|
|
531
|
+
Scale: Nullable_1<System_Internal.Int32>;
|
|
464
532
|
get Schema(): string | undefined;
|
|
465
533
|
set Schema(value: string | undefined);
|
|
466
534
|
Table: string;
|
|
467
535
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
468
536
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
469
537
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
470
|
-
AddAnnotations(annotations:
|
|
471
|
-
AddAnnotations(annotations:
|
|
538
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
539
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
472
540
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
473
541
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
474
542
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -478,9 +546,9 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
|
|
|
478
546
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
479
547
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
480
548
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
481
|
-
GetAnnotations():
|
|
482
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
483
|
-
GetRuntimeAnnotations():
|
|
549
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
550
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
551
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
484
552
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
485
553
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
486
554
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -503,6 +571,13 @@ export type ColumnOperation = ColumnOperation$instance & __ColumnOperation$views
|
|
|
503
571
|
|
|
504
572
|
|
|
505
573
|
export interface CreateIndexOperation$instance extends MigrationOperation$instance {
|
|
574
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateIndexOperation: never;
|
|
575
|
+
|
|
576
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
577
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
578
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
579
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
580
|
+
|
|
506
581
|
Columns: string[];
|
|
507
582
|
get Filter(): string | undefined;
|
|
508
583
|
set Filter(value: string | undefined);
|
|
@@ -516,8 +591,8 @@ export interface CreateIndexOperation$instance extends MigrationOperation$instan
|
|
|
516
591
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
517
592
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
518
593
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
519
|
-
AddAnnotations(annotations:
|
|
520
|
-
AddAnnotations(annotations:
|
|
594
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
595
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
521
596
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
522
597
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
523
598
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -527,9 +602,9 @@ export interface CreateIndexOperation$instance extends MigrationOperation$instan
|
|
|
527
602
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
528
603
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
529
604
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
530
|
-
GetAnnotations():
|
|
531
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
532
|
-
GetRuntimeAnnotations():
|
|
605
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
606
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
607
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
533
608
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
534
609
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
535
610
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -554,6 +629,12 @@ export type CreateIndexOperation = CreateIndexOperation$instance & __CreateIndex
|
|
|
554
629
|
|
|
555
630
|
|
|
556
631
|
export interface CreateSequenceOperation$instance extends SequenceOperation$instance {
|
|
632
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateSequenceOperation: never;
|
|
633
|
+
|
|
634
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
635
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
636
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
637
|
+
|
|
557
638
|
ClrType: Type;
|
|
558
639
|
Name: string;
|
|
559
640
|
get Schema(): string | undefined;
|
|
@@ -562,8 +643,8 @@ export interface CreateSequenceOperation$instance extends SequenceOperation$inst
|
|
|
562
643
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
563
644
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
564
645
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
565
|
-
AddAnnotations(annotations:
|
|
566
|
-
AddAnnotations(annotations:
|
|
646
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
647
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
567
648
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
568
649
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
569
650
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -573,9 +654,9 @@ export interface CreateSequenceOperation$instance extends SequenceOperation$inst
|
|
|
573
654
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
574
655
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
575
656
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
576
|
-
GetAnnotations():
|
|
577
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
578
|
-
GetRuntimeAnnotations():
|
|
657
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
658
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
659
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
579
660
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
580
661
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
581
662
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -598,17 +679,24 @@ export type CreateSequenceOperation = CreateSequenceOperation$instance & __Creat
|
|
|
598
679
|
|
|
599
680
|
|
|
600
681
|
export interface CreateTableOperation$instance extends TableOperation$instance {
|
|
601
|
-
readonly
|
|
602
|
-
|
|
603
|
-
readonly
|
|
682
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_CreateTableOperation: never;
|
|
683
|
+
|
|
684
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
686
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
687
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
688
|
+
|
|
689
|
+
readonly CheckConstraints: List_1<AddCheckConstraintOperation>;
|
|
690
|
+
readonly Columns: List_1<AddColumnOperation>;
|
|
691
|
+
readonly ForeignKeys: List_1<AddForeignKeyOperation>;
|
|
604
692
|
get PrimaryKey(): AddPrimaryKeyOperation | undefined;
|
|
605
693
|
set PrimaryKey(value: AddPrimaryKeyOperation | undefined);
|
|
606
|
-
readonly UniqueConstraints:
|
|
694
|
+
readonly UniqueConstraints: List_1<AddUniqueConstraintOperation>;
|
|
607
695
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
608
696
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
609
697
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
610
|
-
AddAnnotations(annotations:
|
|
611
|
-
AddAnnotations(annotations:
|
|
698
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
699
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
612
700
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
613
701
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
614
702
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -618,9 +706,9 @@ export interface CreateTableOperation$instance extends TableOperation$instance {
|
|
|
618
706
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
619
707
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
620
708
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
621
|
-
GetAnnotations():
|
|
622
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
623
|
-
GetRuntimeAnnotations():
|
|
709
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
710
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
711
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
624
712
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
625
713
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
626
714
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -644,13 +732,19 @@ export type CreateTableOperation = CreateTableOperation$instance & __CreateTable
|
|
|
644
732
|
|
|
645
733
|
|
|
646
734
|
export interface DatabaseOperation$instance extends MigrationOperation$instance {
|
|
735
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DatabaseOperation: never;
|
|
736
|
+
|
|
737
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
738
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
739
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
740
|
+
|
|
647
741
|
get Collation(): string | undefined;
|
|
648
742
|
set Collation(value: string | undefined);
|
|
649
743
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
650
744
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
651
745
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
652
|
-
AddAnnotations(annotations:
|
|
653
|
-
AddAnnotations(annotations:
|
|
746
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
747
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
654
748
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
655
749
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
656
750
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -660,9 +754,9 @@ export interface DatabaseOperation$instance extends MigrationOperation$instance
|
|
|
660
754
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
661
755
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
662
756
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
663
|
-
GetAnnotations():
|
|
664
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
665
|
-
GetRuntimeAnnotations():
|
|
757
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
758
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
759
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
666
760
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
667
761
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
668
762
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -684,6 +778,13 @@ export type DatabaseOperation = DatabaseOperation$instance & __DatabaseOperation
|
|
|
684
778
|
|
|
685
779
|
|
|
686
780
|
export interface DeleteDataOperation$instance extends MigrationOperation$instance {
|
|
781
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DeleteDataOperation: never;
|
|
782
|
+
|
|
783
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
784
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
785
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
786
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
787
|
+
|
|
687
788
|
KeyColumns: string[];
|
|
688
789
|
get KeyColumnTypes(): string[] | undefined;
|
|
689
790
|
set KeyColumnTypes(value: string[] | undefined);
|
|
@@ -694,8 +795,8 @@ export interface DeleteDataOperation$instance extends MigrationOperation$instanc
|
|
|
694
795
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
695
796
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
696
797
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
697
|
-
AddAnnotations(annotations:
|
|
698
|
-
AddAnnotations(annotations:
|
|
798
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
799
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
699
800
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
700
801
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
701
802
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -705,9 +806,9 @@ export interface DeleteDataOperation$instance extends MigrationOperation$instanc
|
|
|
705
806
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
706
807
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
707
808
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
708
|
-
GetAnnotations():
|
|
709
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
710
|
-
GetRuntimeAnnotations():
|
|
809
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
810
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
811
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
711
812
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
712
813
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
713
814
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -731,6 +832,13 @@ export type DeleteDataOperation = DeleteDataOperation$instance & __DeleteDataOpe
|
|
|
731
832
|
|
|
732
833
|
|
|
733
834
|
export interface DropCheckConstraintOperation$instance extends MigrationOperation$instance {
|
|
835
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropCheckConstraintOperation: never;
|
|
836
|
+
|
|
837
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
838
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
839
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
840
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
841
|
+
|
|
734
842
|
Name: string;
|
|
735
843
|
get Schema(): string | undefined;
|
|
736
844
|
set Schema(value: string | undefined);
|
|
@@ -738,8 +846,8 @@ export interface DropCheckConstraintOperation$instance extends MigrationOperatio
|
|
|
738
846
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
739
847
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
740
848
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
741
|
-
AddAnnotations(annotations:
|
|
742
|
-
AddAnnotations(annotations:
|
|
849
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
850
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
743
851
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
744
852
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
745
853
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -749,9 +857,9 @@ export interface DropCheckConstraintOperation$instance extends MigrationOperatio
|
|
|
749
857
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
750
858
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
751
859
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
752
|
-
GetAnnotations():
|
|
753
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
754
|
-
GetRuntimeAnnotations():
|
|
860
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
861
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
862
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
755
863
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
756
864
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
757
865
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -775,6 +883,13 @@ export type DropCheckConstraintOperation = DropCheckConstraintOperation$instance
|
|
|
775
883
|
|
|
776
884
|
|
|
777
885
|
export interface DropColumnOperation$instance extends MigrationOperation$instance {
|
|
886
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropColumnOperation: never;
|
|
887
|
+
|
|
888
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
889
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
890
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
891
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
892
|
+
|
|
778
893
|
Name: string;
|
|
779
894
|
get Schema(): string | undefined;
|
|
780
895
|
set Schema(value: string | undefined);
|
|
@@ -782,8 +897,8 @@ export interface DropColumnOperation$instance extends MigrationOperation$instanc
|
|
|
782
897
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
783
898
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
784
899
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
785
|
-
AddAnnotations(annotations:
|
|
786
|
-
AddAnnotations(annotations:
|
|
900
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
901
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
787
902
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
788
903
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
789
904
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -793,9 +908,9 @@ export interface DropColumnOperation$instance extends MigrationOperation$instanc
|
|
|
793
908
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
794
909
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
795
910
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
796
|
-
GetAnnotations():
|
|
797
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
798
|
-
GetRuntimeAnnotations():
|
|
911
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
912
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
913
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
799
914
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
800
915
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
801
916
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -819,6 +934,13 @@ export type DropColumnOperation = DropColumnOperation$instance & __DropColumnOpe
|
|
|
819
934
|
|
|
820
935
|
|
|
821
936
|
export interface DropForeignKeyOperation$instance extends MigrationOperation$instance {
|
|
937
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropForeignKeyOperation: never;
|
|
938
|
+
|
|
939
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
940
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
941
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
942
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
943
|
+
|
|
822
944
|
Name: string;
|
|
823
945
|
get Schema(): string | undefined;
|
|
824
946
|
set Schema(value: string | undefined);
|
|
@@ -826,8 +948,8 @@ export interface DropForeignKeyOperation$instance extends MigrationOperation$ins
|
|
|
826
948
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
827
949
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
828
950
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
829
|
-
AddAnnotations(annotations:
|
|
830
|
-
AddAnnotations(annotations:
|
|
951
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
952
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
831
953
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
832
954
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
833
955
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -837,9 +959,9 @@ export interface DropForeignKeyOperation$instance extends MigrationOperation$ins
|
|
|
837
959
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
838
960
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
839
961
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
840
|
-
GetAnnotations():
|
|
841
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
842
|
-
GetRuntimeAnnotations():
|
|
962
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
963
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
964
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
843
965
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
844
966
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
845
967
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -863,6 +985,12 @@ export type DropForeignKeyOperation = DropForeignKeyOperation$instance & __DropF
|
|
|
863
985
|
|
|
864
986
|
|
|
865
987
|
export interface DropIndexOperation$instance extends MigrationOperation$instance {
|
|
988
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropIndexOperation: never;
|
|
989
|
+
|
|
990
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
991
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
992
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
993
|
+
|
|
866
994
|
Name: string;
|
|
867
995
|
get Schema(): string | undefined;
|
|
868
996
|
set Schema(value: string | undefined);
|
|
@@ -871,8 +999,8 @@ export interface DropIndexOperation$instance extends MigrationOperation$instance
|
|
|
871
999
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
872
1000
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
873
1001
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
874
|
-
AddAnnotations(annotations:
|
|
875
|
-
AddAnnotations(annotations:
|
|
1002
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1003
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
876
1004
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
877
1005
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
878
1006
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -882,9 +1010,9 @@ export interface DropIndexOperation$instance extends MigrationOperation$instance
|
|
|
882
1010
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
883
1011
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
884
1012
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
885
|
-
GetAnnotations():
|
|
886
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
887
|
-
GetRuntimeAnnotations():
|
|
1013
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1014
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1015
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
888
1016
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
889
1017
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
890
1018
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -907,6 +1035,13 @@ export type DropIndexOperation = DropIndexOperation$instance & __DropIndexOperat
|
|
|
907
1035
|
|
|
908
1036
|
|
|
909
1037
|
export interface DropPrimaryKeyOperation$instance extends MigrationOperation$instance {
|
|
1038
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropPrimaryKeyOperation: never;
|
|
1039
|
+
|
|
1040
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1041
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1042
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1043
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1044
|
+
|
|
910
1045
|
Name: string;
|
|
911
1046
|
get Schema(): string | undefined;
|
|
912
1047
|
set Schema(value: string | undefined);
|
|
@@ -914,8 +1049,8 @@ export interface DropPrimaryKeyOperation$instance extends MigrationOperation$ins
|
|
|
914
1049
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
915
1050
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
916
1051
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
917
|
-
AddAnnotations(annotations:
|
|
918
|
-
AddAnnotations(annotations:
|
|
1052
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1053
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
919
1054
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
920
1055
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
921
1056
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -925,9 +1060,9 @@ export interface DropPrimaryKeyOperation$instance extends MigrationOperation$ins
|
|
|
925
1060
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
926
1061
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
927
1062
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
928
|
-
GetAnnotations():
|
|
929
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
930
|
-
GetRuntimeAnnotations():
|
|
1063
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1064
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1065
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
931
1066
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
932
1067
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
933
1068
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -951,12 +1086,18 @@ export type DropPrimaryKeyOperation = DropPrimaryKeyOperation$instance & __DropP
|
|
|
951
1086
|
|
|
952
1087
|
|
|
953
1088
|
export interface DropSchemaOperation$instance extends MigrationOperation$instance {
|
|
1089
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropSchemaOperation: never;
|
|
1090
|
+
|
|
1091
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1092
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1093
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1094
|
+
|
|
954
1095
|
Name: string;
|
|
955
1096
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
956
1097
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
957
1098
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
958
|
-
AddAnnotations(annotations:
|
|
959
|
-
AddAnnotations(annotations:
|
|
1099
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1100
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
960
1101
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
961
1102
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
962
1103
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -966,9 +1107,9 @@ export interface DropSchemaOperation$instance extends MigrationOperation$instanc
|
|
|
966
1107
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
967
1108
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
968
1109
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
969
|
-
GetAnnotations():
|
|
970
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
971
|
-
GetRuntimeAnnotations():
|
|
1110
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1111
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1112
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
972
1113
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
973
1114
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
974
1115
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -991,14 +1132,20 @@ export type DropSchemaOperation = DropSchemaOperation$instance & __DropSchemaOpe
|
|
|
991
1132
|
|
|
992
1133
|
|
|
993
1134
|
export interface DropSequenceOperation$instance extends MigrationOperation$instance {
|
|
1135
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropSequenceOperation: never;
|
|
1136
|
+
|
|
1137
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1138
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1139
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1140
|
+
|
|
994
1141
|
Name: string;
|
|
995
1142
|
get Schema(): string | undefined;
|
|
996
1143
|
set Schema(value: string | undefined);
|
|
997
1144
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
998
1145
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
999
1146
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1000
|
-
AddAnnotations(annotations:
|
|
1001
|
-
AddAnnotations(annotations:
|
|
1147
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1148
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1002
1149
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1003
1150
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1004
1151
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1008,9 +1155,9 @@ export interface DropSequenceOperation$instance extends MigrationOperation$insta
|
|
|
1008
1155
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1009
1156
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1010
1157
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1011
|
-
GetAnnotations():
|
|
1012
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1013
|
-
GetRuntimeAnnotations():
|
|
1158
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1159
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1160
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1014
1161
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1015
1162
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1016
1163
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1033,14 +1180,21 @@ export type DropSequenceOperation = DropSequenceOperation$instance & __DropSeque
|
|
|
1033
1180
|
|
|
1034
1181
|
|
|
1035
1182
|
export interface DropTableOperation$instance extends MigrationOperation$instance {
|
|
1183
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropTableOperation: never;
|
|
1184
|
+
|
|
1185
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1186
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1187
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1188
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1189
|
+
|
|
1036
1190
|
Name: string;
|
|
1037
1191
|
get Schema(): string | undefined;
|
|
1038
1192
|
set Schema(value: string | undefined);
|
|
1039
1193
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1040
1194
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1041
1195
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1042
|
-
AddAnnotations(annotations:
|
|
1043
|
-
AddAnnotations(annotations:
|
|
1196
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1197
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1044
1198
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1045
1199
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1046
1200
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1050,9 +1204,9 @@ export interface DropTableOperation$instance extends MigrationOperation$instance
|
|
|
1050
1204
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1051
1205
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1052
1206
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1053
|
-
GetAnnotations():
|
|
1054
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1055
|
-
GetRuntimeAnnotations():
|
|
1207
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1208
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1209
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1056
1210
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1057
1211
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1058
1212
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1076,6 +1230,13 @@ export type DropTableOperation = DropTableOperation$instance & __DropTableOperat
|
|
|
1076
1230
|
|
|
1077
1231
|
|
|
1078
1232
|
export interface DropUniqueConstraintOperation$instance extends MigrationOperation$instance {
|
|
1233
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_DropUniqueConstraintOperation: never;
|
|
1234
|
+
|
|
1235
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1236
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1237
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1238
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1239
|
+
|
|
1079
1240
|
Name: string;
|
|
1080
1241
|
get Schema(): string | undefined;
|
|
1081
1242
|
set Schema(value: string | undefined);
|
|
@@ -1083,8 +1244,8 @@ export interface DropUniqueConstraintOperation$instance extends MigrationOperati
|
|
|
1083
1244
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1084
1245
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1085
1246
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1086
|
-
AddAnnotations(annotations:
|
|
1087
|
-
AddAnnotations(annotations:
|
|
1247
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1248
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1088
1249
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1089
1250
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1090
1251
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1094,9 +1255,9 @@ export interface DropUniqueConstraintOperation$instance extends MigrationOperati
|
|
|
1094
1255
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1095
1256
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1096
1257
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1097
|
-
GetAnnotations():
|
|
1098
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1099
|
-
GetRuntimeAnnotations():
|
|
1258
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1259
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1260
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1100
1261
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1101
1262
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1102
1263
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1120,12 +1281,18 @@ export type DropUniqueConstraintOperation = DropUniqueConstraintOperation$instan
|
|
|
1120
1281
|
|
|
1121
1282
|
|
|
1122
1283
|
export interface EnsureSchemaOperation$instance extends MigrationOperation$instance {
|
|
1284
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_EnsureSchemaOperation: never;
|
|
1285
|
+
|
|
1286
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1287
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1288
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1289
|
+
|
|
1123
1290
|
Name: string;
|
|
1124
1291
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1125
1292
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1126
1293
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1127
|
-
AddAnnotations(annotations:
|
|
1128
|
-
AddAnnotations(annotations:
|
|
1294
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1295
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1129
1296
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1130
1297
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1131
1298
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1135,9 +1302,9 @@ export interface EnsureSchemaOperation$instance extends MigrationOperation$insta
|
|
|
1135
1302
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1136
1303
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1137
1304
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1138
|
-
GetAnnotations():
|
|
1139
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1140
|
-
GetRuntimeAnnotations():
|
|
1305
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1306
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1307
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1141
1308
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1142
1309
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1143
1310
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1160,6 +1327,13 @@ export type EnsureSchemaOperation = EnsureSchemaOperation$instance & __EnsureSch
|
|
|
1160
1327
|
|
|
1161
1328
|
|
|
1162
1329
|
export interface InsertDataOperation$instance extends MigrationOperation$instance {
|
|
1330
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_InsertDataOperation: never;
|
|
1331
|
+
|
|
1332
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1333
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1334
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1335
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1336
|
+
|
|
1163
1337
|
Columns: string[];
|
|
1164
1338
|
get ColumnTypes(): string[] | undefined;
|
|
1165
1339
|
set ColumnTypes(value: string[] | undefined);
|
|
@@ -1170,8 +1344,8 @@ export interface InsertDataOperation$instance extends MigrationOperation$instanc
|
|
|
1170
1344
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1171
1345
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1172
1346
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1173
|
-
AddAnnotations(annotations:
|
|
1174
|
-
AddAnnotations(annotations:
|
|
1347
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1348
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1175
1349
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1176
1350
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1177
1351
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1181,9 +1355,9 @@ export interface InsertDataOperation$instance extends MigrationOperation$instanc
|
|
|
1181
1355
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1182
1356
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1183
1357
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1184
|
-
GetAnnotations():
|
|
1185
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1186
|
-
GetRuntimeAnnotations():
|
|
1358
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1359
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1360
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1187
1361
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1188
1362
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1189
1363
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1207,12 +1381,18 @@ export type InsertDataOperation = InsertDataOperation$instance & __InsertDataOpe
|
|
|
1207
1381
|
|
|
1208
1382
|
|
|
1209
1383
|
export interface MigrationOperation$instance extends Annotatable {
|
|
1384
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_MigrationOperation: never;
|
|
1385
|
+
|
|
1386
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1387
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1388
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1389
|
+
|
|
1210
1390
|
IsDestructiveChange: boolean;
|
|
1211
1391
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1212
1392
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1213
1393
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1214
|
-
AddAnnotations(annotations:
|
|
1215
|
-
AddAnnotations(annotations:
|
|
1394
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1395
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1216
1396
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1217
1397
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1218
1398
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1222,9 +1402,9 @@ export interface MigrationOperation$instance extends Annotatable {
|
|
|
1222
1402
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1223
1403
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1224
1404
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1225
|
-
GetAnnotations():
|
|
1226
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1227
|
-
GetRuntimeAnnotations():
|
|
1405
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1406
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1407
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1228
1408
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1229
1409
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1230
1410
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1246,6 +1426,13 @@ export type MigrationOperation = MigrationOperation$instance & __MigrationOperat
|
|
|
1246
1426
|
|
|
1247
1427
|
|
|
1248
1428
|
export interface RenameColumnOperation$instance extends MigrationOperation$instance {
|
|
1429
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameColumnOperation: never;
|
|
1430
|
+
|
|
1431
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1432
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1433
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1434
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1435
|
+
|
|
1249
1436
|
Name: string;
|
|
1250
1437
|
NewName: string;
|
|
1251
1438
|
get Schema(): string | undefined;
|
|
@@ -1254,8 +1441,8 @@ export interface RenameColumnOperation$instance extends MigrationOperation$insta
|
|
|
1254
1441
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1255
1442
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1256
1443
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1257
|
-
AddAnnotations(annotations:
|
|
1258
|
-
AddAnnotations(annotations:
|
|
1444
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1445
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1259
1446
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1260
1447
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1261
1448
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1265,9 +1452,9 @@ export interface RenameColumnOperation$instance extends MigrationOperation$insta
|
|
|
1265
1452
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1266
1453
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1267
1454
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1268
|
-
GetAnnotations():
|
|
1269
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1270
|
-
GetRuntimeAnnotations():
|
|
1455
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1456
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1457
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1271
1458
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1272
1459
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1273
1460
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1291,6 +1478,12 @@ export type RenameColumnOperation = RenameColumnOperation$instance & __RenameCol
|
|
|
1291
1478
|
|
|
1292
1479
|
|
|
1293
1480
|
export interface RenameIndexOperation$instance extends MigrationOperation$instance {
|
|
1481
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameIndexOperation: never;
|
|
1482
|
+
|
|
1483
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1484
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1485
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1486
|
+
|
|
1294
1487
|
Name: string;
|
|
1295
1488
|
NewName: string;
|
|
1296
1489
|
get Schema(): string | undefined;
|
|
@@ -1300,8 +1493,8 @@ export interface RenameIndexOperation$instance extends MigrationOperation$instan
|
|
|
1300
1493
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1301
1494
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1302
1495
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1303
|
-
AddAnnotations(annotations:
|
|
1304
|
-
AddAnnotations(annotations:
|
|
1496
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1497
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1305
1498
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1306
1499
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1307
1500
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1311,9 +1504,9 @@ export interface RenameIndexOperation$instance extends MigrationOperation$instan
|
|
|
1311
1504
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1312
1505
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1313
1506
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1314
|
-
GetAnnotations():
|
|
1315
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1316
|
-
GetRuntimeAnnotations():
|
|
1507
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1508
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1509
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1317
1510
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1318
1511
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1319
1512
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1336,6 +1529,12 @@ export type RenameIndexOperation = RenameIndexOperation$instance & __RenameIndex
|
|
|
1336
1529
|
|
|
1337
1530
|
|
|
1338
1531
|
export interface RenameSequenceOperation$instance extends MigrationOperation$instance {
|
|
1532
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameSequenceOperation: never;
|
|
1533
|
+
|
|
1534
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1535
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1536
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1537
|
+
|
|
1339
1538
|
Name: string;
|
|
1340
1539
|
get NewName(): string | undefined;
|
|
1341
1540
|
set NewName(value: string | undefined);
|
|
@@ -1346,8 +1545,8 @@ export interface RenameSequenceOperation$instance extends MigrationOperation$ins
|
|
|
1346
1545
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1347
1546
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1348
1547
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1349
|
-
AddAnnotations(annotations:
|
|
1350
|
-
AddAnnotations(annotations:
|
|
1548
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1549
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1351
1550
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1352
1551
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1353
1552
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1357,9 +1556,9 @@ export interface RenameSequenceOperation$instance extends MigrationOperation$ins
|
|
|
1357
1556
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1358
1557
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1359
1558
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1360
|
-
GetAnnotations():
|
|
1361
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1362
|
-
GetRuntimeAnnotations():
|
|
1559
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1560
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1561
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1363
1562
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1364
1563
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1365
1564
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1382,6 +1581,13 @@ export type RenameSequenceOperation = RenameSequenceOperation$instance & __Renam
|
|
|
1382
1581
|
|
|
1383
1582
|
|
|
1384
1583
|
export interface RenameTableOperation$instance extends MigrationOperation$instance {
|
|
1584
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RenameTableOperation: never;
|
|
1585
|
+
|
|
1586
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1587
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1588
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1589
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1590
|
+
|
|
1385
1591
|
Name: string;
|
|
1386
1592
|
get NewName(): string | undefined;
|
|
1387
1593
|
set NewName(value: string | undefined);
|
|
@@ -1392,8 +1598,8 @@ export interface RenameTableOperation$instance extends MigrationOperation$instan
|
|
|
1392
1598
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1393
1599
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1394
1600
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1395
|
-
AddAnnotations(annotations:
|
|
1396
|
-
AddAnnotations(annotations:
|
|
1601
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1602
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1397
1603
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1398
1604
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1399
1605
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1403,9 +1609,9 @@ export interface RenameTableOperation$instance extends MigrationOperation$instan
|
|
|
1403
1609
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1404
1610
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1405
1611
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1406
|
-
GetAnnotations():
|
|
1407
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1408
|
-
GetRuntimeAnnotations():
|
|
1612
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1613
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1614
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1409
1615
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1410
1616
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1411
1617
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1429,15 +1635,21 @@ export type RenameTableOperation = RenameTableOperation$instance & __RenameTable
|
|
|
1429
1635
|
|
|
1430
1636
|
|
|
1431
1637
|
export interface RestartSequenceOperation$instance extends MigrationOperation$instance {
|
|
1638
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_RestartSequenceOperation: never;
|
|
1639
|
+
|
|
1640
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1641
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1642
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1643
|
+
|
|
1432
1644
|
Name: string;
|
|
1433
1645
|
get Schema(): string | undefined;
|
|
1434
1646
|
set Schema(value: string | undefined);
|
|
1435
|
-
StartValue:
|
|
1647
|
+
StartValue: Nullable_1<System_Internal.Int64>;
|
|
1436
1648
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1437
1649
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1438
1650
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1439
|
-
AddAnnotations(annotations:
|
|
1440
|
-
AddAnnotations(annotations:
|
|
1651
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1652
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1441
1653
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1442
1654
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1443
1655
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1447,9 +1659,9 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
|
|
|
1447
1659
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1448
1660
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1449
1661
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1450
|
-
GetAnnotations():
|
|
1451
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1452
|
-
GetRuntimeAnnotations():
|
|
1662
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1663
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1664
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1453
1665
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1454
1666
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1455
1667
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1472,15 +1684,21 @@ export type RestartSequenceOperation = RestartSequenceOperation$instance & __Res
|
|
|
1472
1684
|
|
|
1473
1685
|
|
|
1474
1686
|
export interface SequenceOperation$instance extends MigrationOperation$instance {
|
|
1687
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_SequenceOperation: never;
|
|
1688
|
+
|
|
1689
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1690
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1691
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1692
|
+
|
|
1475
1693
|
IncrementBy: int;
|
|
1476
1694
|
IsCyclic: boolean;
|
|
1477
|
-
MaxValue:
|
|
1478
|
-
MinValue:
|
|
1695
|
+
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
1696
|
+
MinValue: Nullable_1<System_Internal.Int64>;
|
|
1479
1697
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1480
1698
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1481
1699
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1482
|
-
AddAnnotations(annotations:
|
|
1483
|
-
AddAnnotations(annotations:
|
|
1700
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1701
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1484
1702
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1485
1703
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1486
1704
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1490,9 +1708,9 @@ export interface SequenceOperation$instance extends MigrationOperation$instance
|
|
|
1490
1708
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1491
1709
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1492
1710
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1493
|
-
GetAnnotations():
|
|
1494
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1495
|
-
GetRuntimeAnnotations():
|
|
1711
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1712
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1713
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1496
1714
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1497
1715
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1498
1716
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1514,13 +1732,19 @@ export type SequenceOperation = SequenceOperation$instance & __SequenceOperation
|
|
|
1514
1732
|
|
|
1515
1733
|
|
|
1516
1734
|
export interface SqlOperation$instance extends MigrationOperation$instance {
|
|
1735
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_SqlOperation: never;
|
|
1736
|
+
|
|
1737
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1738
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1739
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1740
|
+
|
|
1517
1741
|
Sql: string;
|
|
1518
1742
|
SuppressTransaction: boolean;
|
|
1519
1743
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1520
1744
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1521
1745
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1522
|
-
AddAnnotations(annotations:
|
|
1523
|
-
AddAnnotations(annotations:
|
|
1746
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1747
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1524
1748
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1525
1749
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1526
1750
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1530,9 +1754,9 @@ export interface SqlOperation$instance extends MigrationOperation$instance {
|
|
|
1530
1754
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1531
1755
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1532
1756
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1533
|
-
GetAnnotations():
|
|
1534
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1535
|
-
GetRuntimeAnnotations():
|
|
1757
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1758
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1759
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1536
1760
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1537
1761
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1538
1762
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1555,6 +1779,13 @@ export type SqlOperation = SqlOperation$instance & __SqlOperation$views;
|
|
|
1555
1779
|
|
|
1556
1780
|
|
|
1557
1781
|
export interface TableOperation$instance extends MigrationOperation$instance {
|
|
1782
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_TableOperation: never;
|
|
1783
|
+
|
|
1784
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1785
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1786
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1787
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1788
|
+
|
|
1558
1789
|
get Comment(): string | undefined;
|
|
1559
1790
|
set Comment(value: string | undefined);
|
|
1560
1791
|
Name: string;
|
|
@@ -1563,8 +1794,8 @@ export interface TableOperation$instance extends MigrationOperation$instance {
|
|
|
1563
1794
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1564
1795
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1565
1796
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1566
|
-
AddAnnotations(annotations:
|
|
1567
|
-
AddAnnotations(annotations:
|
|
1797
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1798
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1568
1799
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1569
1800
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1570
1801
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1574,9 +1805,9 @@ export interface TableOperation$instance extends MigrationOperation$instance {
|
|
|
1574
1805
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1575
1806
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1576
1807
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1577
|
-
GetAnnotations():
|
|
1578
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1579
|
-
GetRuntimeAnnotations():
|
|
1808
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1809
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1810
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1580
1811
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1581
1812
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1582
1813
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1599,6 +1830,13 @@ export type TableOperation = TableOperation$instance & __TableOperation$views;
|
|
|
1599
1830
|
|
|
1600
1831
|
|
|
1601
1832
|
export interface UpdateDataOperation$instance extends MigrationOperation$instance {
|
|
1833
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Migrations_Operations_UpdateDataOperation: never;
|
|
1834
|
+
|
|
1835
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1836
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1837
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
1838
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Migrations_Operations_ITableMigrationOperation: never;
|
|
1839
|
+
|
|
1602
1840
|
Columns: string[];
|
|
1603
1841
|
get ColumnTypes(): string[] | undefined;
|
|
1604
1842
|
set ColumnTypes(value: string[] | undefined);
|
|
@@ -1613,8 +1851,8 @@ export interface UpdateDataOperation$instance extends MigrationOperation$instanc
|
|
|
1613
1851
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1614
1852
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1615
1853
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1616
|
-
AddAnnotations(annotations:
|
|
1617
|
-
AddAnnotations(annotations:
|
|
1854
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1855
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1618
1856
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1619
1857
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1620
1858
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -1624,9 +1862,9 @@ export interface UpdateDataOperation$instance extends MigrationOperation$instanc
|
|
|
1624
1862
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1625
1863
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1626
1864
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1627
|
-
GetAnnotations():
|
|
1628
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1629
|
-
GetRuntimeAnnotations():
|
|
1865
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1866
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1867
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
1630
1868
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1631
1869
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1632
1870
|
SetAnnotation(name: string, value: unknown): void;
|