@tsonic/efcore 10.0.11 → 10.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/bindings.json +0 -500
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +22 -5
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +0 -480
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +16 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +981 -2411
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -70
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +0 -2
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +2 -22
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/bindings.json +0 -528
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +14 -18
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +900 -1800
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -46
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +0 -260
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -13
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +9011 -16771
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1 -376
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +7901 -14241
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +361 -47
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +350 -2250
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +51 -91
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +44938 -86844
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +17 -2067
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +1 -757
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +3 -183
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +3 -4
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +0 -160
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +2 -3
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +14 -794
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +26 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/bindings.json +1610 -5810
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +1 -211
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +129 -309
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +12 -52
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -3
- package/Microsoft.EntityFrameworkCore.Storage.Json/bindings.json +26 -1406
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Update/bindings.json +0 -86
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +0 -4
- package/Microsoft.EntityFrameworkCore.Update.Internal/bindings.json +0 -512
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +0 -18
- package/Microsoft.EntityFrameworkCore.ValueGeneration/bindings.json +6 -272
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +10 -13
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/bindings.json +0 -660
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +32 -33
- package/README.md +119 -2
- package/package.json +4 -4
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
9
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
10
10
|
import * as Microsoft_EntityFrameworkCore_Infrastructure_Internal from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
11
11
|
import type { Annotatable, Annotation, IAnnotatable, IAnnotation, IReadOnlyAnnotatable } from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
12
12
|
import * as Microsoft_EntityFrameworkCore_Metadata_Internal from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
@@ -39,27 +39,6 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
39
39
|
set StoreType(value: string | undefined);
|
|
40
40
|
Table: DatabaseTable;
|
|
41
41
|
ValueGenerated: Nullable_1<ValueGenerated>;
|
|
42
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
43
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
44
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
45
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
46
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
47
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
48
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
49
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
50
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
51
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
52
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
53
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
54
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
55
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
56
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
57
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
58
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
59
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
60
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
61
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
62
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
63
42
|
ToString(): string;
|
|
64
43
|
}
|
|
65
44
|
|
|
@@ -92,27 +71,6 @@ export interface DatabaseForeignKey$instance extends Annotatable {
|
|
|
92
71
|
readonly PrincipalColumns: IList_1<DatabaseColumn>;
|
|
93
72
|
PrincipalTable: DatabaseTable;
|
|
94
73
|
Table: DatabaseTable;
|
|
95
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
96
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
97
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
98
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
99
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
100
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
101
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
102
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
103
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
104
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
105
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
106
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
107
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
108
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
109
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
110
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
111
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
112
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
113
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
114
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
115
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
116
74
|
ToString(): string;
|
|
117
75
|
}
|
|
118
76
|
|
|
@@ -147,27 +105,6 @@ export interface DatabaseIndex$instance extends Annotatable {
|
|
|
147
105
|
set Name(value: string | undefined);
|
|
148
106
|
get Table(): DatabaseTable | undefined;
|
|
149
107
|
set Table(value: DatabaseTable | undefined);
|
|
150
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
151
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
152
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
153
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
154
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
155
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
156
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
157
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
158
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
159
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
160
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
161
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
162
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
163
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
164
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
165
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
166
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
167
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
168
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
169
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
170
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
171
108
|
ToString(): string;
|
|
172
109
|
}
|
|
173
110
|
|
|
@@ -201,27 +138,6 @@ export interface DatabaseModel$instance extends Annotatable {
|
|
|
201
138
|
set DefaultSchema(value: string | undefined);
|
|
202
139
|
readonly Sequences: IList_1<DatabaseSequence>;
|
|
203
140
|
readonly Tables: IList_1<DatabaseTable>;
|
|
204
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
205
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
206
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
207
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
208
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
209
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
210
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
211
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
212
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
213
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
214
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
215
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
216
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
217
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
218
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
219
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
220
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
221
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
222
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
223
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
224
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
225
141
|
}
|
|
226
142
|
|
|
227
143
|
|
|
@@ -251,27 +167,6 @@ export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
|
251
167
|
set Name(value: string | undefined);
|
|
252
168
|
get Table(): DatabaseTable | undefined;
|
|
253
169
|
set Table(value: DatabaseTable | undefined);
|
|
254
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
255
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
256
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
257
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
258
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
259
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
260
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
261
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
262
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
263
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
264
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
265
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
266
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
267
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
268
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
269
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
270
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
271
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
272
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
273
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
274
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
275
170
|
ToString(): string;
|
|
276
171
|
}
|
|
277
172
|
|
|
@@ -308,27 +203,6 @@ export interface DatabaseSequence$instance extends Annotatable {
|
|
|
308
203
|
StartValue: Nullable_1<System_Internal.Int64>;
|
|
309
204
|
get StoreType(): string | undefined;
|
|
310
205
|
set StoreType(value: string | undefined);
|
|
311
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
312
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
313
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
314
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
315
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
316
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
317
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
318
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
319
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
320
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
321
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
322
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
323
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
324
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
325
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
326
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
327
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
328
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
329
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
330
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
331
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
332
206
|
ToString(): string;
|
|
333
207
|
}
|
|
334
208
|
|
|
@@ -368,27 +242,6 @@ export interface DatabaseTable$instance extends Annotatable {
|
|
|
368
242
|
set Schema(value: string | undefined);
|
|
369
243
|
readonly Triggers: IList_1<DatabaseTrigger>;
|
|
370
244
|
readonly UniqueConstraints: IList_1<DatabaseUniqueConstraint>;
|
|
371
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
372
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
373
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
374
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
375
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
376
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
377
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
378
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
379
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
380
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
381
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
382
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
383
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
384
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
385
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
386
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
387
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
388
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
389
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
390
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
391
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
392
245
|
ToString(): string;
|
|
393
246
|
}
|
|
394
247
|
|
|
@@ -415,27 +268,6 @@ export interface DatabaseTrigger$instance extends Annotatable {
|
|
|
415
268
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
416
269
|
|
|
417
270
|
Name: string;
|
|
418
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
419
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
420
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
421
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
422
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
423
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
424
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
425
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
426
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
427
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
428
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
429
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
430
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
431
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
432
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
433
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
434
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
435
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
436
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
437
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
438
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
439
271
|
}
|
|
440
272
|
|
|
441
273
|
|
|
@@ -464,27 +296,6 @@ export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
|
464
296
|
get Name(): string | undefined;
|
|
465
297
|
set Name(value: string | undefined);
|
|
466
298
|
Table: DatabaseTable;
|
|
467
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
468
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
469
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
470
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
471
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
472
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
473
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
474
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
475
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
476
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
477
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
478
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
479
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
480
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
481
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
482
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
483
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
484
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
485
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
486
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
487
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
488
299
|
ToString(): string;
|
|
489
300
|
}
|
|
490
301
|
|
|
@@ -510,27 +321,6 @@ export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
|
510
321
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
511
322
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
512
323
|
|
|
513
|
-
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
514
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
515
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
516
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
517
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
518
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
519
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
520
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
521
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
522
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
523
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
524
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
525
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
526
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
527
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
528
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
529
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
530
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
531
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
532
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
533
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
534
324
|
}
|
|
535
325
|
|
|
536
326
|
|