@tsonic/efcore 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -70,6 +70,8 @@ export enum ValueGenerated {
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
export interface IAdHocMapper$instance {
|
|
73
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
|
|
74
|
+
|
|
73
75
|
GetOrAddEntityType(clrType: Type): RuntimeEntityType;
|
|
74
76
|
}
|
|
75
77
|
|
|
@@ -77,11 +79,13 @@ export interface IAdHocMapper$instance {
|
|
|
77
79
|
export type IAdHocMapper = IAdHocMapper$instance;
|
|
78
80
|
|
|
79
81
|
export interface ICheckConstraint$instance extends IReadOnlyCheckConstraint, IReadOnlyAnnotatable, IAnnotatable {
|
|
82
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ICheckConstraint: never;
|
|
83
|
+
|
|
80
84
|
readonly EntityType: IEntityType;
|
|
81
85
|
readonly ModelName: string;
|
|
82
|
-
readonly Name: string;
|
|
86
|
+
readonly Name: string | undefined;
|
|
83
87
|
readonly Sql: string;
|
|
84
|
-
readonly
|
|
88
|
+
readonly [name: string]: unknown | undefined;
|
|
85
89
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
86
90
|
AnnotationsToDebugString(indent?: int): string;
|
|
87
91
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -99,6 +103,8 @@ export interface ICheckConstraint$instance extends IReadOnlyCheckConstraint, IRe
|
|
|
99
103
|
export type ICheckConstraint = ICheckConstraint$instance;
|
|
100
104
|
|
|
101
105
|
export interface IClrCollectionAccessor$instance {
|
|
106
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IClrCollectionAccessor: never;
|
|
107
|
+
|
|
102
108
|
readonly CollectionType: Type;
|
|
103
109
|
Add(entity: unknown, value: unknown, forMaterialization: boolean): boolean;
|
|
104
110
|
Contains(entity: unknown, value: unknown): boolean;
|
|
@@ -110,6 +116,8 @@ export interface IClrCollectionAccessor$instance {
|
|
|
110
116
|
export type IClrCollectionAccessor = IClrCollectionAccessor$instance;
|
|
111
117
|
|
|
112
118
|
export interface IClrIndexedCollectionAccessor$instance {
|
|
119
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IClrIndexedCollectionAccessor: never;
|
|
120
|
+
|
|
113
121
|
Create(capacity: int): unknown;
|
|
114
122
|
Get(entity: unknown, index: int): unknown | undefined;
|
|
115
123
|
Set(entity: unknown, index: int, value: unknown, forMaterialization: boolean): void;
|
|
@@ -119,6 +127,8 @@ export interface IClrIndexedCollectionAccessor$instance {
|
|
|
119
127
|
export type IClrIndexedCollectionAccessor = IClrIndexedCollectionAccessor$instance;
|
|
120
128
|
|
|
121
129
|
export interface IClrPropertyGetter$instance {
|
|
130
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IClrPropertyGetter: never;
|
|
131
|
+
|
|
122
132
|
GetClrValueUsingContainingEntity(entity: unknown, indices: IReadOnlyList<System_Internal.Int32>): unknown | undefined;
|
|
123
133
|
GetClrValueUsingContainingEntity(entity: unknown): unknown | undefined;
|
|
124
134
|
HasSentinelValueUsingContainingEntity(entity: unknown, indices: IReadOnlyList<System_Internal.Int32>): boolean;
|
|
@@ -129,6 +139,8 @@ export interface IClrPropertyGetter$instance {
|
|
|
129
139
|
export type IClrPropertyGetter = IClrPropertyGetter$instance;
|
|
130
140
|
|
|
131
141
|
export interface IClrPropertySetter$instance {
|
|
142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IClrPropertySetter: never;
|
|
143
|
+
|
|
132
144
|
SetClrValue(instance: unknown, value: unknown): unknown;
|
|
133
145
|
SetClrValueUsingContainingEntity(instance: unknown, indices: IReadOnlyList<System_Internal.Int32>, value: unknown): void;
|
|
134
146
|
SetClrValueUsingContainingEntity(instance: unknown, value: unknown): void;
|
|
@@ -138,6 +150,8 @@ export interface IClrPropertySetter$instance {
|
|
|
138
150
|
export type IClrPropertySetter = IClrPropertySetter$instance;
|
|
139
151
|
|
|
140
152
|
export interface IColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
153
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumn: never;
|
|
154
|
+
|
|
141
155
|
readonly Table: ITable;
|
|
142
156
|
readonly PropertyMappings: IReadOnlyList<IColumnMapping>;
|
|
143
157
|
readonly MaxLength: Nullable<System_Internal.Int32>;
|
|
@@ -159,7 +173,7 @@ export interface IColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAn
|
|
|
159
173
|
readonly StoreTypeMapping: RelationalTypeMapping;
|
|
160
174
|
readonly IsNullable: boolean;
|
|
161
175
|
readonly ProviderValueComparer: ValueComparer;
|
|
162
|
-
readonly
|
|
176
|
+
readonly [name: string]: unknown | undefined;
|
|
163
177
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
164
178
|
AnnotationsToDebugString(indent?: int): string;
|
|
165
179
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMapping | undefined;
|
|
@@ -178,6 +192,8 @@ export interface IColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAn
|
|
|
178
192
|
export type IColumn = IColumn$instance;
|
|
179
193
|
|
|
180
194
|
export interface IColumnBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
195
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnBase: never;
|
|
196
|
+
|
|
181
197
|
readonly Name: string;
|
|
182
198
|
readonly StoreType: string;
|
|
183
199
|
readonly ProviderClrType: Type;
|
|
@@ -186,7 +202,7 @@ export interface IColumnBase$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
186
202
|
readonly Table: ITableBase;
|
|
187
203
|
readonly PropertyMappings: IReadOnlyList<IColumnMappingBase>;
|
|
188
204
|
readonly ProviderValueComparer: ValueComparer;
|
|
189
|
-
readonly
|
|
205
|
+
readonly [name: string]: unknown | undefined;
|
|
190
206
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
191
207
|
AnnotationsToDebugString(indent?: int): string;
|
|
192
208
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -203,11 +219,13 @@ export interface IColumnBase$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
203
219
|
export type IColumnBase = IColumnBase$instance;
|
|
204
220
|
|
|
205
221
|
export interface IColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnMapping: never;
|
|
223
|
+
|
|
206
224
|
readonly Column: IColumn;
|
|
207
225
|
readonly TableMapping: ITableMapping;
|
|
208
226
|
readonly Property: IProperty;
|
|
209
227
|
readonly TypeMapping: RelationalTypeMapping;
|
|
210
|
-
readonly
|
|
228
|
+
readonly [name: string]: unknown | undefined;
|
|
211
229
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
212
230
|
AnnotationsToDebugString(indent?: int): string;
|
|
213
231
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -223,11 +241,13 @@ export interface IColumnMapping$instance extends IColumnMappingBase, IAnnotatabl
|
|
|
223
241
|
export type IColumnMapping = IColumnMapping$instance;
|
|
224
242
|
|
|
225
243
|
export interface IColumnMappingBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
244
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnMappingBase: never;
|
|
245
|
+
|
|
226
246
|
readonly Property: IProperty;
|
|
227
247
|
readonly Column: IColumnBase;
|
|
228
248
|
readonly TypeMapping: RelationalTypeMapping;
|
|
229
249
|
readonly TableMapping: ITableMappingBase;
|
|
230
|
-
readonly
|
|
250
|
+
readonly [name: string]: unknown | undefined;
|
|
231
251
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
232
252
|
AnnotationsToDebugString(indent?: int): string;
|
|
233
253
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -242,6 +262,8 @@ export interface IColumnMappingBase$instance extends IAnnotatable, IReadOnlyAnno
|
|
|
242
262
|
export type IColumnMappingBase = IColumnMappingBase$instance;
|
|
243
263
|
|
|
244
264
|
export interface IComplexProperty$instance extends IReadOnlyComplexProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
265
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IComplexProperty: never;
|
|
266
|
+
|
|
245
267
|
readonly ComplexType: IComplexType;
|
|
246
268
|
readonly IsNullable: boolean;
|
|
247
269
|
readonly Name: string;
|
|
@@ -251,7 +273,7 @@ export interface IComplexProperty$instance extends IReadOnlyComplexProperty, IRe
|
|
|
251
273
|
readonly IsCollection: boolean;
|
|
252
274
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
253
275
|
readonly FieldInfo: FieldInfo | undefined;
|
|
254
|
-
readonly
|
|
276
|
+
readonly [name: string]: unknown | undefined;
|
|
255
277
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
256
278
|
AnnotationsToDebugString(indent?: int): string;
|
|
257
279
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -275,6 +297,8 @@ export interface IComplexProperty$instance extends IReadOnlyComplexProperty, IRe
|
|
|
275
297
|
export type IComplexProperty = IComplexProperty$instance;
|
|
276
298
|
|
|
277
299
|
export interface IComplexType$instance extends IReadOnlyComplexType, IReadOnlyTypeBase, IReadOnlyAnnotatable, ITypeBase, IAnnotatable {
|
|
300
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IComplexType: never;
|
|
301
|
+
|
|
278
302
|
readonly ComplexProperty: IComplexProperty;
|
|
279
303
|
readonly BaseType: IComplexType | undefined;
|
|
280
304
|
readonly Model: IReadOnlyModel;
|
|
@@ -283,7 +307,7 @@ export interface IComplexType$instance extends IReadOnlyComplexType, IReadOnlyTy
|
|
|
283
307
|
readonly ClrType: Type;
|
|
284
308
|
readonly HasSharedClrType: boolean;
|
|
285
309
|
readonly IsPropertyBag: boolean;
|
|
286
|
-
readonly
|
|
310
|
+
readonly [name: string]: unknown | undefined;
|
|
287
311
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
288
312
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
289
313
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -339,6 +363,8 @@ export interface IComplexType$instance extends IReadOnlyComplexType, IReadOnlyTy
|
|
|
339
363
|
export type IComplexType = IComplexType$instance;
|
|
340
364
|
|
|
341
365
|
export interface IConstructorBindingFactory$instance {
|
|
366
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConstructorBindingFactory: never;
|
|
367
|
+
|
|
342
368
|
GetBindings(entityType: IConventionEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
343
369
|
GetBindings(entityType: IMutableEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
344
370
|
GetBindings(complexType: IReadOnlyComplexType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
@@ -351,9 +377,11 @@ export interface IConstructorBindingFactory$instance {
|
|
|
351
377
|
export type IConstructorBindingFactory = IConstructorBindingFactory$instance;
|
|
352
378
|
|
|
353
379
|
export interface IConventionAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionAnnotatable: never;
|
|
381
|
+
|
|
354
382
|
readonly Builder: IConventionAnnotatableBuilder;
|
|
355
383
|
readonly IsInModel: boolean;
|
|
356
|
-
readonly
|
|
384
|
+
readonly [name: string]: unknown | undefined;
|
|
357
385
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
358
386
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
359
387
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -367,6 +395,8 @@ export interface IConventionAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
|
367
395
|
export type IConventionAnnotatable = IConventionAnnotatable$instance;
|
|
368
396
|
|
|
369
397
|
export interface IConventionAnnotation$instance extends IAnnotation {
|
|
398
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionAnnotation: never;
|
|
399
|
+
|
|
370
400
|
readonly Name: string;
|
|
371
401
|
readonly Value: unknown | undefined;
|
|
372
402
|
GetConfigurationSource(): ConfigurationSource;
|
|
@@ -378,12 +408,14 @@ export interface IConventionAnnotation$instance extends Microsoft_EntityFramewor
|
|
|
378
408
|
export type IConventionAnnotation = IConventionAnnotation$instance;
|
|
379
409
|
|
|
380
410
|
export interface IConventionCheckConstraint$instance extends IReadOnlyCheckConstraint, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
411
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionCheckConstraint: never;
|
|
412
|
+
|
|
381
413
|
readonly Builder: IConventionCheckConstraintBuilder;
|
|
382
414
|
readonly EntityType: IConventionEntityType;
|
|
383
415
|
readonly ModelName: string;
|
|
384
|
-
readonly Name: string;
|
|
416
|
+
readonly Name: string | undefined;
|
|
385
417
|
readonly Sql: string;
|
|
386
|
-
readonly
|
|
418
|
+
readonly [name: string]: unknown | undefined;
|
|
387
419
|
readonly IsInModel: boolean;
|
|
388
420
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
389
421
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -396,7 +428,7 @@ export interface IConventionCheckConstraint$instance extends IReadOnlyCheckConst
|
|
|
396
428
|
GetDefaultName(): string | undefined;
|
|
397
429
|
GetName(storeObject: StoreObjectIdentifier): string | undefined;
|
|
398
430
|
GetNameConfigurationSource(): Nullable<ConfigurationSource>;
|
|
399
|
-
SetName(name: string, fromDataAnnotation?: boolean): string;
|
|
431
|
+
SetName(name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
400
432
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
401
433
|
FindAnnotation2(name: string): IConventionAnnotation | undefined;
|
|
402
434
|
}
|
|
@@ -405,6 +437,8 @@ export interface IConventionCheckConstraint$instance extends IReadOnlyCheckConst
|
|
|
405
437
|
export type IConventionCheckConstraint = IConventionCheckConstraint$instance;
|
|
406
438
|
|
|
407
439
|
export interface IConventionComplexProperty$instance extends IReadOnlyComplexProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionPropertyBase, IConventionAnnotatable {
|
|
440
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionComplexProperty: never;
|
|
441
|
+
|
|
408
442
|
readonly Builder: IConventionComplexPropertyBuilder;
|
|
409
443
|
readonly ComplexType: IConventionComplexType;
|
|
410
444
|
readonly IsNullable: boolean;
|
|
@@ -415,7 +449,7 @@ export interface IConventionComplexProperty$instance extends IReadOnlyComplexPro
|
|
|
415
449
|
readonly IsCollection: boolean;
|
|
416
450
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
417
451
|
readonly FieldInfo: FieldInfo | undefined;
|
|
418
|
-
readonly
|
|
452
|
+
readonly [name: string]: unknown | undefined;
|
|
419
453
|
readonly IsInModel: boolean;
|
|
420
454
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
421
455
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -442,6 +476,8 @@ export interface IConventionComplexProperty$instance extends IReadOnlyComplexPro
|
|
|
442
476
|
export type IConventionComplexProperty = IConventionComplexProperty$instance;
|
|
443
477
|
|
|
444
478
|
export interface IConventionComplexType$instance extends IReadOnlyComplexType, IReadOnlyTypeBase, IReadOnlyAnnotatable, IConventionTypeBase, IConventionAnnotatable {
|
|
479
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionComplexType: never;
|
|
480
|
+
|
|
445
481
|
readonly Builder: IConventionComplexTypeBuilder;
|
|
446
482
|
readonly ComplexProperty: IConventionComplexProperty;
|
|
447
483
|
readonly BaseType: IConventionComplexType | undefined;
|
|
@@ -451,7 +487,7 @@ export interface IConventionComplexType$instance extends IReadOnlyComplexType, I
|
|
|
451
487
|
readonly ClrType: Type;
|
|
452
488
|
readonly HasSharedClrType: boolean;
|
|
453
489
|
readonly IsPropertyBag: boolean;
|
|
454
|
-
readonly
|
|
490
|
+
readonly [name: string]: unknown | undefined;
|
|
455
491
|
readonly IsInModel: boolean;
|
|
456
492
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
457
493
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -529,22 +565,24 @@ export interface IConventionComplexType$instance extends IReadOnlyComplexType, I
|
|
|
529
565
|
export type IConventionComplexType = IConventionComplexType$instance;
|
|
530
566
|
|
|
531
567
|
export interface IConventionDbFunction$instance extends IReadOnlyDbFunction, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
568
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionDbFunction: never;
|
|
569
|
+
|
|
532
570
|
readonly Model: IConventionModel;
|
|
533
571
|
readonly Builder: IConventionDbFunctionBuilder;
|
|
534
572
|
readonly Parameters: IReadOnlyList<IConventionDbFunctionParameter>;
|
|
535
573
|
readonly Name: string;
|
|
536
|
-
readonly Schema: string;
|
|
574
|
+
readonly Schema: string | undefined;
|
|
537
575
|
readonly ModelName: string;
|
|
538
576
|
readonly MethodInfo: MethodInfo | undefined;
|
|
539
577
|
readonly IsBuiltIn: boolean;
|
|
540
578
|
readonly IsScalar: boolean;
|
|
541
579
|
readonly IsAggregate: boolean;
|
|
542
580
|
readonly IsNullable: boolean;
|
|
543
|
-
readonly StoreType: string;
|
|
581
|
+
readonly StoreType: string | undefined;
|
|
544
582
|
readonly ReturnType: Type;
|
|
545
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
583
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
546
584
|
readonly Translation: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
547
|
-
readonly
|
|
585
|
+
readonly [name: string]: unknown | undefined;
|
|
548
586
|
readonly IsInModel: boolean;
|
|
549
587
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
550
588
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -556,7 +594,7 @@ export interface IConventionDbFunction$instance extends IReadOnlyDbFunction, IRe
|
|
|
556
594
|
GetConfigurationSource(): ConfigurationSource;
|
|
557
595
|
GetNameConfigurationSource(): Nullable<ConfigurationSource>;
|
|
558
596
|
SetIsBuiltIn(builtIn: boolean, fromDataAnnotation?: boolean): boolean;
|
|
559
|
-
SetName(name: string, fromDataAnnotation?: boolean): string;
|
|
597
|
+
SetName(name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
560
598
|
SetTranslation(translation: Func<IReadOnlyList<SqlExpression>, SqlExpression>, fromDataAnnotation?: boolean): Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
561
599
|
SetTypeMapping(typeMapping: RelationalTypeMapping, fromDataAnnotation?: boolean): RelationalTypeMapping | undefined;
|
|
562
600
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
@@ -567,14 +605,16 @@ export interface IConventionDbFunction$instance extends IReadOnlyDbFunction, IRe
|
|
|
567
605
|
export type IConventionDbFunction = IConventionDbFunction$instance;
|
|
568
606
|
|
|
569
607
|
export interface IConventionDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
608
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionDbFunctionParameter: never;
|
|
609
|
+
|
|
570
610
|
readonly Function: IConventionDbFunction;
|
|
571
611
|
readonly Builder: IConventionDbFunctionParameterBuilder;
|
|
572
612
|
readonly Name: string;
|
|
573
613
|
readonly ClrType: Type;
|
|
574
614
|
readonly StoreType: string;
|
|
575
615
|
readonly PropagatesNullability: boolean;
|
|
576
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
577
|
-
readonly
|
|
616
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
617
|
+
readonly [name: string]: unknown | undefined;
|
|
578
618
|
readonly IsInModel: boolean;
|
|
579
619
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
580
620
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -595,11 +635,13 @@ export interface IConventionDbFunctionParameter$instance extends IReadOnlyDbFunc
|
|
|
595
635
|
export type IConventionDbFunctionParameter = IConventionDbFunctionParameter$instance;
|
|
596
636
|
|
|
597
637
|
export interface IConventionElementType$instance extends IReadOnlyElementType, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
638
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionElementType: never;
|
|
639
|
+
|
|
598
640
|
readonly CollectionProperty: IConventionProperty;
|
|
599
641
|
readonly Builder: IConventionElementTypeBuilder;
|
|
600
642
|
readonly ClrType: Type;
|
|
601
643
|
readonly IsNullable: boolean;
|
|
602
|
-
readonly
|
|
644
|
+
readonly [name: string]: unknown | undefined;
|
|
603
645
|
readonly IsInModel: boolean;
|
|
604
646
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
605
647
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -629,6 +671,8 @@ export interface IConventionElementType$instance extends IReadOnlyElementType, I
|
|
|
629
671
|
export type IConventionElementType = IConventionElementType$instance;
|
|
630
672
|
|
|
631
673
|
export interface IConventionEntityType$instance extends IReadOnlyEntityType, IReadOnlyTypeBase, IReadOnlyAnnotatable, IConventionTypeBase, IConventionAnnotatable {
|
|
674
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionEntityType: never;
|
|
675
|
+
|
|
632
676
|
readonly Builder: IConventionEntityTypeBuilder;
|
|
633
677
|
readonly BaseType: IConventionEntityType | undefined;
|
|
634
678
|
readonly IsKeyless: boolean;
|
|
@@ -638,7 +682,7 @@ export interface IConventionEntityType$instance extends IReadOnlyEntityType, IRe
|
|
|
638
682
|
readonly ClrType: Type;
|
|
639
683
|
readonly HasSharedClrType: boolean;
|
|
640
684
|
readonly IsPropertyBag: boolean;
|
|
641
|
-
readonly
|
|
685
|
+
readonly [name: string]: unknown | undefined;
|
|
642
686
|
readonly IsInModel: boolean;
|
|
643
687
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
644
688
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -652,7 +696,7 @@ export interface IConventionEntityType$instance extends IReadOnlyEntityType, IRe
|
|
|
652
696
|
AddIndex(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionIndex | undefined;
|
|
653
697
|
AddIndex(property: IConventionProperty, name: string, fromDataAnnotation?: boolean): IConventionIndex | undefined;
|
|
654
698
|
AddIndex(properties: IReadOnlyList<IConventionProperty>, fromDataAnnotation?: boolean): IConventionIndex | undefined;
|
|
655
|
-
AddIndex(properties: IReadOnlyList<IConventionProperty>, name: string, fromDataAnnotation?: boolean): IConventionIndex;
|
|
699
|
+
AddIndex(properties: IReadOnlyList<IConventionProperty>, name: string, fromDataAnnotation?: boolean): IConventionIndex | undefined;
|
|
656
700
|
AddProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionProperty | undefined;
|
|
657
701
|
AddProperty(name: string, fromDataAnnotation?: boolean): IConventionProperty | undefined;
|
|
658
702
|
AddProperty(name: string, propertyType: Type, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
|
|
@@ -782,11 +826,13 @@ export interface IConventionEntityType$instance extends IReadOnlyEntityType, IRe
|
|
|
782
826
|
export type IConventionEntityType = IConventionEntityType$instance;
|
|
783
827
|
|
|
784
828
|
export interface IConventionEntityTypeMappingFragment$instance extends IReadOnlyEntityTypeMappingFragment, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
829
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionEntityTypeMappingFragment: never;
|
|
830
|
+
|
|
785
831
|
readonly EntityType: IConventionEntityType;
|
|
786
832
|
readonly Builder: IConventionEntityTypeMappingFragmentBuilder;
|
|
787
833
|
readonly StoreObject: StoreObjectIdentifier;
|
|
788
834
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
789
|
-
readonly
|
|
835
|
+
readonly [name: string]: unknown | undefined;
|
|
790
836
|
readonly IsInModel: boolean;
|
|
791
837
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
792
838
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -806,6 +852,8 @@ export interface IConventionEntityTypeMappingFragment$instance extends IReadOnly
|
|
|
806
852
|
export type IConventionEntityTypeMappingFragment = IConventionEntityTypeMappingFragment$instance;
|
|
807
853
|
|
|
808
854
|
export interface IConventionForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
855
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionForeignKey: never;
|
|
856
|
+
|
|
809
857
|
readonly Builder: IConventionForeignKeyBuilder;
|
|
810
858
|
readonly Properties: IReadOnlyList<IConventionProperty>;
|
|
811
859
|
readonly PrincipalKey: IConventionKey;
|
|
@@ -818,7 +866,7 @@ export interface IConventionForeignKey$instance extends IReadOnlyForeignKey, IRe
|
|
|
818
866
|
readonly IsRequiredDependent: boolean;
|
|
819
867
|
readonly IsOwnership: boolean;
|
|
820
868
|
readonly DeleteBehavior: DeleteBehavior;
|
|
821
|
-
readonly
|
|
869
|
+
readonly [name: string]: unknown | undefined;
|
|
822
870
|
readonly IsInModel: boolean;
|
|
823
871
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
824
872
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -848,13 +896,15 @@ export interface IConventionForeignKey$instance extends IReadOnlyForeignKey, IRe
|
|
|
848
896
|
export type IConventionForeignKey = IConventionForeignKey$instance;
|
|
849
897
|
|
|
850
898
|
export interface IConventionIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
899
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionIndex: never;
|
|
900
|
+
|
|
851
901
|
readonly Builder: IConventionIndexBuilder;
|
|
852
902
|
readonly Properties: IReadOnlyList<IConventionProperty>;
|
|
853
903
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
854
|
-
readonly Name: string;
|
|
904
|
+
readonly Name: string | undefined;
|
|
855
905
|
readonly IsUnique: boolean;
|
|
856
|
-
readonly IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
857
|
-
readonly
|
|
906
|
+
readonly IsDescending: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
907
|
+
readonly [name: string]: unknown | undefined;
|
|
858
908
|
readonly IsInModel: boolean;
|
|
859
909
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
860
910
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -876,10 +926,12 @@ export interface IConventionIndex$instance extends IReadOnlyIndex, IReadOnlyAnno
|
|
|
876
926
|
export type IConventionIndex = IConventionIndex$instance;
|
|
877
927
|
|
|
878
928
|
export interface IConventionKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
929
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionKey: never;
|
|
930
|
+
|
|
879
931
|
readonly Builder: IConventionKeyBuilder;
|
|
880
932
|
readonly Properties: IReadOnlyList<IConventionProperty>;
|
|
881
933
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
882
|
-
readonly
|
|
934
|
+
readonly [name: string]: unknown | undefined;
|
|
883
935
|
readonly IsInModel: boolean;
|
|
884
936
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
885
937
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -900,9 +952,11 @@ export interface IConventionKey$instance extends IReadOnlyKey, IReadOnlyAnnotata
|
|
|
900
952
|
export type IConventionKey = IConventionKey$instance;
|
|
901
953
|
|
|
902
954
|
export interface IConventionModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
955
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionModel: never;
|
|
956
|
+
|
|
903
957
|
readonly Builder: IConventionModelBuilder;
|
|
904
958
|
readonly ModelId: Guid;
|
|
905
|
-
readonly
|
|
959
|
+
readonly [name: string]: unknown | undefined;
|
|
906
960
|
readonly IsInModel: boolean;
|
|
907
961
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
908
962
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -957,6 +1011,8 @@ export interface IConventionModel$instance extends IReadOnlyModel, IReadOnlyAnno
|
|
|
957
1011
|
export type IConventionModel = IConventionModel$instance;
|
|
958
1012
|
|
|
959
1013
|
export interface IConventionNavigation$instance extends IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionNavigationBase, IConventionPropertyBase, IConventionAnnotatable {
|
|
1014
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionNavigation: never;
|
|
1015
|
+
|
|
960
1016
|
readonly Builder: IConventionNavigationBuilder;
|
|
961
1017
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
962
1018
|
readonly TargetEntityType: IConventionEntityType;
|
|
@@ -972,7 +1028,7 @@ export interface IConventionNavigation$instance extends IReadOnlyNavigation, IRe
|
|
|
972
1028
|
readonly IsCollection: boolean;
|
|
973
1029
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
974
1030
|
readonly FieldInfo: FieldInfo | undefined;
|
|
975
|
-
readonly
|
|
1031
|
+
readonly [name: string]: unknown | undefined;
|
|
976
1032
|
readonly IsInModel: boolean;
|
|
977
1033
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
978
1034
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1002,6 +1058,8 @@ export interface IConventionNavigation$instance extends IReadOnlyNavigation, IRe
|
|
|
1002
1058
|
export type IConventionNavigation = IConventionNavigation$instance;
|
|
1003
1059
|
|
|
1004
1060
|
export interface IConventionNavigationBase$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionPropertyBase, IConventionAnnotatable {
|
|
1061
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionNavigationBase: never;
|
|
1062
|
+
|
|
1005
1063
|
readonly TargetEntityType: IConventionEntityType;
|
|
1006
1064
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
1007
1065
|
readonly Inverse: IReadOnlyNavigationBase;
|
|
@@ -1014,7 +1072,7 @@ export interface IConventionNavigationBase$instance extends IReadOnlyNavigationB
|
|
|
1014
1072
|
readonly IsCollection: boolean;
|
|
1015
1073
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1016
1074
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1017
|
-
readonly
|
|
1075
|
+
readonly [name: string]: unknown | undefined;
|
|
1018
1076
|
readonly Builder: IConventionAnnotatableBuilder;
|
|
1019
1077
|
readonly IsInModel: boolean;
|
|
1020
1078
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
@@ -1041,6 +1099,8 @@ export interface IConventionNavigationBase$instance extends IReadOnlyNavigationB
|
|
|
1041
1099
|
export type IConventionNavigationBase = IConventionNavigationBase$instance;
|
|
1042
1100
|
|
|
1043
1101
|
export interface IConventionProperty$instance extends IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionPropertyBase, IConventionAnnotatable {
|
|
1102
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionProperty: never;
|
|
1103
|
+
|
|
1044
1104
|
readonly Builder: IConventionPropertyBuilder;
|
|
1045
1105
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
1046
1106
|
readonly IsNullable: boolean;
|
|
@@ -1054,7 +1114,7 @@ export interface IConventionProperty$instance extends IReadOnlyProperty, IReadOn
|
|
|
1054
1114
|
readonly IsCollection: boolean;
|
|
1055
1115
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1056
1116
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1057
|
-
readonly
|
|
1117
|
+
readonly [name: string]: unknown | undefined;
|
|
1058
1118
|
readonly IsInModel: boolean;
|
|
1059
1119
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1060
1120
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1108,6 +1168,8 @@ export interface IConventionProperty$instance extends IReadOnlyProperty, IReadOn
|
|
|
1108
1168
|
export type IConventionProperty = IConventionProperty$instance;
|
|
1109
1169
|
|
|
1110
1170
|
export interface IConventionPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionPropertyBase: never;
|
|
1172
|
+
|
|
1111
1173
|
readonly DeclaringType: IConventionTypeBase;
|
|
1112
1174
|
readonly Name: string;
|
|
1113
1175
|
readonly ClrType: Type;
|
|
@@ -1115,7 +1177,7 @@ export interface IConventionPropertyBase$instance extends IReadOnlyPropertyBase,
|
|
|
1115
1177
|
readonly IsCollection: boolean;
|
|
1116
1178
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1117
1179
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1118
|
-
readonly
|
|
1180
|
+
readonly [name: string]: unknown | undefined;
|
|
1119
1181
|
readonly Builder: IConventionAnnotatableBuilder;
|
|
1120
1182
|
readonly IsInModel: boolean;
|
|
1121
1183
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
@@ -1140,12 +1202,14 @@ export interface IConventionPropertyBase$instance extends IReadOnlyPropertyBase,
|
|
|
1140
1202
|
export type IConventionPropertyBase = IConventionPropertyBase$instance;
|
|
1141
1203
|
|
|
1142
1204
|
export interface IConventionRelationalPropertyOverrides$instance extends IReadOnlyRelationalPropertyOverrides, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1205
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionRelationalPropertyOverrides: never;
|
|
1206
|
+
|
|
1143
1207
|
readonly Property: IConventionProperty;
|
|
1144
1208
|
readonly Builder: IConventionRelationalPropertyOverridesBuilder;
|
|
1145
1209
|
readonly StoreObject: StoreObjectIdentifier;
|
|
1146
|
-
readonly ColumnName: string;
|
|
1210
|
+
readonly ColumnName: string | undefined;
|
|
1147
1211
|
readonly IsColumnNameOverridden: boolean;
|
|
1148
|
-
readonly
|
|
1212
|
+
readonly [name: string]: unknown | undefined;
|
|
1149
1213
|
readonly IsInModel: boolean;
|
|
1150
1214
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1151
1215
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1166,18 +1230,20 @@ export interface IConventionRelationalPropertyOverrides$instance extends IReadOn
|
|
|
1166
1230
|
export type IConventionRelationalPropertyOverrides = IConventionRelationalPropertyOverrides$instance;
|
|
1167
1231
|
|
|
1168
1232
|
export interface IConventionSequence$instance extends IReadOnlySequence, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1233
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionSequence: never;
|
|
1234
|
+
|
|
1169
1235
|
readonly Model: IConventionModel;
|
|
1170
1236
|
readonly Builder: IConventionSequenceBuilder;
|
|
1171
1237
|
readonly Name: string;
|
|
1172
1238
|
readonly ModelSchema: string | undefined;
|
|
1173
|
-
readonly Schema: string;
|
|
1239
|
+
readonly Schema: string | undefined;
|
|
1174
1240
|
readonly StartValue: long;
|
|
1175
1241
|
readonly IncrementBy: int;
|
|
1176
1242
|
readonly MinValue: Nullable<System_Internal.Int64>;
|
|
1177
1243
|
readonly MaxValue: Nullable<System_Internal.Int64>;
|
|
1178
1244
|
readonly Type: Type;
|
|
1179
1245
|
readonly IsCyclic: boolean;
|
|
1180
|
-
readonly
|
|
1246
|
+
readonly [name: string]: unknown | undefined;
|
|
1181
1247
|
readonly IsInModel: boolean;
|
|
1182
1248
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1183
1249
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1198,6 +1264,8 @@ export interface IConventionSequence$instance extends IReadOnlySequence, IReadOn
|
|
|
1198
1264
|
export type IConventionSequence = IConventionSequence$instance;
|
|
1199
1265
|
|
|
1200
1266
|
export interface IConventionServiceProperty$instance extends IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionPropertyBase, IConventionAnnotatable {
|
|
1267
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionServiceProperty: never;
|
|
1268
|
+
|
|
1201
1269
|
readonly Builder: IConventionServicePropertyBuilder;
|
|
1202
1270
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
1203
1271
|
readonly ParameterBinding: ServiceParameterBinding;
|
|
@@ -1208,7 +1276,7 @@ export interface IConventionServiceProperty$instance extends IReadOnlyServicePro
|
|
|
1208
1276
|
readonly IsCollection: boolean;
|
|
1209
1277
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1210
1278
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1211
|
-
readonly
|
|
1279
|
+
readonly [name: string]: unknown | undefined;
|
|
1212
1280
|
readonly IsInModel: boolean;
|
|
1213
1281
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1214
1282
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1235,6 +1303,8 @@ export interface IConventionServiceProperty$instance extends IReadOnlyServicePro
|
|
|
1235
1303
|
export type IConventionServiceProperty = IConventionServiceProperty$instance;
|
|
1236
1304
|
|
|
1237
1305
|
export interface IConventionSkipNavigation$instance extends IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IConventionNavigationBase, IConventionPropertyBase, IConventionAnnotatable {
|
|
1306
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionSkipNavigation: never;
|
|
1307
|
+
|
|
1238
1308
|
readonly Builder: IConventionSkipNavigationBuilder;
|
|
1239
1309
|
readonly DeclaringEntityType: IConventionEntityType;
|
|
1240
1310
|
readonly TargetEntityType: IConventionEntityType;
|
|
@@ -1251,7 +1321,7 @@ export interface IConventionSkipNavigation$instance extends IReadOnlySkipNavigat
|
|
|
1251
1321
|
readonly IsCollection: boolean;
|
|
1252
1322
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1253
1323
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1254
|
-
readonly
|
|
1324
|
+
readonly [name: string]: unknown | undefined;
|
|
1255
1325
|
readonly IsInModel: boolean;
|
|
1256
1326
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1257
1327
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1281,14 +1351,16 @@ export interface IConventionSkipNavigation$instance extends IReadOnlySkipNavigat
|
|
|
1281
1351
|
export type IConventionSkipNavigation = IConventionSkipNavigation$instance;
|
|
1282
1352
|
|
|
1283
1353
|
export interface IConventionStoredProcedure$instance extends IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1354
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionStoredProcedure: never;
|
|
1355
|
+
|
|
1284
1356
|
readonly EntityType: IConventionEntityType;
|
|
1285
1357
|
readonly Builder: IConventionStoredProcedureBuilder;
|
|
1286
1358
|
readonly Parameters: IReadOnlyList<IConventionStoredProcedureParameter>;
|
|
1287
1359
|
readonly ResultColumns: IReadOnlyList<IConventionStoredProcedureResultColumn>;
|
|
1288
1360
|
readonly Name: string;
|
|
1289
|
-
readonly Schema: string;
|
|
1361
|
+
readonly Schema: string | undefined;
|
|
1290
1362
|
readonly IsRowsAffectedReturned: boolean;
|
|
1291
|
-
readonly
|
|
1363
|
+
readonly [name: string]: unknown | undefined;
|
|
1292
1364
|
readonly IsInModel: boolean;
|
|
1293
1365
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1294
1366
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1313,7 +1385,7 @@ export interface IConventionStoredProcedure$instance extends IReadOnlyStoredProc
|
|
|
1313
1385
|
GetNameConfigurationSource(): Nullable<ConfigurationSource>;
|
|
1314
1386
|
GetSchemaQualifiedName(): string | undefined;
|
|
1315
1387
|
SetIsRowsAffectedReturned(rowsAffectedReturned: boolean, fromDataAnnotation?: boolean): boolean;
|
|
1316
|
-
SetName(name: string, fromDataAnnotation?: boolean): string;
|
|
1388
|
+
SetName(name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1317
1389
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
1318
1390
|
FindAnnotation2(name: string): IConventionAnnotation | undefined;
|
|
1319
1391
|
GetStoreIdentifier(): Nullable<StoreObjectIdentifier>;
|
|
@@ -1323,14 +1395,16 @@ export interface IConventionStoredProcedure$instance extends IReadOnlyStoredProc
|
|
|
1323
1395
|
export type IConventionStoredProcedure = IConventionStoredProcedure$instance;
|
|
1324
1396
|
|
|
1325
1397
|
export interface IConventionStoredProcedureParameter$instance extends IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1398
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionStoredProcedureParameter: never;
|
|
1399
|
+
|
|
1326
1400
|
readonly StoredProcedure: IConventionStoredProcedure;
|
|
1327
1401
|
readonly Builder: IConventionStoredProcedureParameterBuilder;
|
|
1328
1402
|
readonly Name: string;
|
|
1329
|
-
readonly PropertyName: string;
|
|
1403
|
+
readonly PropertyName: string | undefined;
|
|
1330
1404
|
readonly Direction: ParameterDirection;
|
|
1331
1405
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
1332
1406
|
readonly ForRowsAffected: boolean;
|
|
1333
|
-
readonly
|
|
1407
|
+
readonly [name: string]: unknown | undefined;
|
|
1334
1408
|
readonly IsInModel: boolean;
|
|
1335
1409
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1336
1410
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1350,12 +1424,14 @@ export interface IConventionStoredProcedureParameter$instance extends IReadOnlyS
|
|
|
1350
1424
|
export type IConventionStoredProcedureParameter = IConventionStoredProcedureParameter$instance;
|
|
1351
1425
|
|
|
1352
1426
|
export interface IConventionStoredProcedureResultColumn$instance extends IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1427
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionStoredProcedureResultColumn: never;
|
|
1428
|
+
|
|
1353
1429
|
readonly StoredProcedure: IConventionStoredProcedure;
|
|
1354
1430
|
readonly Builder: IConventionStoredProcedureResultColumnBuilder;
|
|
1355
1431
|
readonly Name: string;
|
|
1356
|
-
readonly PropertyName: string;
|
|
1432
|
+
readonly PropertyName: string | undefined;
|
|
1357
1433
|
readonly ForRowsAffected: boolean;
|
|
1358
|
-
readonly
|
|
1434
|
+
readonly [name: string]: unknown | undefined;
|
|
1359
1435
|
readonly IsInModel: boolean;
|
|
1360
1436
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1361
1437
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1365,7 +1441,7 @@ export interface IConventionStoredProcedureResultColumn$instance extends IReadOn
|
|
|
1365
1441
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
1366
1442
|
GetAnnotations(): IEnumerable<IConventionAnnotation>;
|
|
1367
1443
|
GetNameConfigurationSource(): Nullable<ConfigurationSource>;
|
|
1368
|
-
SetName(name: string, fromDataAnnotation?: boolean): string;
|
|
1444
|
+
SetName(name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1369
1445
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
1370
1446
|
FindAnnotation2(name: string): IConventionAnnotation | undefined;
|
|
1371
1447
|
}
|
|
@@ -1374,10 +1450,12 @@ export interface IConventionStoredProcedureResultColumn$instance extends IReadOn
|
|
|
1374
1450
|
export type IConventionStoredProcedureResultColumn = IConventionStoredProcedureResultColumn$instance;
|
|
1375
1451
|
|
|
1376
1452
|
export interface IConventionTrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1453
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionTrigger: never;
|
|
1454
|
+
|
|
1377
1455
|
readonly Builder: IConventionTriggerBuilder;
|
|
1378
1456
|
readonly EntityType: IConventionEntityType;
|
|
1379
1457
|
readonly ModelName: string;
|
|
1380
|
-
readonly
|
|
1458
|
+
readonly [name: string]: unknown | undefined;
|
|
1381
1459
|
readonly IsInModel: boolean;
|
|
1382
1460
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1383
1461
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1395,6 +1473,8 @@ export interface IConventionTrigger$instance extends IReadOnlyTrigger, IReadOnly
|
|
|
1395
1473
|
export type IConventionTrigger = IConventionTrigger$instance;
|
|
1396
1474
|
|
|
1397
1475
|
export interface IConventionTypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
1476
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionTypeBase: never;
|
|
1477
|
+
|
|
1398
1478
|
readonly Model: IConventionModel;
|
|
1399
1479
|
readonly Builder: IConventionTypeBaseBuilder;
|
|
1400
1480
|
readonly ContainingEntityType: IConventionEntityType;
|
|
@@ -1403,7 +1483,7 @@ export interface IConventionTypeBase$instance extends IReadOnlyTypeBase, IReadOn
|
|
|
1403
1483
|
readonly ClrType: Type;
|
|
1404
1484
|
readonly HasSharedClrType: boolean;
|
|
1405
1485
|
readonly IsPropertyBag: boolean;
|
|
1406
|
-
readonly
|
|
1486
|
+
readonly [name: string]: unknown | undefined;
|
|
1407
1487
|
readonly IsInModel: boolean;
|
|
1408
1488
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1409
1489
|
AddAnnotations(annotations: IEnumerable<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
@@ -1468,22 +1548,24 @@ export interface IConventionTypeBase$instance extends IReadOnlyTypeBase, IReadOn
|
|
|
1468
1548
|
export type IConventionTypeBase = IConventionTypeBase$instance;
|
|
1469
1549
|
|
|
1470
1550
|
export interface IDbFunction$instance extends IReadOnlyDbFunction, IReadOnlyAnnotatable, IAnnotatable {
|
|
1551
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IDbFunction: never;
|
|
1552
|
+
|
|
1471
1553
|
readonly Model: IModel;
|
|
1472
1554
|
readonly Parameters: IReadOnlyList<IDbFunctionParameter>;
|
|
1473
1555
|
readonly StoreFunction: IStoreFunction;
|
|
1474
1556
|
readonly Name: string;
|
|
1475
|
-
readonly Schema: string;
|
|
1557
|
+
readonly Schema: string | undefined;
|
|
1476
1558
|
readonly ModelName: string;
|
|
1477
1559
|
readonly MethodInfo: MethodInfo | undefined;
|
|
1478
1560
|
readonly IsBuiltIn: boolean;
|
|
1479
1561
|
readonly IsScalar: boolean;
|
|
1480
1562
|
readonly IsAggregate: boolean;
|
|
1481
1563
|
readonly IsNullable: boolean;
|
|
1482
|
-
readonly StoreType: string;
|
|
1564
|
+
readonly StoreType: string | undefined;
|
|
1483
1565
|
readonly ReturnType: Type;
|
|
1484
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
1566
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
1485
1567
|
readonly Translation: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
1486
|
-
readonly
|
|
1568
|
+
readonly [name: string]: unknown | undefined;
|
|
1487
1569
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1488
1570
|
AnnotationsToDebugString(indent?: int): string;
|
|
1489
1571
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1499,14 +1581,16 @@ export interface IDbFunction$instance extends IReadOnlyDbFunction, IReadOnlyAnno
|
|
|
1499
1581
|
export type IDbFunction = IDbFunction$instance;
|
|
1500
1582
|
|
|
1501
1583
|
export interface IDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
1584
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IDbFunctionParameter: never;
|
|
1585
|
+
|
|
1502
1586
|
readonly StoreType: string;
|
|
1503
1587
|
readonly Function: IDbFunction;
|
|
1504
1588
|
readonly StoreFunctionParameter: IStoreFunctionParameter;
|
|
1505
1589
|
readonly Name: string;
|
|
1506
1590
|
readonly ClrType: Type;
|
|
1507
1591
|
readonly PropagatesNullability: boolean;
|
|
1508
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
1509
|
-
readonly
|
|
1592
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
1593
|
+
readonly [name: string]: unknown | undefined;
|
|
1510
1594
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1511
1595
|
AnnotationsToDebugString(indent?: int): string;
|
|
1512
1596
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1522,6 +1606,8 @@ export interface IDbFunctionParameter$instance extends IReadOnlyDbFunctionParame
|
|
|
1522
1606
|
export type IDbFunctionParameter = IDbFunctionParameter$instance;
|
|
1523
1607
|
|
|
1524
1608
|
export interface IDesignTimeModel$instance {
|
|
1609
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IDesignTimeModel: never;
|
|
1610
|
+
|
|
1525
1611
|
readonly Model: IModel;
|
|
1526
1612
|
}
|
|
1527
1613
|
|
|
@@ -1529,10 +1615,12 @@ export interface IDesignTimeModel$instance {
|
|
|
1529
1615
|
export type IDesignTimeModel = IDesignTimeModel$instance;
|
|
1530
1616
|
|
|
1531
1617
|
export interface IElementType$instance extends IReadOnlyElementType, IReadOnlyAnnotatable, IAnnotatable {
|
|
1618
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IElementType: never;
|
|
1619
|
+
|
|
1532
1620
|
readonly CollectionProperty: IProperty;
|
|
1533
1621
|
readonly ClrType: Type;
|
|
1534
1622
|
readonly IsNullable: boolean;
|
|
1535
|
-
readonly
|
|
1623
|
+
readonly [name: string]: unknown | undefined;
|
|
1536
1624
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1537
1625
|
AnnotationsToDebugString(indent?: int): string;
|
|
1538
1626
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1554,6 +1642,8 @@ export interface IElementType$instance extends IReadOnlyElementType, IReadOnlyAn
|
|
|
1554
1642
|
export type IElementType = IElementType$instance;
|
|
1555
1643
|
|
|
1556
1644
|
export interface IEntityType$instance extends IReadOnlyEntityType, IReadOnlyTypeBase, IReadOnlyAnnotatable, ITypeBase, IAnnotatable {
|
|
1645
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IEntityType: never;
|
|
1646
|
+
|
|
1557
1647
|
readonly BaseType: IEntityType | undefined;
|
|
1558
1648
|
readonly ServiceOnlyConstructorBinding: InstantiationBinding | undefined;
|
|
1559
1649
|
readonly Model: IReadOnlyModel;
|
|
@@ -1562,7 +1652,7 @@ export interface IEntityType$instance extends IReadOnlyEntityType, IReadOnlyType
|
|
|
1562
1652
|
readonly ClrType: Type;
|
|
1563
1653
|
readonly HasSharedClrType: boolean;
|
|
1564
1654
|
readonly IsPropertyBag: boolean;
|
|
1565
|
-
readonly
|
|
1655
|
+
readonly [name: string]: unknown | undefined;
|
|
1566
1656
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
1567
1657
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1568
1658
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -1661,10 +1751,12 @@ export interface IEntityType$instance extends IReadOnlyEntityType, IReadOnlyType
|
|
|
1661
1751
|
export type IEntityType = IEntityType$instance;
|
|
1662
1752
|
|
|
1663
1753
|
export interface IEntityTypeMappingFragment$instance extends IReadOnlyEntityTypeMappingFragment, IReadOnlyAnnotatable, IAnnotatable {
|
|
1754
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IEntityTypeMappingFragment: never;
|
|
1755
|
+
|
|
1664
1756
|
readonly EntityType: IEntityType;
|
|
1665
1757
|
readonly StoreObject: StoreObjectIdentifier;
|
|
1666
1758
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
1667
|
-
readonly
|
|
1759
|
+
readonly [name: string]: unknown | undefined;
|
|
1668
1760
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1669
1761
|
AnnotationsToDebugString(indent?: int): string;
|
|
1670
1762
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1680,6 +1772,8 @@ export interface IEntityTypeMappingFragment$instance extends IReadOnlyEntityType
|
|
|
1680
1772
|
export type IEntityTypeMappingFragment = IEntityTypeMappingFragment$instance;
|
|
1681
1773
|
|
|
1682
1774
|
export interface IForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnnotatable, IAnnotatable {
|
|
1775
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IForeignKey: never;
|
|
1776
|
+
|
|
1683
1777
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
1684
1778
|
readonly PrincipalKey: IKey;
|
|
1685
1779
|
readonly DeclaringEntityType: IEntityType;
|
|
@@ -1691,7 +1785,7 @@ export interface IForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnno
|
|
|
1691
1785
|
readonly IsRequiredDependent: boolean;
|
|
1692
1786
|
readonly IsOwnership: boolean;
|
|
1693
1787
|
readonly DeleteBehavior: DeleteBehavior;
|
|
1694
|
-
readonly
|
|
1788
|
+
readonly [name: string]: unknown | undefined;
|
|
1695
1789
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1696
1790
|
AnnotationsToDebugString(indent?: int): string;
|
|
1697
1791
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1716,6 +1810,8 @@ export interface IForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnno
|
|
|
1716
1810
|
export type IForeignKey = IForeignKey$instance;
|
|
1717
1811
|
|
|
1718
1812
|
export interface IForeignKeyConstraint$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
1813
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IForeignKeyConstraint: never;
|
|
1814
|
+
|
|
1719
1815
|
readonly Name: string;
|
|
1720
1816
|
readonly MappedForeignKeys: IEnumerable<IForeignKey>;
|
|
1721
1817
|
readonly Table: ITable;
|
|
@@ -1724,7 +1820,7 @@ export interface IForeignKeyConstraint$instance extends IAnnotatable, IReadOnlyA
|
|
|
1724
1820
|
readonly PrincipalColumns: IReadOnlyList<IColumn>;
|
|
1725
1821
|
readonly PrincipalUniqueConstraint: IUniqueConstraint;
|
|
1726
1822
|
readonly OnDeleteAction: ReferentialAction;
|
|
1727
|
-
readonly
|
|
1823
|
+
readonly [name: string]: unknown | undefined;
|
|
1728
1824
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1729
1825
|
AnnotationsToDebugString(indent?: int): string;
|
|
1730
1826
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1740,6 +1836,8 @@ export interface IForeignKeyConstraint$instance extends IAnnotatable, IReadOnlyA
|
|
|
1740
1836
|
export type IForeignKeyConstraint = IForeignKeyConstraint$instance;
|
|
1741
1837
|
|
|
1742
1838
|
export interface IFunctionColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
1839
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IFunctionColumn: never;
|
|
1840
|
+
|
|
1743
1841
|
readonly Function: IStoreFunction;
|
|
1744
1842
|
readonly PropertyMappings: IReadOnlyList<IFunctionColumnMapping>;
|
|
1745
1843
|
readonly Name: string;
|
|
@@ -1749,7 +1847,7 @@ export interface IFunctionColumn$instance extends IColumnBase, IAnnotatable, IRe
|
|
|
1749
1847
|
readonly IsNullable: boolean;
|
|
1750
1848
|
readonly Table: ITableBase;
|
|
1751
1849
|
readonly ProviderValueComparer: ValueComparer;
|
|
1752
|
-
readonly
|
|
1850
|
+
readonly [name: string]: unknown | undefined;
|
|
1753
1851
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1754
1852
|
AnnotationsToDebugString(indent?: int): string;
|
|
1755
1853
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -1767,12 +1865,14 @@ export interface IFunctionColumn$instance extends IColumnBase, IAnnotatable, IRe
|
|
|
1767
1865
|
export type IFunctionColumn = IFunctionColumn$instance;
|
|
1768
1866
|
|
|
1769
1867
|
export interface IFunctionColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
1868
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IFunctionColumnMapping: never;
|
|
1869
|
+
|
|
1770
1870
|
readonly Column: IFunctionColumn;
|
|
1771
1871
|
readonly FunctionMapping: IFunctionMapping;
|
|
1772
1872
|
readonly Property: IProperty;
|
|
1773
1873
|
readonly TypeMapping: RelationalTypeMapping;
|
|
1774
1874
|
readonly TableMapping: ITableMappingBase;
|
|
1775
|
-
readonly
|
|
1875
|
+
readonly [name: string]: unknown | undefined;
|
|
1776
1876
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1777
1877
|
AnnotationsToDebugString(indent?: int): string;
|
|
1778
1878
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1788,6 +1888,8 @@ export interface IFunctionColumnMapping$instance extends IColumnMappingBase, IAn
|
|
|
1788
1888
|
export type IFunctionColumnMapping = IFunctionColumnMapping$instance;
|
|
1789
1889
|
|
|
1790
1890
|
export interface IFunctionMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
1891
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IFunctionMapping: never;
|
|
1892
|
+
|
|
1791
1893
|
readonly IsDefaultFunctionMapping: boolean;
|
|
1792
1894
|
readonly StoreFunction: IStoreFunction;
|
|
1793
1895
|
readonly DbFunction: IDbFunction;
|
|
@@ -1797,7 +1899,7 @@ export interface IFunctionMapping$instance extends ITableMappingBase, IAnnotatab
|
|
|
1797
1899
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
1798
1900
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
1799
1901
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
1800
|
-
readonly
|
|
1902
|
+
readonly [name: string]: unknown | undefined;
|
|
1801
1903
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1802
1904
|
AnnotationsToDebugString(indent?: int): string;
|
|
1803
1905
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1813,12 +1915,14 @@ export interface IFunctionMapping$instance extends ITableMappingBase, IAnnotatab
|
|
|
1813
1915
|
export type IFunctionMapping = IFunctionMapping$instance;
|
|
1814
1916
|
|
|
1815
1917
|
export interface IIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotatable, IAnnotatable {
|
|
1918
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IIndex: never;
|
|
1919
|
+
|
|
1816
1920
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
1817
1921
|
readonly DeclaringEntityType: IEntityType;
|
|
1818
|
-
readonly Name: string;
|
|
1922
|
+
readonly Name: string | undefined;
|
|
1819
1923
|
readonly IsUnique: boolean;
|
|
1820
|
-
readonly IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
1821
|
-
readonly
|
|
1924
|
+
readonly IsDescending: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
1925
|
+
readonly [name: string]: unknown | undefined;
|
|
1822
1926
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1823
1927
|
AnnotationsToDebugString(indent?: int): string;
|
|
1824
1928
|
DisplayName(): string;
|
|
@@ -1836,9 +1940,11 @@ export interface IIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotatable, I
|
|
|
1836
1940
|
export type IIndex = IIndex$instance;
|
|
1837
1941
|
|
|
1838
1942
|
export interface IKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IAnnotatable {
|
|
1943
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IKey: never;
|
|
1944
|
+
|
|
1839
1945
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
1840
1946
|
readonly DeclaringEntityType: IEntityType;
|
|
1841
|
-
readonly
|
|
1947
|
+
readonly [name: string]: unknown | undefined;
|
|
1842
1948
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1843
1949
|
AnnotationsToDebugString(indent?: int): string;
|
|
1844
1950
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1860,17 +1966,23 @@ export interface IKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IAnno
|
|
|
1860
1966
|
export type IKey = IKey$instance;
|
|
1861
1967
|
|
|
1862
1968
|
export interface IMetadataReference_1$instance<T> extends IDisposable {
|
|
1969
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMetadataReference_1: never;
|
|
1970
|
+
|
|
1863
1971
|
readonly Object: T;
|
|
1864
1972
|
}
|
|
1865
1973
|
|
|
1866
1974
|
|
|
1975
|
+
export interface IMetadataReference_1$instance<T> extends System_Internal.IDisposable {}
|
|
1976
|
+
|
|
1867
1977
|
export type IMetadataReference_1<T> = IMetadataReference_1$instance<T>;
|
|
1868
1978
|
|
|
1869
1979
|
export interface IModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, IAnnotatable {
|
|
1980
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IModel: never;
|
|
1981
|
+
|
|
1870
1982
|
get ModelDependencies(): RuntimeModelDependencies | undefined;
|
|
1871
|
-
set ModelDependencies(value: RuntimeModelDependencies);
|
|
1983
|
+
set ModelDependencies(value: RuntimeModelDependencies | undefined);
|
|
1872
1984
|
readonly ModelId: Guid;
|
|
1873
|
-
readonly
|
|
1985
|
+
readonly [name: string]: unknown | undefined;
|
|
1874
1986
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1875
1987
|
AnnotationsToDebugString(indent?: int): string;
|
|
1876
1988
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1907,8 +2019,9 @@ export interface IModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, I
|
|
|
1907
2019
|
export type IModel = IModel$instance;
|
|
1908
2020
|
|
|
1909
2021
|
export interface IMutableAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
1910
|
-
|
|
1911
|
-
|
|
2022
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
2023
|
+
|
|
2024
|
+
[name: string]: unknown | undefined;
|
|
1912
2025
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1913
2026
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
1914
2027
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -1922,11 +2035,14 @@ export interface IMutableAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
|
1922
2035
|
export type IMutableAnnotatable = IMutableAnnotatable$instance;
|
|
1923
2036
|
|
|
1924
2037
|
export interface IMutableCheckConstraint$instance extends IReadOnlyCheckConstraint, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2038
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableCheckConstraint: never;
|
|
2039
|
+
|
|
1925
2040
|
readonly EntityType: IMutableEntityType;
|
|
1926
|
-
Name: string;
|
|
2041
|
+
get Name(): string | undefined;
|
|
2042
|
+
set Name(value: string | undefined);
|
|
1927
2043
|
readonly ModelName: string;
|
|
1928
2044
|
readonly Sql: string;
|
|
1929
|
-
readonly
|
|
2045
|
+
readonly [name: string]: unknown | undefined;
|
|
1930
2046
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1931
2047
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
1932
2048
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -1943,6 +2059,8 @@ export interface IMutableCheckConstraint$instance extends IReadOnlyCheckConstrai
|
|
|
1943
2059
|
export type IMutableCheckConstraint = IMutableCheckConstraint$instance;
|
|
1944
2060
|
|
|
1945
2061
|
export interface IMutableComplexProperty$instance extends IReadOnlyComplexProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2062
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableComplexProperty: never;
|
|
2063
|
+
|
|
1946
2064
|
readonly ComplexType: IMutableComplexType;
|
|
1947
2065
|
IsNullable: boolean;
|
|
1948
2066
|
readonly Name: string;
|
|
@@ -1952,7 +2070,7 @@ export interface IMutableComplexProperty$instance extends IReadOnlyComplexProper
|
|
|
1952
2070
|
readonly IsCollection: boolean;
|
|
1953
2071
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
1954
2072
|
readonly FieldInfo: FieldInfo | undefined;
|
|
1955
|
-
readonly
|
|
2073
|
+
readonly [name: string]: unknown | undefined;
|
|
1956
2074
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1957
2075
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
1958
2076
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -1972,6 +2090,8 @@ export interface IMutableComplexProperty$instance extends IReadOnlyComplexProper
|
|
|
1972
2090
|
export type IMutableComplexProperty = IMutableComplexProperty$instance;
|
|
1973
2091
|
|
|
1974
2092
|
export interface IMutableComplexType$instance extends IReadOnlyComplexType, IReadOnlyTypeBase, IReadOnlyAnnotatable, IMutableTypeBase, IMutableAnnotatable {
|
|
2093
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableComplexType: never;
|
|
2094
|
+
|
|
1975
2095
|
readonly ComplexProperty: IMutableComplexProperty;
|
|
1976
2096
|
readonly BaseType: IMutableComplexType | undefined;
|
|
1977
2097
|
readonly Model: IReadOnlyModel;
|
|
@@ -1980,14 +2100,14 @@ export interface IMutableComplexType$instance extends IReadOnlyComplexType, IRea
|
|
|
1980
2100
|
readonly ClrType: Type;
|
|
1981
2101
|
readonly HasSharedClrType: boolean;
|
|
1982
2102
|
readonly IsPropertyBag: boolean;
|
|
1983
|
-
readonly
|
|
2103
|
+
readonly [name: string]: unknown | undefined;
|
|
1984
2104
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1985
2105
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
1986
2106
|
AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
1987
2107
|
AddComplexProperty(name: string, collection?: boolean): IMutableComplexProperty;
|
|
1988
2108
|
AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
1989
2109
|
AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
1990
|
-
AddIgnored(memberName: string): string;
|
|
2110
|
+
AddIgnored(memberName: string): string | undefined;
|
|
1991
2111
|
AddProperty(memberInfo: MemberInfo): IMutableProperty;
|
|
1992
2112
|
AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo): IMutableProperty;
|
|
1993
2113
|
AddProperty(name: string, propertyType: Type): IMutableProperty;
|
|
@@ -2048,22 +2168,27 @@ export interface IMutableComplexType$instance extends IReadOnlyComplexType, IRea
|
|
|
2048
2168
|
export type IMutableComplexType = IMutableComplexType$instance;
|
|
2049
2169
|
|
|
2050
2170
|
export interface IMutableDbFunction$instance extends IReadOnlyDbFunction, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableDbFunction: never;
|
|
2172
|
+
|
|
2051
2173
|
Name: string;
|
|
2052
|
-
Schema: string;
|
|
2174
|
+
get Schema(): string | undefined;
|
|
2175
|
+
set Schema(value: string | undefined);
|
|
2053
2176
|
IsBuiltIn: boolean;
|
|
2054
2177
|
IsNullable: boolean;
|
|
2055
|
-
StoreType: string;
|
|
2056
|
-
|
|
2178
|
+
get StoreType(): string | undefined;
|
|
2179
|
+
set StoreType(value: string | undefined);
|
|
2180
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
2181
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
2057
2182
|
readonly Model: IMutableModel;
|
|
2058
2183
|
readonly Parameters: IReadOnlyList<IMutableDbFunctionParameter>;
|
|
2059
2184
|
get Translation(): Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
2060
|
-
set Translation(value: Func<IReadOnlyList<SqlExpression>, SqlExpression>);
|
|
2185
|
+
set Translation(value: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined);
|
|
2061
2186
|
readonly ModelName: string;
|
|
2062
2187
|
readonly MethodInfo: MethodInfo | undefined;
|
|
2063
2188
|
readonly IsScalar: boolean;
|
|
2064
2189
|
readonly IsAggregate: boolean;
|
|
2065
2190
|
readonly ReturnType: Type;
|
|
2066
|
-
readonly
|
|
2191
|
+
readonly [name: string]: unknown | undefined;
|
|
2067
2192
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2068
2193
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2069
2194
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2078,13 +2203,16 @@ export interface IMutableDbFunction$instance extends IReadOnlyDbFunction, IReadO
|
|
|
2078
2203
|
export type IMutableDbFunction = IMutableDbFunction$instance;
|
|
2079
2204
|
|
|
2080
2205
|
export interface IMutableDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2206
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableDbFunctionParameter: never;
|
|
2207
|
+
|
|
2081
2208
|
readonly Function: IMutableDbFunction;
|
|
2082
2209
|
StoreType: string;
|
|
2083
|
-
TypeMapping: RelationalTypeMapping;
|
|
2210
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
2211
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
2084
2212
|
readonly Name: string;
|
|
2085
2213
|
readonly ClrType: Type;
|
|
2086
2214
|
readonly PropagatesNullability: boolean;
|
|
2087
|
-
readonly
|
|
2215
|
+
readonly [name: string]: unknown | undefined;
|
|
2088
2216
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2089
2217
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2090
2218
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2099,10 +2227,12 @@ export interface IMutableDbFunctionParameter$instance extends IReadOnlyDbFunctio
|
|
|
2099
2227
|
export type IMutableDbFunctionParameter = IMutableDbFunctionParameter$instance;
|
|
2100
2228
|
|
|
2101
2229
|
export interface IMutableElementType$instance extends IReadOnlyElementType, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2230
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableElementType: never;
|
|
2231
|
+
|
|
2102
2232
|
readonly CollectionProperty: IMutableProperty;
|
|
2103
2233
|
IsNullable: boolean;
|
|
2104
2234
|
readonly ClrType: Type;
|
|
2105
|
-
readonly
|
|
2235
|
+
readonly [name: string]: unknown | undefined;
|
|
2106
2236
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2107
2237
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2108
2238
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2128,8 +2258,10 @@ export interface IMutableElementType$instance extends IReadOnlyElementType, IRea
|
|
|
2128
2258
|
export type IMutableElementType = IMutableElementType$instance;
|
|
2129
2259
|
|
|
2130
2260
|
export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadOnlyTypeBase, IReadOnlyAnnotatable, IMutableTypeBase, IMutableAnnotatable {
|
|
2261
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityType: never;
|
|
2262
|
+
|
|
2131
2263
|
get BaseType(): IMutableEntityType | undefined;
|
|
2132
|
-
set BaseType(value: IMutableEntityType);
|
|
2264
|
+
set BaseType(value: IMutableEntityType | undefined);
|
|
2133
2265
|
IsKeyless: boolean;
|
|
2134
2266
|
readonly Model: IReadOnlyModel;
|
|
2135
2267
|
readonly ContainingEntityType: IReadOnlyEntityType;
|
|
@@ -2137,7 +2269,7 @@ export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadO
|
|
|
2137
2269
|
readonly ClrType: Type;
|
|
2138
2270
|
readonly HasSharedClrType: boolean;
|
|
2139
2271
|
readonly IsPropertyBag: boolean;
|
|
2140
|
-
readonly
|
|
2272
|
+
readonly [name: string]: unknown | undefined;
|
|
2141
2273
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2142
2274
|
AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
2143
2275
|
AddComplexProperty(name: string, collection?: boolean): IMutableComplexProperty;
|
|
@@ -2146,7 +2278,7 @@ export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadO
|
|
|
2146
2278
|
AddData(data: IEnumerable<unknown>): void;
|
|
2147
2279
|
AddForeignKey(property: IMutableProperty, principalKey: IMutableKey, principalEntityType: IMutableEntityType): IMutableForeignKey;
|
|
2148
2280
|
AddForeignKey(properties: IReadOnlyList<IMutableProperty>, principalKey: IMutableKey, principalEntityType: IMutableEntityType): IMutableForeignKey;
|
|
2149
|
-
AddIgnored(memberName: string): string;
|
|
2281
|
+
AddIgnored(memberName: string): string | undefined;
|
|
2150
2282
|
AddIndex(property: IMutableProperty, name: string): IMutableIndex;
|
|
2151
2283
|
AddIndex(property: IMutableProperty): IMutableIndex;
|
|
2152
2284
|
AddIndex(properties: IReadOnlyList<IMutableProperty>, name: string): IMutableIndex;
|
|
@@ -2265,10 +2397,12 @@ export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadO
|
|
|
2265
2397
|
export type IMutableEntityType = IMutableEntityType$instance;
|
|
2266
2398
|
|
|
2267
2399
|
export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEntityTypeMappingFragment, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2400
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityTypeMappingFragment: never;
|
|
2401
|
+
|
|
2268
2402
|
readonly EntityType: IMutableEntityType;
|
|
2269
2403
|
IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
2270
2404
|
readonly StoreObject: StoreObjectIdentifier;
|
|
2271
|
-
readonly
|
|
2405
|
+
readonly [name: string]: unknown | undefined;
|
|
2272
2406
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2273
2407
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2274
2408
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2283,6 +2417,8 @@ export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEnt
|
|
|
2283
2417
|
export type IMutableEntityTypeMappingFragment = IMutableEntityTypeMappingFragment$instance;
|
|
2284
2418
|
|
|
2285
2419
|
export interface IMutableForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2420
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableForeignKey: never;
|
|
2421
|
+
|
|
2286
2422
|
readonly Properties: IReadOnlyList<IMutableProperty>;
|
|
2287
2423
|
readonly PrincipalKey: IMutableKey;
|
|
2288
2424
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
@@ -2294,7 +2430,7 @@ export interface IMutableForeignKey$instance extends IReadOnlyForeignKey, IReadO
|
|
|
2294
2430
|
DeleteBehavior: DeleteBehavior;
|
|
2295
2431
|
readonly DependentToPrincipal: IMutableNavigation | undefined;
|
|
2296
2432
|
readonly PrincipalToDependent: IMutableNavigation | undefined;
|
|
2297
|
-
readonly
|
|
2433
|
+
readonly [name: string]: unknown | undefined;
|
|
2298
2434
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2299
2435
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2300
2436
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2319,12 +2455,15 @@ export interface IMutableForeignKey$instance extends IReadOnlyForeignKey, IReadO
|
|
|
2319
2455
|
export type IMutableForeignKey = IMutableForeignKey$instance;
|
|
2320
2456
|
|
|
2321
2457
|
export interface IMutableIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2458
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableIndex: never;
|
|
2459
|
+
|
|
2322
2460
|
IsUnique: boolean;
|
|
2323
|
-
IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
2461
|
+
get IsDescending(): IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
2462
|
+
set IsDescending(value: IReadOnlyList<System_Internal.Boolean> | undefined);
|
|
2324
2463
|
readonly Properties: IReadOnlyList<IMutableProperty>;
|
|
2325
2464
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2326
|
-
readonly Name: string;
|
|
2327
|
-
readonly
|
|
2465
|
+
readonly Name: string | undefined;
|
|
2466
|
+
readonly [name: string]: unknown | undefined;
|
|
2328
2467
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2329
2468
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2330
2469
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2340,9 +2479,11 @@ export interface IMutableIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotat
|
|
|
2340
2479
|
export type IMutableIndex = IMutableIndex$instance;
|
|
2341
2480
|
|
|
2342
2481
|
export interface IMutableKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2482
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableKey: never;
|
|
2483
|
+
|
|
2343
2484
|
readonly Properties: IReadOnlyList<IMutableProperty>;
|
|
2344
2485
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2345
|
-
readonly
|
|
2486
|
+
readonly [name: string]: unknown | undefined;
|
|
2346
2487
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2347
2488
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2348
2489
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2360,8 +2501,10 @@ export interface IMutableKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable
|
|
|
2360
2501
|
export type IMutableKey = IMutableKey$instance;
|
|
2361
2502
|
|
|
2362
2503
|
export interface IMutableModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2504
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableModel: never;
|
|
2505
|
+
|
|
2363
2506
|
readonly ModelId: Guid;
|
|
2364
|
-
readonly
|
|
2507
|
+
readonly [name: string]: unknown | undefined;
|
|
2365
2508
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2366
2509
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2367
2510
|
AddEntityType(name: string, definingNavigationName: string, definingEntityType: IMutableEntityType): IMutableEntityType;
|
|
@@ -2406,6 +2549,8 @@ export interface IMutableModel$instance extends IReadOnlyModel, IReadOnlyAnnotat
|
|
|
2406
2549
|
export type IMutableModel = IMutableModel$instance;
|
|
2407
2550
|
|
|
2408
2551
|
export interface IMutableNavigation$instance extends IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableNavigationBase, IMutablePropertyBase, IMutableAnnotatable {
|
|
2552
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableNavigation: never;
|
|
2553
|
+
|
|
2409
2554
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2410
2555
|
readonly TargetEntityType: IMutableEntityType;
|
|
2411
2556
|
readonly ForeignKey: IMutableForeignKey;
|
|
@@ -2420,7 +2565,7 @@ export interface IMutableNavigation$instance extends IReadOnlyNavigation, IReadO
|
|
|
2420
2565
|
readonly IsCollection: boolean;
|
|
2421
2566
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2422
2567
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2423
|
-
readonly
|
|
2568
|
+
readonly [name: string]: unknown | undefined;
|
|
2424
2569
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2425
2570
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2426
2571
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2443,6 +2588,8 @@ export interface IMutableNavigation$instance extends IReadOnlyNavigation, IReadO
|
|
|
2443
2588
|
export type IMutableNavigation = IMutableNavigation$instance;
|
|
2444
2589
|
|
|
2445
2590
|
export interface IMutableNavigationBase$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2591
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableNavigationBase: never;
|
|
2592
|
+
|
|
2446
2593
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
2447
2594
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
2448
2595
|
readonly Inverse: IReadOnlyNavigationBase;
|
|
@@ -2455,7 +2602,7 @@ export interface IMutableNavigationBase$instance extends IReadOnlyNavigationBase
|
|
|
2455
2602
|
readonly IsCollection: boolean;
|
|
2456
2603
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2457
2604
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2458
|
-
readonly
|
|
2605
|
+
readonly [name: string]: unknown | undefined;
|
|
2459
2606
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2460
2607
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2461
2608
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2475,12 +2622,14 @@ export interface IMutableNavigationBase$instance extends IReadOnlyNavigationBase
|
|
|
2475
2622
|
export type IMutableNavigationBase = IMutableNavigationBase$instance;
|
|
2476
2623
|
|
|
2477
2624
|
export interface IMutableProperty$instance extends IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2625
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableProperty: never;
|
|
2626
|
+
|
|
2478
2627
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2479
2628
|
IsNullable: boolean;
|
|
2480
2629
|
ValueGenerated: ValueGenerated;
|
|
2481
2630
|
IsConcurrencyToken: boolean;
|
|
2482
2631
|
get Sentinel(): unknown | undefined;
|
|
2483
|
-
set Sentinel(value: unknown);
|
|
2632
|
+
set Sentinel(value: unknown | undefined);
|
|
2484
2633
|
readonly IsPrimitiveCollection: boolean;
|
|
2485
2634
|
readonly Name: string;
|
|
2486
2635
|
readonly DeclaringType: IReadOnlyTypeBase;
|
|
@@ -2488,7 +2637,7 @@ export interface IMutableProperty$instance extends IReadOnlyProperty, IReadOnlyP
|
|
|
2488
2637
|
readonly IsCollection: boolean;
|
|
2489
2638
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2490
2639
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2491
|
-
readonly
|
|
2640
|
+
readonly [name: string]: unknown | undefined;
|
|
2492
2641
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2493
2642
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2494
2643
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2533,15 +2682,17 @@ export interface IMutableProperty$instance extends IReadOnlyProperty, IReadOnlyP
|
|
|
2533
2682
|
export type IMutableProperty = IMutableProperty$instance;
|
|
2534
2683
|
|
|
2535
2684
|
export interface IMutablePropertyBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutablePropertyBase: never;
|
|
2686
|
+
|
|
2536
2687
|
readonly DeclaringType: IMutableTypeBase;
|
|
2537
2688
|
get FieldInfo(): FieldInfo | undefined;
|
|
2538
|
-
set FieldInfo(value: FieldInfo);
|
|
2689
|
+
set FieldInfo(value: FieldInfo | undefined);
|
|
2539
2690
|
readonly Name: string;
|
|
2540
2691
|
readonly ClrType: Type;
|
|
2541
2692
|
readonly Sentinel: unknown | undefined;
|
|
2542
2693
|
readonly IsCollection: boolean;
|
|
2543
2694
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2544
|
-
readonly
|
|
2695
|
+
readonly [name: string]: unknown | undefined;
|
|
2545
2696
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2546
2697
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2547
2698
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2560,11 +2711,14 @@ export interface IMutablePropertyBase$instance extends IReadOnlyPropertyBase, IR
|
|
|
2560
2711
|
export type IMutablePropertyBase = IMutablePropertyBase$instance;
|
|
2561
2712
|
|
|
2562
2713
|
export interface IMutableRelationalPropertyOverrides$instance extends IReadOnlyRelationalPropertyOverrides, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2714
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableRelationalPropertyOverrides: never;
|
|
2715
|
+
|
|
2563
2716
|
readonly Property: IMutableProperty;
|
|
2564
|
-
ColumnName: string;
|
|
2717
|
+
get ColumnName(): string | undefined;
|
|
2718
|
+
set ColumnName(value: string | undefined);
|
|
2565
2719
|
readonly StoreObject: StoreObjectIdentifier;
|
|
2566
2720
|
readonly IsColumnNameOverridden: boolean;
|
|
2567
|
-
readonly
|
|
2721
|
+
readonly [name: string]: unknown | undefined;
|
|
2568
2722
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2569
2723
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2570
2724
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2580,6 +2734,8 @@ export interface IMutableRelationalPropertyOverrides$instance extends IReadOnlyR
|
|
|
2580
2734
|
export type IMutableRelationalPropertyOverrides = IMutableRelationalPropertyOverrides$instance;
|
|
2581
2735
|
|
|
2582
2736
|
export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2737
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableSequence: never;
|
|
2738
|
+
|
|
2583
2739
|
readonly Model: IMutableModel;
|
|
2584
2740
|
StartValue: long;
|
|
2585
2741
|
IncrementBy: int;
|
|
@@ -2589,8 +2745,8 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
|
|
|
2589
2745
|
IsCyclic: boolean;
|
|
2590
2746
|
readonly Name: string;
|
|
2591
2747
|
readonly ModelSchema: string | undefined;
|
|
2592
|
-
readonly Schema: string;
|
|
2593
|
-
readonly
|
|
2748
|
+
readonly Schema: string | undefined;
|
|
2749
|
+
readonly [name: string]: unknown | undefined;
|
|
2594
2750
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2595
2751
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2596
2752
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2605,6 +2761,8 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
|
|
|
2605
2761
|
export type IMutableSequence = IMutableSequence$instance;
|
|
2606
2762
|
|
|
2607
2763
|
export interface IMutableServiceProperty$instance extends IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2764
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableServiceProperty: never;
|
|
2765
|
+
|
|
2608
2766
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2609
2767
|
ParameterBinding: ServiceParameterBinding;
|
|
2610
2768
|
readonly Name: string;
|
|
@@ -2614,7 +2772,7 @@ export interface IMutableServiceProperty$instance extends IReadOnlyServiceProper
|
|
|
2614
2772
|
readonly IsCollection: boolean;
|
|
2615
2773
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2616
2774
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2617
|
-
readonly
|
|
2775
|
+
readonly [name: string]: unknown | undefined;
|
|
2618
2776
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2619
2777
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2620
2778
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2634,6 +2792,8 @@ export interface IMutableServiceProperty$instance extends IReadOnlyServiceProper
|
|
|
2634
2792
|
export type IMutableServiceProperty = IMutableServiceProperty$instance;
|
|
2635
2793
|
|
|
2636
2794
|
export interface IMutableSkipNavigation$instance extends IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableNavigationBase, IMutablePropertyBase, IMutableAnnotatable {
|
|
2795
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableSkipNavigation: never;
|
|
2796
|
+
|
|
2637
2797
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2638
2798
|
readonly TargetEntityType: IMutableEntityType;
|
|
2639
2799
|
readonly JoinEntityType: IMutableEntityType;
|
|
@@ -2649,7 +2809,7 @@ export interface IMutableSkipNavigation$instance extends IReadOnlySkipNavigation
|
|
|
2649
2809
|
readonly IsCollection: boolean;
|
|
2650
2810
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2651
2811
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2652
|
-
readonly
|
|
2812
|
+
readonly [name: string]: unknown | undefined;
|
|
2653
2813
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2654
2814
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2655
2815
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2672,13 +2832,16 @@ export interface IMutableSkipNavigation$instance extends IReadOnlySkipNavigation
|
|
|
2672
2832
|
export type IMutableSkipNavigation = IMutableSkipNavigation$instance;
|
|
2673
2833
|
|
|
2674
2834
|
export interface IMutableStoredProcedure$instance extends IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2835
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedure: never;
|
|
2836
|
+
|
|
2675
2837
|
Name: string;
|
|
2676
|
-
Schema: string;
|
|
2838
|
+
get Schema(): string | undefined;
|
|
2839
|
+
set Schema(value: string | undefined);
|
|
2677
2840
|
readonly EntityType: IMutableEntityType;
|
|
2678
2841
|
IsRowsAffectedReturned: boolean;
|
|
2679
2842
|
readonly Parameters: IReadOnlyList<IMutableStoredProcedureParameter>;
|
|
2680
2843
|
readonly ResultColumns: IReadOnlyList<IMutableStoredProcedureResultColumn>;
|
|
2681
|
-
readonly
|
|
2844
|
+
readonly [name: string]: unknown | undefined;
|
|
2682
2845
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2683
2846
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2684
2847
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2703,13 +2866,15 @@ export interface IMutableStoredProcedure$instance extends IReadOnlyStoredProcedu
|
|
|
2703
2866
|
export type IMutableStoredProcedure = IMutableStoredProcedure$instance;
|
|
2704
2867
|
|
|
2705
2868
|
export interface IMutableStoredProcedureParameter$instance extends IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2869
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedureParameter: never;
|
|
2870
|
+
|
|
2706
2871
|
readonly StoredProcedure: IMutableStoredProcedure;
|
|
2707
2872
|
Name: string;
|
|
2708
2873
|
Direction: ParameterDirection;
|
|
2709
|
-
readonly PropertyName: string;
|
|
2874
|
+
readonly PropertyName: string | undefined;
|
|
2710
2875
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
2711
2876
|
readonly ForRowsAffected: boolean;
|
|
2712
|
-
readonly
|
|
2877
|
+
readonly [name: string]: unknown | undefined;
|
|
2713
2878
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2714
2879
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2715
2880
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2724,11 +2889,13 @@ export interface IMutableStoredProcedureParameter$instance extends IReadOnlyStor
|
|
|
2724
2889
|
export type IMutableStoredProcedureParameter = IMutableStoredProcedureParameter$instance;
|
|
2725
2890
|
|
|
2726
2891
|
export interface IMutableStoredProcedureResultColumn$instance extends IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2892
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedureResultColumn: never;
|
|
2893
|
+
|
|
2727
2894
|
readonly StoredProcedure: IMutableStoredProcedure;
|
|
2728
2895
|
Name: string;
|
|
2729
|
-
readonly PropertyName: string;
|
|
2896
|
+
readonly PropertyName: string | undefined;
|
|
2730
2897
|
readonly ForRowsAffected: boolean;
|
|
2731
|
-
readonly
|
|
2898
|
+
readonly [name: string]: unknown | undefined;
|
|
2732
2899
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2733
2900
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2734
2901
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2743,9 +2910,11 @@ export interface IMutableStoredProcedureResultColumn$instance extends IReadOnlyS
|
|
|
2743
2910
|
export type IMutableStoredProcedureResultColumn = IMutableStoredProcedureResultColumn$instance;
|
|
2744
2911
|
|
|
2745
2912
|
export interface IMutableTrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2913
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableTrigger: never;
|
|
2914
|
+
|
|
2746
2915
|
readonly EntityType: IMutableEntityType;
|
|
2747
2916
|
readonly ModelName: string;
|
|
2748
|
-
readonly
|
|
2917
|
+
readonly [name: string]: unknown | undefined;
|
|
2749
2918
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2750
2919
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2751
2920
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -2760,22 +2929,24 @@ export interface IMutableTrigger$instance extends IReadOnlyTrigger, IReadOnlyAnn
|
|
|
2760
2929
|
export type IMutableTrigger = IMutableTrigger$instance;
|
|
2761
2930
|
|
|
2762
2931
|
export interface IMutableTypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2932
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableTypeBase: never;
|
|
2933
|
+
|
|
2763
2934
|
readonly Model: IMutableModel;
|
|
2764
2935
|
readonly ContainingEntityType: IMutableEntityType;
|
|
2765
2936
|
get BaseType(): IMutableTypeBase | undefined;
|
|
2766
|
-
set BaseType(value: IMutableTypeBase);
|
|
2937
|
+
set BaseType(value: IMutableTypeBase | undefined);
|
|
2767
2938
|
readonly Name: string;
|
|
2768
2939
|
readonly ClrType: Type;
|
|
2769
2940
|
readonly HasSharedClrType: boolean;
|
|
2770
2941
|
readonly IsPropertyBag: boolean;
|
|
2771
|
-
readonly
|
|
2942
|
+
readonly [name: string]: unknown | undefined;
|
|
2772
2943
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2773
2944
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2774
2945
|
AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
2775
2946
|
AddComplexProperty(name: string, collection?: boolean): IMutableComplexProperty;
|
|
2776
2947
|
AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
2777
2948
|
AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
|
|
2778
|
-
AddIgnored(memberName: string): string;
|
|
2949
|
+
AddIgnored(memberName: string): string | undefined;
|
|
2779
2950
|
AddProperty(memberInfo: MemberInfo): IMutableProperty;
|
|
2780
2951
|
AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo): IMutableProperty;
|
|
2781
2952
|
AddProperty(name: string, propertyType: Type): IMutableProperty;
|
|
@@ -2825,6 +2996,8 @@ export interface IMutableTypeBase$instance extends IReadOnlyTypeBase, IReadOnlyA
|
|
|
2825
2996
|
export type IMutableTypeBase = IMutableTypeBase$instance;
|
|
2826
2997
|
|
|
2827
2998
|
export interface INavigation$instance extends IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
2999
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigation: never;
|
|
3000
|
+
|
|
2828
3001
|
readonly DeclaringEntityType: IEntityType;
|
|
2829
3002
|
readonly TargetEntityType: IEntityType;
|
|
2830
3003
|
readonly ForeignKey: IForeignKey;
|
|
@@ -2839,7 +3012,7 @@ export interface INavigation$instance extends IReadOnlyNavigation, IReadOnlyNavi
|
|
|
2839
3012
|
readonly IsCollection: boolean;
|
|
2840
3013
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2841
3014
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2842
|
-
readonly
|
|
3015
|
+
readonly [name: string]: unknown | undefined;
|
|
2843
3016
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2844
3017
|
AnnotationsToDebugString(indent?: int): string;
|
|
2845
3018
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -2864,6 +3037,8 @@ export interface INavigation$instance extends IReadOnlyNavigation, IReadOnlyNavi
|
|
|
2864
3037
|
export type INavigation = INavigation$instance;
|
|
2865
3038
|
|
|
2866
3039
|
export interface INavigationBase$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
3040
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigationBase: never;
|
|
3041
|
+
|
|
2867
3042
|
readonly DeclaringEntityType: IEntityType;
|
|
2868
3043
|
readonly TargetEntityType: IEntityType;
|
|
2869
3044
|
readonly Inverse: INavigationBase;
|
|
@@ -2876,7 +3051,7 @@ export interface INavigationBase$instance extends IReadOnlyNavigationBase, IRead
|
|
|
2876
3051
|
readonly IsCollection: boolean;
|
|
2877
3052
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2878
3053
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2879
|
-
readonly
|
|
3054
|
+
readonly [name: string]: unknown | undefined;
|
|
2880
3055
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2881
3056
|
AnnotationsToDebugString(indent?: int): string;
|
|
2882
3057
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -2900,6 +3075,8 @@ export interface INavigationBase$instance extends IReadOnlyNavigationBase, IRead
|
|
|
2900
3075
|
export type INavigationBase = INavigationBase$instance;
|
|
2901
3076
|
|
|
2902
3077
|
export interface IParameterBindingFactories$instance {
|
|
3078
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactories: never;
|
|
3079
|
+
|
|
2903
3080
|
FindFactory(parameterType: Type, parameterName: string): IParameterBindingFactory | undefined;
|
|
2904
3081
|
}
|
|
2905
3082
|
|
|
@@ -2907,6 +3084,8 @@ export interface IParameterBindingFactories$instance {
|
|
|
2907
3084
|
export type IParameterBindingFactories = IParameterBindingFactories$instance;
|
|
2908
3085
|
|
|
2909
3086
|
export interface IParameterBindingFactory$instance {
|
|
3087
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
3088
|
+
|
|
2910
3089
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
2911
3090
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
2912
3091
|
Bind(entityType: IReadOnlyEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -2917,11 +3096,13 @@ export interface IParameterBindingFactory$instance {
|
|
|
2917
3096
|
export type IParameterBindingFactory = IParameterBindingFactory$instance;
|
|
2918
3097
|
|
|
2919
3098
|
export interface IPrimaryKeyConstraint$instance extends IUniqueConstraint, IAnnotatable, IReadOnlyAnnotatable {
|
|
3099
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPrimaryKeyConstraint: never;
|
|
3100
|
+
|
|
2920
3101
|
readonly Name: string;
|
|
2921
3102
|
readonly MappedKeys: IEnumerable<IKey>;
|
|
2922
3103
|
readonly Table: ITable;
|
|
2923
3104
|
readonly Columns: IReadOnlyList<IColumn>;
|
|
2924
|
-
readonly
|
|
3105
|
+
readonly [name: string]: unknown | undefined;
|
|
2925
3106
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2926
3107
|
AnnotationsToDebugString(indent?: int): string;
|
|
2927
3108
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -2938,6 +3119,8 @@ export interface IPrimaryKeyConstraint$instance extends IUniqueConstraint, IAnno
|
|
|
2938
3119
|
export type IPrimaryKeyConstraint = IPrimaryKeyConstraint$instance;
|
|
2939
3120
|
|
|
2940
3121
|
export interface IProperty$instance extends IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
3122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IProperty: never;
|
|
3123
|
+
|
|
2941
3124
|
readonly DeclaringEntityType: IEntityType;
|
|
2942
3125
|
readonly IsNullable: boolean;
|
|
2943
3126
|
readonly ValueGenerated: ValueGenerated;
|
|
@@ -2950,7 +3133,7 @@ export interface IProperty$instance extends IReadOnlyProperty, IReadOnlyProperty
|
|
|
2950
3133
|
readonly IsCollection: boolean;
|
|
2951
3134
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
2952
3135
|
readonly FieldInfo: FieldInfo | undefined;
|
|
2953
|
-
readonly
|
|
3136
|
+
readonly [name: string]: unknown | undefined;
|
|
2954
3137
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2955
3138
|
AnnotationsToDebugString(indent?: int): string;
|
|
2956
3139
|
CreateKeyEqualityComparer<TProperty>(): IEqualityComparer<TProperty>;
|
|
@@ -2994,6 +3177,8 @@ export interface IProperty$instance extends IReadOnlyProperty, IReadOnlyProperty
|
|
|
2994
3177
|
export type IProperty = IProperty$instance;
|
|
2995
3178
|
|
|
2996
3179
|
export interface IPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
3180
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
3181
|
+
|
|
2997
3182
|
readonly DeclaringType: ITypeBase;
|
|
2998
3183
|
readonly Name: string;
|
|
2999
3184
|
readonly ClrType: Type;
|
|
@@ -3001,7 +3186,7 @@ export interface IPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnly
|
|
|
3001
3186
|
readonly IsCollection: boolean;
|
|
3002
3187
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3003
3188
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3004
|
-
readonly
|
|
3189
|
+
readonly [name: string]: unknown | undefined;
|
|
3005
3190
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3006
3191
|
AnnotationsToDebugString(indent?: int): string;
|
|
3007
3192
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3024,6 +3209,8 @@ export interface IPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnly
|
|
|
3024
3209
|
export type IPropertyBase = IPropertyBase$instance;
|
|
3025
3210
|
|
|
3026
3211
|
export interface IPropertyParameterBindingFactory$instance {
|
|
3212
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyParameterBindingFactory: never;
|
|
3213
|
+
|
|
3027
3214
|
FindParameter(complexType: IComplexType, parameterType: Type, parameterName: string): ParameterBinding | undefined;
|
|
3028
3215
|
FindParameter(entityType: IEntityType, parameterType: Type, parameterName: string): ParameterBinding | undefined;
|
|
3029
3216
|
}
|
|
@@ -3032,8 +3219,10 @@ export interface IPropertyParameterBindingFactory$instance {
|
|
|
3032
3219
|
export type IPropertyParameterBindingFactory = IPropertyParameterBindingFactory$instance;
|
|
3033
3220
|
|
|
3034
3221
|
export interface IQueryFilter$instance {
|
|
3222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IQueryFilter: never;
|
|
3223
|
+
|
|
3035
3224
|
readonly Expression: LambdaExpression;
|
|
3036
|
-
readonly Key: string;
|
|
3225
|
+
readonly Key: string | undefined;
|
|
3037
3226
|
readonly IsAnonymous: boolean;
|
|
3038
3227
|
}
|
|
3039
3228
|
|
|
@@ -3041,11 +3230,13 @@ export interface IQueryFilter$instance {
|
|
|
3041
3230
|
export type IQueryFilter = IQueryFilter$instance;
|
|
3042
3231
|
|
|
3043
3232
|
export interface IReadOnlyCheckConstraint$instance extends IReadOnlyAnnotatable {
|
|
3233
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyCheckConstraint: never;
|
|
3234
|
+
|
|
3044
3235
|
readonly ModelName: string;
|
|
3045
|
-
readonly Name: string;
|
|
3236
|
+
readonly Name: string | undefined;
|
|
3046
3237
|
readonly EntityType: IReadOnlyEntityType;
|
|
3047
3238
|
readonly Sql: string;
|
|
3048
|
-
readonly
|
|
3239
|
+
readonly [name: string]: unknown | undefined;
|
|
3049
3240
|
AnnotationsToDebugString(indent?: int): string;
|
|
3050
3241
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3051
3242
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3060,6 +3251,8 @@ export interface IReadOnlyCheckConstraint$instance extends Microsoft_EntityFrame
|
|
|
3060
3251
|
export type IReadOnlyCheckConstraint = IReadOnlyCheckConstraint$instance;
|
|
3061
3252
|
|
|
3062
3253
|
export interface IReadOnlyComplexProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3254
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexProperty: never;
|
|
3255
|
+
|
|
3063
3256
|
readonly ComplexType: IReadOnlyComplexType;
|
|
3064
3257
|
readonly IsNullable: boolean;
|
|
3065
3258
|
readonly Name: string;
|
|
@@ -3069,7 +3262,7 @@ export interface IReadOnlyComplexProperty$instance extends IReadOnlyPropertyBase
|
|
|
3069
3262
|
readonly IsCollection: boolean;
|
|
3070
3263
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3071
3264
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3072
|
-
readonly
|
|
3265
|
+
readonly [name: string]: unknown | undefined;
|
|
3073
3266
|
AnnotationsToDebugString(indent?: int): string;
|
|
3074
3267
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3075
3268
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3083,6 +3276,8 @@ export interface IReadOnlyComplexProperty$instance extends IReadOnlyPropertyBase
|
|
|
3083
3276
|
export type IReadOnlyComplexProperty = IReadOnlyComplexProperty$instance;
|
|
3084
3277
|
|
|
3085
3278
|
export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable {
|
|
3279
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexType: never;
|
|
3280
|
+
|
|
3086
3281
|
readonly ComplexProperty: IReadOnlyComplexProperty;
|
|
3087
3282
|
readonly BaseType: IReadOnlyComplexType | undefined;
|
|
3088
3283
|
readonly Model: IReadOnlyModel;
|
|
@@ -3091,7 +3286,7 @@ export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadO
|
|
|
3091
3286
|
readonly ClrType: Type;
|
|
3092
3287
|
readonly HasSharedClrType: boolean;
|
|
3093
3288
|
readonly IsPropertyBag: boolean;
|
|
3094
|
-
readonly
|
|
3289
|
+
readonly [name: string]: unknown | undefined;
|
|
3095
3290
|
AnnotationsToDebugString(indent?: int): string;
|
|
3096
3291
|
DisplayName(): string;
|
|
3097
3292
|
DisplayName(omitSharedType: boolean): string;
|
|
@@ -3124,8 +3319,10 @@ export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadO
|
|
|
3124
3319
|
export type IReadOnlyComplexType = IReadOnlyComplexType$instance;
|
|
3125
3320
|
|
|
3126
3321
|
export interface IReadOnlyDbFunction$instance extends IReadOnlyAnnotatable {
|
|
3322
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunction: never;
|
|
3323
|
+
|
|
3127
3324
|
readonly Name: string;
|
|
3128
|
-
readonly Schema: string;
|
|
3325
|
+
readonly Schema: string | undefined;
|
|
3129
3326
|
readonly ModelName: string;
|
|
3130
3327
|
readonly Model: IReadOnlyModel;
|
|
3131
3328
|
readonly MethodInfo: MethodInfo | undefined;
|
|
@@ -3133,12 +3330,12 @@ export interface IReadOnlyDbFunction$instance extends IReadOnlyAnnotatable {
|
|
|
3133
3330
|
readonly IsScalar: boolean;
|
|
3134
3331
|
readonly IsAggregate: boolean;
|
|
3135
3332
|
readonly IsNullable: boolean;
|
|
3136
|
-
readonly StoreType: string;
|
|
3333
|
+
readonly StoreType: string | undefined;
|
|
3137
3334
|
readonly ReturnType: Type;
|
|
3138
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
3335
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
3139
3336
|
readonly Parameters: IReadOnlyList<IReadOnlyDbFunctionParameter>;
|
|
3140
3337
|
readonly Translation: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
3141
|
-
readonly
|
|
3338
|
+
readonly [name: string]: unknown | undefined;
|
|
3142
3339
|
AnnotationsToDebugString(indent?: int): string;
|
|
3143
3340
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3144
3341
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3151,13 +3348,15 @@ export interface IReadOnlyDbFunction$instance extends Microsoft_EntityFrameworkC
|
|
|
3151
3348
|
export type IReadOnlyDbFunction = IReadOnlyDbFunction$instance;
|
|
3152
3349
|
|
|
3153
3350
|
export interface IReadOnlyDbFunctionParameter$instance extends IReadOnlyAnnotatable {
|
|
3351
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunctionParameter: never;
|
|
3352
|
+
|
|
3154
3353
|
readonly Function: IReadOnlyDbFunction;
|
|
3155
3354
|
readonly Name: string;
|
|
3156
3355
|
readonly ClrType: Type;
|
|
3157
3356
|
readonly StoreType: string;
|
|
3158
3357
|
readonly PropagatesNullability: boolean;
|
|
3159
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
3160
|
-
readonly
|
|
3358
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
3359
|
+
readonly [name: string]: unknown | undefined;
|
|
3161
3360
|
AnnotationsToDebugString(indent?: int): string;
|
|
3162
3361
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3163
3362
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3170,10 +3369,12 @@ export interface IReadOnlyDbFunctionParameter$instance extends Microsoft_EntityF
|
|
|
3170
3369
|
export type IReadOnlyDbFunctionParameter = IReadOnlyDbFunctionParameter$instance;
|
|
3171
3370
|
|
|
3172
3371
|
export interface IReadOnlyElementType$instance extends IReadOnlyAnnotatable {
|
|
3372
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyElementType: never;
|
|
3373
|
+
|
|
3173
3374
|
readonly CollectionProperty: IReadOnlyProperty;
|
|
3174
3375
|
readonly ClrType: Type;
|
|
3175
3376
|
readonly IsNullable: boolean;
|
|
3176
|
-
readonly
|
|
3377
|
+
readonly [name: string]: unknown | undefined;
|
|
3177
3378
|
AnnotationsToDebugString(indent?: int): string;
|
|
3178
3379
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3179
3380
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3192,6 +3393,8 @@ export interface IReadOnlyElementType$instance extends Microsoft_EntityFramework
|
|
|
3192
3393
|
export type IReadOnlyElementType = IReadOnlyElementType$instance;
|
|
3193
3394
|
|
|
3194
3395
|
export interface IReadOnlyEntityType$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable {
|
|
3396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityType: never;
|
|
3397
|
+
|
|
3195
3398
|
readonly BaseType: IReadOnlyEntityType | undefined;
|
|
3196
3399
|
readonly Model: IReadOnlyModel;
|
|
3197
3400
|
readonly ContainingEntityType: IReadOnlyEntityType;
|
|
@@ -3199,7 +3402,7 @@ export interface IReadOnlyEntityType$instance extends IReadOnlyTypeBase, IReadOn
|
|
|
3199
3402
|
readonly ClrType: Type;
|
|
3200
3403
|
readonly HasSharedClrType: boolean;
|
|
3201
3404
|
readonly IsPropertyBag: boolean;
|
|
3202
|
-
readonly
|
|
3405
|
+
readonly [name: string]: unknown | undefined;
|
|
3203
3406
|
AnnotationsToDebugString(indent?: int): string;
|
|
3204
3407
|
DisplayName(): string;
|
|
3205
3408
|
DisplayName(omitSharedType: boolean): string;
|
|
@@ -3256,10 +3459,12 @@ export interface IReadOnlyEntityType$instance extends IReadOnlyTypeBase, IReadOn
|
|
|
3256
3459
|
export type IReadOnlyEntityType = IReadOnlyEntityType$instance;
|
|
3257
3460
|
|
|
3258
3461
|
export interface IReadOnlyEntityTypeMappingFragment$instance extends IReadOnlyAnnotatable {
|
|
3462
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityTypeMappingFragment: never;
|
|
3463
|
+
|
|
3259
3464
|
readonly EntityType: IReadOnlyEntityType;
|
|
3260
3465
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3261
3466
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
3262
|
-
readonly
|
|
3467
|
+
readonly [name: string]: unknown | undefined;
|
|
3263
3468
|
AnnotationsToDebugString(indent?: int): string;
|
|
3264
3469
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3265
3470
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3272,6 +3477,8 @@ export interface IReadOnlyEntityTypeMappingFragment$instance extends Microsoft_E
|
|
|
3272
3477
|
export type IReadOnlyEntityTypeMappingFragment = IReadOnlyEntityTypeMappingFragment$instance;
|
|
3273
3478
|
|
|
3274
3479
|
export interface IReadOnlyForeignKey$instance extends IReadOnlyAnnotatable {
|
|
3480
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyForeignKey: never;
|
|
3481
|
+
|
|
3275
3482
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3276
3483
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3277
3484
|
readonly PrincipalEntityType: IReadOnlyEntityType;
|
|
@@ -3283,7 +3490,7 @@ export interface IReadOnlyForeignKey$instance extends IReadOnlyAnnotatable {
|
|
|
3283
3490
|
readonly IsRequiredDependent: boolean;
|
|
3284
3491
|
readonly IsOwnership: boolean;
|
|
3285
3492
|
readonly DeleteBehavior: DeleteBehavior;
|
|
3286
|
-
readonly
|
|
3493
|
+
readonly [name: string]: unknown | undefined;
|
|
3287
3494
|
AnnotationsToDebugString(indent?: int): string;
|
|
3288
3495
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3289
3496
|
GetNavigation(pointsToPrincipal: boolean): IReadOnlyNavigation | undefined;
|
|
@@ -3300,12 +3507,14 @@ export interface IReadOnlyForeignKey$instance extends Microsoft_EntityFrameworkC
|
|
|
3300
3507
|
export type IReadOnlyForeignKey = IReadOnlyForeignKey$instance;
|
|
3301
3508
|
|
|
3302
3509
|
export interface IReadOnlyIndex$instance extends IReadOnlyAnnotatable {
|
|
3510
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyIndex: never;
|
|
3511
|
+
|
|
3303
3512
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3304
|
-
readonly Name: string;
|
|
3513
|
+
readonly Name: string | undefined;
|
|
3305
3514
|
readonly IsUnique: boolean;
|
|
3306
|
-
readonly IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
3515
|
+
readonly IsDescending: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
3307
3516
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3308
|
-
readonly
|
|
3517
|
+
readonly [name: string]: unknown | undefined;
|
|
3309
3518
|
AnnotationsToDebugString(indent?: int): string;
|
|
3310
3519
|
DisplayName(): string;
|
|
3311
3520
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3319,9 +3528,11 @@ export interface IReadOnlyIndex$instance extends Microsoft_EntityFrameworkCore_I
|
|
|
3319
3528
|
export type IReadOnlyIndex = IReadOnlyIndex$instance;
|
|
3320
3529
|
|
|
3321
3530
|
export interface IReadOnlyKey$instance extends IReadOnlyAnnotatable {
|
|
3531
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyKey: never;
|
|
3532
|
+
|
|
3322
3533
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3323
3534
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3324
|
-
readonly
|
|
3535
|
+
readonly [name: string]: unknown | undefined;
|
|
3325
3536
|
AnnotationsToDebugString(indent?: int): string;
|
|
3326
3537
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3327
3538
|
GetReferencingForeignKeys(): IEnumerable<IReadOnlyForeignKey>;
|
|
@@ -3336,8 +3547,10 @@ export interface IReadOnlyKey$instance extends Microsoft_EntityFrameworkCore_Inf
|
|
|
3336
3547
|
export type IReadOnlyKey = IReadOnlyKey$instance;
|
|
3337
3548
|
|
|
3338
3549
|
export interface IReadOnlyModel$instance extends IReadOnlyAnnotatable {
|
|
3550
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyModel: never;
|
|
3551
|
+
|
|
3339
3552
|
readonly ModelId: Guid;
|
|
3340
|
-
readonly
|
|
3553
|
+
readonly [name: string]: unknown | undefined;
|
|
3341
3554
|
AnnotationsToDebugString(indent?: int): string;
|
|
3342
3555
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3343
3556
|
FindEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
@@ -3361,6 +3574,8 @@ export interface IReadOnlyModel$instance extends Microsoft_EntityFrameworkCore_I
|
|
|
3361
3574
|
export type IReadOnlyModel = IReadOnlyModel$instance;
|
|
3362
3575
|
|
|
3363
3576
|
export interface IReadOnlyNavigation$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3577
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigation: never;
|
|
3578
|
+
|
|
3364
3579
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3365
3580
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
3366
3581
|
readonly Inverse: IReadOnlyNavigation;
|
|
@@ -3375,7 +3590,7 @@ export interface IReadOnlyNavigation$instance extends IReadOnlyNavigationBase, I
|
|
|
3375
3590
|
readonly IsCollection: boolean;
|
|
3376
3591
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3377
3592
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3378
|
-
readonly
|
|
3593
|
+
readonly [name: string]: unknown | undefined;
|
|
3379
3594
|
AnnotationsToDebugString(indent?: int): string;
|
|
3380
3595
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3381
3596
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3389,6 +3604,8 @@ export interface IReadOnlyNavigation$instance extends IReadOnlyNavigationBase, I
|
|
|
3389
3604
|
export type IReadOnlyNavigation = IReadOnlyNavigation$instance;
|
|
3390
3605
|
|
|
3391
3606
|
export interface IReadOnlyNavigationBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3607
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigationBase: never;
|
|
3608
|
+
|
|
3392
3609
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3393
3610
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
3394
3611
|
readonly Inverse: IReadOnlyNavigationBase;
|
|
@@ -3401,7 +3618,7 @@ export interface IReadOnlyNavigationBase$instance extends IReadOnlyPropertyBase,
|
|
|
3401
3618
|
readonly IsCollection: boolean;
|
|
3402
3619
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3403
3620
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3404
|
-
readonly
|
|
3621
|
+
readonly [name: string]: unknown | undefined;
|
|
3405
3622
|
AnnotationsToDebugString(indent?: int): string;
|
|
3406
3623
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3407
3624
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3414,6 +3631,8 @@ export interface IReadOnlyNavigationBase$instance extends IReadOnlyPropertyBase,
|
|
|
3414
3631
|
export type IReadOnlyNavigationBase = IReadOnlyNavigationBase$instance;
|
|
3415
3632
|
|
|
3416
3633
|
export interface IReadOnlyProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3634
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyProperty: never;
|
|
3635
|
+
|
|
3417
3636
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3418
3637
|
readonly IsNullable: boolean;
|
|
3419
3638
|
readonly ValueGenerated: ValueGenerated;
|
|
@@ -3426,7 +3645,7 @@ export interface IReadOnlyProperty$instance extends IReadOnlyPropertyBase, IRead
|
|
|
3426
3645
|
readonly IsCollection: boolean;
|
|
3427
3646
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3428
3647
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3429
|
-
readonly
|
|
3648
|
+
readonly [name: string]: unknown | undefined;
|
|
3430
3649
|
AnnotationsToDebugString(indent?: int): string;
|
|
3431
3650
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3432
3651
|
FindContainingPrimaryKey(): IReadOnlyKey | undefined;
|
|
@@ -3454,6 +3673,8 @@ export interface IReadOnlyProperty$instance extends IReadOnlyPropertyBase, IRead
|
|
|
3454
3673
|
export type IReadOnlyProperty = IReadOnlyProperty$instance;
|
|
3455
3674
|
|
|
3456
3675
|
export interface IReadOnlyPropertyBase$instance extends IReadOnlyAnnotatable {
|
|
3676
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
3677
|
+
|
|
3457
3678
|
readonly Name: string;
|
|
3458
3679
|
readonly DeclaringType: IReadOnlyTypeBase;
|
|
3459
3680
|
readonly ClrType: Type;
|
|
@@ -3461,7 +3682,7 @@ export interface IReadOnlyPropertyBase$instance extends IReadOnlyAnnotatable {
|
|
|
3461
3682
|
readonly IsCollection: boolean;
|
|
3462
3683
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3463
3684
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3464
|
-
readonly
|
|
3685
|
+
readonly [name: string]: unknown | undefined;
|
|
3465
3686
|
AnnotationsToDebugString(indent?: int): string;
|
|
3466
3687
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3467
3688
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3476,11 +3697,13 @@ export interface IReadOnlyPropertyBase$instance extends Microsoft_EntityFramewor
|
|
|
3476
3697
|
export type IReadOnlyPropertyBase = IReadOnlyPropertyBase$instance;
|
|
3477
3698
|
|
|
3478
3699
|
export interface IReadOnlyRelationalPropertyOverrides$instance extends IReadOnlyAnnotatable {
|
|
3700
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyRelationalPropertyOverrides: never;
|
|
3701
|
+
|
|
3479
3702
|
readonly Property: IReadOnlyProperty;
|
|
3480
3703
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3481
|
-
readonly ColumnName: string;
|
|
3704
|
+
readonly ColumnName: string | undefined;
|
|
3482
3705
|
readonly IsColumnNameOverridden: boolean;
|
|
3483
|
-
readonly
|
|
3706
|
+
readonly [name: string]: unknown | undefined;
|
|
3484
3707
|
AnnotationsToDebugString(indent?: int): string;
|
|
3485
3708
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3486
3709
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3493,9 +3716,11 @@ export interface IReadOnlyRelationalPropertyOverrides$instance extends Microsoft
|
|
|
3493
3716
|
export type IReadOnlyRelationalPropertyOverrides = IReadOnlyRelationalPropertyOverrides$instance;
|
|
3494
3717
|
|
|
3495
3718
|
export interface IReadOnlySequence$instance extends IReadOnlyAnnotatable {
|
|
3719
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySequence: never;
|
|
3720
|
+
|
|
3496
3721
|
readonly Name: string;
|
|
3497
3722
|
readonly ModelSchema: string | undefined;
|
|
3498
|
-
readonly Schema: string;
|
|
3723
|
+
readonly Schema: string | undefined;
|
|
3499
3724
|
readonly Model: IReadOnlyModel;
|
|
3500
3725
|
readonly StartValue: long;
|
|
3501
3726
|
readonly IncrementBy: int;
|
|
@@ -3503,7 +3728,7 @@ export interface IReadOnlySequence$instance extends IReadOnlyAnnotatable {
|
|
|
3503
3728
|
readonly MaxValue: Nullable<System_Internal.Int64>;
|
|
3504
3729
|
readonly Type: Type;
|
|
3505
3730
|
readonly IsCyclic: boolean;
|
|
3506
|
-
readonly
|
|
3731
|
+
readonly [name: string]: unknown | undefined;
|
|
3507
3732
|
AnnotationsToDebugString(indent?: int): string;
|
|
3508
3733
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3509
3734
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3516,6 +3741,8 @@ export interface IReadOnlySequence$instance extends Microsoft_EntityFrameworkCor
|
|
|
3516
3741
|
export type IReadOnlySequence = IReadOnlySequence$instance;
|
|
3517
3742
|
|
|
3518
3743
|
export interface IReadOnlyServiceProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3744
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyServiceProperty: never;
|
|
3745
|
+
|
|
3519
3746
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3520
3747
|
readonly ParameterBinding: ServiceParameterBinding;
|
|
3521
3748
|
readonly Name: string;
|
|
@@ -3525,7 +3752,7 @@ export interface IReadOnlyServiceProperty$instance extends IReadOnlyPropertyBase
|
|
|
3525
3752
|
readonly IsCollection: boolean;
|
|
3526
3753
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3527
3754
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3528
|
-
readonly
|
|
3755
|
+
readonly [name: string]: unknown | undefined;
|
|
3529
3756
|
AnnotationsToDebugString(indent?: int): string;
|
|
3530
3757
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3531
3758
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3539,6 +3766,8 @@ export interface IReadOnlyServiceProperty$instance extends IReadOnlyPropertyBase
|
|
|
3539
3766
|
export type IReadOnlyServiceProperty = IReadOnlyServiceProperty$instance;
|
|
3540
3767
|
|
|
3541
3768
|
export interface IReadOnlySkipNavigation$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3769
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySkipNavigation: never;
|
|
3770
|
+
|
|
3542
3771
|
readonly JoinEntityType: IReadOnlyEntityType;
|
|
3543
3772
|
readonly Inverse: IReadOnlySkipNavigation;
|
|
3544
3773
|
readonly ForeignKey: IReadOnlyForeignKey;
|
|
@@ -3554,7 +3783,7 @@ export interface IReadOnlySkipNavigation$instance extends IReadOnlyNavigationBas
|
|
|
3554
3783
|
readonly IsCollection: boolean;
|
|
3555
3784
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3556
3785
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3557
|
-
readonly
|
|
3786
|
+
readonly [name: string]: unknown | undefined;
|
|
3558
3787
|
AnnotationsToDebugString(indent?: int): string;
|
|
3559
3788
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3560
3789
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3568,13 +3797,15 @@ export interface IReadOnlySkipNavigation$instance extends IReadOnlyNavigationBas
|
|
|
3568
3797
|
export type IReadOnlySkipNavigation = IReadOnlySkipNavigation$instance;
|
|
3569
3798
|
|
|
3570
3799
|
export interface IReadOnlyStoredProcedure$instance extends IReadOnlyAnnotatable {
|
|
3800
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedure: never;
|
|
3801
|
+
|
|
3571
3802
|
readonly Name: string;
|
|
3572
|
-
readonly Schema: string;
|
|
3803
|
+
readonly Schema: string | undefined;
|
|
3573
3804
|
readonly EntityType: IReadOnlyEntityType;
|
|
3574
3805
|
readonly IsRowsAffectedReturned: boolean;
|
|
3575
3806
|
readonly Parameters: IReadOnlyList<IReadOnlyStoredProcedureParameter>;
|
|
3576
3807
|
readonly ResultColumns: IReadOnlyList<IReadOnlyStoredProcedureResultColumn>;
|
|
3577
|
-
readonly
|
|
3808
|
+
readonly [name: string]: unknown | undefined;
|
|
3578
3809
|
AnnotationsToDebugString(indent?: int): string;
|
|
3579
3810
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3580
3811
|
FindParameter(propertyName: string): IReadOnlyStoredProcedureParameter | undefined;
|
|
@@ -3593,13 +3824,15 @@ export interface IReadOnlyStoredProcedure$instance extends Microsoft_EntityFrame
|
|
|
3593
3824
|
export type IReadOnlyStoredProcedure = IReadOnlyStoredProcedure$instance;
|
|
3594
3825
|
|
|
3595
3826
|
export interface IReadOnlyStoredProcedureParameter$instance extends IReadOnlyAnnotatable {
|
|
3827
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedureParameter: never;
|
|
3828
|
+
|
|
3596
3829
|
readonly StoredProcedure: IReadOnlyStoredProcedure;
|
|
3597
3830
|
readonly Name: string;
|
|
3598
|
-
readonly PropertyName: string;
|
|
3831
|
+
readonly PropertyName: string | undefined;
|
|
3599
3832
|
readonly Direction: ParameterDirection;
|
|
3600
3833
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
3601
3834
|
readonly ForRowsAffected: boolean;
|
|
3602
|
-
readonly
|
|
3835
|
+
readonly [name: string]: unknown | undefined;
|
|
3603
3836
|
AnnotationsToDebugString(indent?: int): string;
|
|
3604
3837
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3605
3838
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3612,11 +3845,13 @@ export interface IReadOnlyStoredProcedureParameter$instance extends Microsoft_En
|
|
|
3612
3845
|
export type IReadOnlyStoredProcedureParameter = IReadOnlyStoredProcedureParameter$instance;
|
|
3613
3846
|
|
|
3614
3847
|
export interface IReadOnlyStoredProcedureResultColumn$instance extends IReadOnlyAnnotatable {
|
|
3848
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedureResultColumn: never;
|
|
3849
|
+
|
|
3615
3850
|
readonly StoredProcedure: IReadOnlyStoredProcedure;
|
|
3616
3851
|
readonly Name: string;
|
|
3617
|
-
readonly PropertyName: string;
|
|
3852
|
+
readonly PropertyName: string | undefined;
|
|
3618
3853
|
readonly ForRowsAffected: boolean;
|
|
3619
|
-
readonly
|
|
3854
|
+
readonly [name: string]: unknown | undefined;
|
|
3620
3855
|
AnnotationsToDebugString(indent?: int): string;
|
|
3621
3856
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3622
3857
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3629,6 +3864,8 @@ export interface IReadOnlyStoredProcedureResultColumn$instance extends Microsoft
|
|
|
3629
3864
|
export type IReadOnlyStoredProcedureResultColumn = IReadOnlyStoredProcedureResultColumn$instance;
|
|
3630
3865
|
|
|
3631
3866
|
export interface IReadOnlyStoreObjectDictionary_1$instance<T> {
|
|
3867
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoreObjectDictionary_1: never;
|
|
3868
|
+
|
|
3632
3869
|
Find(storeObject: StoreObjectIdentifier): T | undefined;
|
|
3633
3870
|
GetValues(): IEnumerable<T>;
|
|
3634
3871
|
}
|
|
@@ -3637,9 +3874,11 @@ export interface IReadOnlyStoreObjectDictionary_1$instance<T> {
|
|
|
3637
3874
|
export type IReadOnlyStoreObjectDictionary_1<T> = IReadOnlyStoreObjectDictionary_1$instance<T>;
|
|
3638
3875
|
|
|
3639
3876
|
export interface IReadOnlyTrigger$instance extends IReadOnlyAnnotatable {
|
|
3877
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTrigger: never;
|
|
3878
|
+
|
|
3640
3879
|
readonly ModelName: string;
|
|
3641
3880
|
readonly EntityType: IReadOnlyEntityType;
|
|
3642
|
-
readonly
|
|
3881
|
+
readonly [name: string]: unknown | undefined;
|
|
3643
3882
|
AnnotationsToDebugString(indent?: int): string;
|
|
3644
3883
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
3645
3884
|
GetAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -3652,6 +3891,8 @@ export interface IReadOnlyTrigger$instance extends Microsoft_EntityFrameworkCore
|
|
|
3652
3891
|
export type IReadOnlyTrigger = IReadOnlyTrigger$instance;
|
|
3653
3892
|
|
|
3654
3893
|
export interface IReadOnlyTypeBase$instance extends IReadOnlyAnnotatable {
|
|
3894
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTypeBase: never;
|
|
3895
|
+
|
|
3655
3896
|
readonly Model: IReadOnlyModel;
|
|
3656
3897
|
readonly ContainingEntityType: IReadOnlyEntityType;
|
|
3657
3898
|
readonly BaseType: IReadOnlyTypeBase | undefined;
|
|
@@ -3659,7 +3900,7 @@ export interface IReadOnlyTypeBase$instance extends IReadOnlyAnnotatable {
|
|
|
3659
3900
|
readonly ClrType: Type;
|
|
3660
3901
|
readonly HasSharedClrType: boolean;
|
|
3661
3902
|
readonly IsPropertyBag: boolean;
|
|
3662
|
-
readonly
|
|
3903
|
+
readonly [name: string]: unknown | undefined;
|
|
3663
3904
|
AnnotationsToDebugString(indent?: int): string;
|
|
3664
3905
|
DisplayName(): string;
|
|
3665
3906
|
DisplayName(omitSharedType: boolean): string;
|
|
@@ -3690,6 +3931,8 @@ export interface IReadOnlyTypeBase$instance extends Microsoft_EntityFrameworkCor
|
|
|
3690
3931
|
export type IReadOnlyTypeBase = IReadOnlyTypeBase$instance;
|
|
3691
3932
|
|
|
3692
3933
|
export interface IRelationalAnnotationProvider$instance {
|
|
3934
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalAnnotationProvider: never;
|
|
3935
|
+
|
|
3693
3936
|
For(checkConstraint: ICheckConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3694
3937
|
For(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3695
3938
|
For(foreignKey: IForeignKeyConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
@@ -3715,6 +3958,8 @@ export interface IRelationalAnnotationProvider$instance {
|
|
|
3715
3958
|
export type IRelationalAnnotationProvider = IRelationalAnnotationProvider$instance;
|
|
3716
3959
|
|
|
3717
3960
|
export interface IRelationalModel$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
3961
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalModel: never;
|
|
3962
|
+
|
|
3718
3963
|
readonly Model: IModel;
|
|
3719
3964
|
readonly Tables: IEnumerable<ITable>;
|
|
3720
3965
|
readonly Views: IEnumerable<IView>;
|
|
@@ -3723,7 +3968,7 @@ export interface IRelationalModel$instance extends IAnnotatable, IReadOnlyAnnota
|
|
|
3723
3968
|
readonly Functions: IEnumerable<IStoreFunction>;
|
|
3724
3969
|
readonly StoredProcedures: IEnumerable<IStoreStoredProcedure>;
|
|
3725
3970
|
readonly Collation: string | undefined;
|
|
3726
|
-
readonly
|
|
3971
|
+
readonly [name: string]: unknown | undefined;
|
|
3727
3972
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3728
3973
|
AnnotationsToDebugString(indent?: int): string;
|
|
3729
3974
|
FindDefaultTable(name: string): TableBase | undefined;
|
|
@@ -3746,11 +3991,13 @@ export interface IRelationalModel$instance extends IAnnotatable, IReadOnlyAnnota
|
|
|
3746
3991
|
export type IRelationalModel = IRelationalModel$instance;
|
|
3747
3992
|
|
|
3748
3993
|
export interface IRelationalPropertyOverrides$instance extends IReadOnlyRelationalPropertyOverrides, IReadOnlyAnnotatable, IAnnotatable {
|
|
3994
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalPropertyOverrides: never;
|
|
3995
|
+
|
|
3749
3996
|
readonly Property: IProperty;
|
|
3750
3997
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3751
|
-
readonly ColumnName: string;
|
|
3998
|
+
readonly ColumnName: string | undefined;
|
|
3752
3999
|
readonly IsColumnNameOverridden: boolean;
|
|
3753
|
-
readonly
|
|
4000
|
+
readonly [name: string]: unknown | undefined;
|
|
3754
4001
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3755
4002
|
AnnotationsToDebugString(indent?: int): string;
|
|
3756
4003
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3766,17 +4013,19 @@ export interface IRelationalPropertyOverrides$instance extends IReadOnlyRelation
|
|
|
3766
4013
|
export type IRelationalPropertyOverrides = IRelationalPropertyOverrides$instance;
|
|
3767
4014
|
|
|
3768
4015
|
export interface ISequence$instance extends IReadOnlySequence, IReadOnlyAnnotatable, IAnnotatable {
|
|
4016
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISequence: never;
|
|
4017
|
+
|
|
3769
4018
|
readonly Model: IModel;
|
|
3770
4019
|
readonly Name: string;
|
|
3771
4020
|
readonly ModelSchema: string | undefined;
|
|
3772
|
-
readonly Schema: string;
|
|
4021
|
+
readonly Schema: string | undefined;
|
|
3773
4022
|
readonly StartValue: long;
|
|
3774
4023
|
readonly IncrementBy: int;
|
|
3775
4024
|
readonly MinValue: Nullable<System_Internal.Int64>;
|
|
3776
4025
|
readonly MaxValue: Nullable<System_Internal.Int64>;
|
|
3777
4026
|
readonly Type: Type;
|
|
3778
4027
|
readonly IsCyclic: boolean;
|
|
3779
|
-
readonly
|
|
4028
|
+
readonly [name: string]: unknown | undefined;
|
|
3780
4029
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3781
4030
|
AnnotationsToDebugString(indent?: int): string;
|
|
3782
4031
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3792,6 +4041,8 @@ export interface ISequence$instance extends IReadOnlySequence, IReadOnlyAnnotata
|
|
|
3792
4041
|
export type ISequence = ISequence$instance;
|
|
3793
4042
|
|
|
3794
4043
|
export interface IServiceProperty$instance extends IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
4044
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IServiceProperty: never;
|
|
4045
|
+
|
|
3795
4046
|
readonly DeclaringEntityType: IEntityType;
|
|
3796
4047
|
readonly ParameterBinding: ServiceParameterBinding;
|
|
3797
4048
|
readonly Name: string;
|
|
@@ -3801,7 +4052,7 @@ export interface IServiceProperty$instance extends IReadOnlyServiceProperty, IRe
|
|
|
3801
4052
|
readonly IsCollection: boolean;
|
|
3802
4053
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3803
4054
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3804
|
-
readonly
|
|
4055
|
+
readonly [name: string]: unknown | undefined;
|
|
3805
4056
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3806
4057
|
AnnotationsToDebugString(indent?: int): string;
|
|
3807
4058
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3825,6 +4076,8 @@ export interface IServiceProperty$instance extends IReadOnlyServiceProperty, IRe
|
|
|
3825
4076
|
export type IServiceProperty = IServiceProperty$instance;
|
|
3826
4077
|
|
|
3827
4078
|
export interface ISkipNavigation$instance extends IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
4079
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISkipNavigation: never;
|
|
4080
|
+
|
|
3828
4081
|
readonly DeclaringEntityType: IEntityType;
|
|
3829
4082
|
readonly TargetEntityType: IEntityType;
|
|
3830
4083
|
readonly JoinEntityType: IEntityType;
|
|
@@ -3840,7 +4093,7 @@ export interface ISkipNavigation$instance extends IReadOnlySkipNavigation, IRead
|
|
|
3840
4093
|
readonly IsCollection: boolean;
|
|
3841
4094
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
3842
4095
|
readonly FieldInfo: FieldInfo | undefined;
|
|
3843
|
-
readonly
|
|
4096
|
+
readonly [name: string]: unknown | undefined;
|
|
3844
4097
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3845
4098
|
AnnotationsToDebugString(indent?: int): string;
|
|
3846
4099
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3865,16 +4118,18 @@ export interface ISkipNavigation$instance extends IReadOnlySkipNavigation, IRead
|
|
|
3865
4118
|
export type ISkipNavigation = ISkipNavigation$instance;
|
|
3866
4119
|
|
|
3867
4120
|
export interface ISqlQuery$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4121
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQuery: never;
|
|
4122
|
+
|
|
3868
4123
|
readonly EntityTypeMappings: IEnumerable<ISqlQueryMapping>;
|
|
3869
4124
|
readonly Columns: IEnumerable<ISqlQueryColumn>;
|
|
3870
4125
|
readonly Sql: string;
|
|
3871
4126
|
readonly Name: string;
|
|
3872
|
-
readonly Schema: string;
|
|
4127
|
+
readonly Schema: string | undefined;
|
|
3873
4128
|
readonly SchemaQualifiedName: string;
|
|
3874
4129
|
readonly Model: IRelationalModel;
|
|
3875
4130
|
readonly IsShared: boolean;
|
|
3876
4131
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
3877
|
-
readonly
|
|
4132
|
+
readonly [name: string]: unknown | undefined;
|
|
3878
4133
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3879
4134
|
AnnotationsToDebugString(indent?: int): string;
|
|
3880
4135
|
FindColumn(property: IProperty): ISqlQueryColumn | undefined;
|
|
@@ -3896,6 +4151,8 @@ export interface ISqlQuery$instance extends ITableBase, IAnnotatable, IReadOnlyA
|
|
|
3896
4151
|
export type ISqlQuery = ISqlQuery$instance;
|
|
3897
4152
|
|
|
3898
4153
|
export interface ISqlQueryColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4154
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumn: never;
|
|
4155
|
+
|
|
3899
4156
|
readonly SqlQuery: ISqlQuery;
|
|
3900
4157
|
readonly PropertyMappings: IReadOnlyList<ISqlQueryColumnMapping>;
|
|
3901
4158
|
readonly Name: string;
|
|
@@ -3905,7 +4162,7 @@ export interface ISqlQueryColumn$instance extends IColumnBase, IAnnotatable, IRe
|
|
|
3905
4162
|
readonly IsNullable: boolean;
|
|
3906
4163
|
readonly Table: ITableBase;
|
|
3907
4164
|
readonly ProviderValueComparer: ValueComparer;
|
|
3908
|
-
readonly
|
|
4165
|
+
readonly [name: string]: unknown | undefined;
|
|
3909
4166
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3910
4167
|
AnnotationsToDebugString(indent?: int): string;
|
|
3911
4168
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -3923,12 +4180,14 @@ export interface ISqlQueryColumn$instance extends IColumnBase, IAnnotatable, IRe
|
|
|
3923
4180
|
export type ISqlQueryColumn = ISqlQueryColumn$instance;
|
|
3924
4181
|
|
|
3925
4182
|
export interface ISqlQueryColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4183
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumnMapping: never;
|
|
4184
|
+
|
|
3926
4185
|
readonly Column: ISqlQueryColumn;
|
|
3927
4186
|
readonly SqlQueryMapping: ISqlQueryMapping;
|
|
3928
4187
|
readonly Property: IProperty;
|
|
3929
4188
|
readonly TypeMapping: RelationalTypeMapping;
|
|
3930
4189
|
readonly TableMapping: ITableMappingBase;
|
|
3931
|
-
readonly
|
|
4190
|
+
readonly [name: string]: unknown | undefined;
|
|
3932
4191
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3933
4192
|
AnnotationsToDebugString(indent?: int): string;
|
|
3934
4193
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3944,6 +4203,8 @@ export interface ISqlQueryColumnMapping$instance extends IColumnMappingBase, IAn
|
|
|
3944
4203
|
export type ISqlQueryColumnMapping = ISqlQueryColumnMapping$instance;
|
|
3945
4204
|
|
|
3946
4205
|
export interface ISqlQueryMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4206
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryMapping: never;
|
|
4207
|
+
|
|
3947
4208
|
IsDefaultSqlQueryMapping: boolean;
|
|
3948
4209
|
readonly SqlQuery: ISqlQuery;
|
|
3949
4210
|
readonly ColumnMappings: IEnumerable<ISqlQueryColumnMapping>;
|
|
@@ -3952,7 +4213,7 @@ export interface ISqlQueryMapping$instance extends ITableMappingBase, IAnnotatab
|
|
|
3952
4213
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
3953
4214
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
3954
4215
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
3955
|
-
readonly
|
|
4216
|
+
readonly [name: string]: unknown | undefined;
|
|
3956
4217
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3957
4218
|
AnnotationsToDebugString(indent?: int): string;
|
|
3958
4219
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -3968,14 +4229,16 @@ export interface ISqlQueryMapping$instance extends ITableMappingBase, IAnnotatab
|
|
|
3968
4229
|
export type ISqlQueryMapping = ISqlQueryMapping$instance;
|
|
3969
4230
|
|
|
3970
4231
|
export interface IStoredProcedure$instance extends IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IAnnotatable {
|
|
4232
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedure: never;
|
|
4233
|
+
|
|
3971
4234
|
readonly Name: string;
|
|
3972
4235
|
readonly EntityType: IEntityType;
|
|
3973
4236
|
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
3974
4237
|
readonly Parameters: IReadOnlyList<IStoredProcedureParameter>;
|
|
3975
4238
|
readonly ResultColumns: IReadOnlyList<IStoredProcedureResultColumn>;
|
|
3976
|
-
readonly Schema: string;
|
|
4239
|
+
readonly Schema: string | undefined;
|
|
3977
4240
|
readonly IsRowsAffectedReturned: boolean;
|
|
3978
|
-
readonly
|
|
4241
|
+
readonly [name: string]: unknown | undefined;
|
|
3979
4242
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
3980
4243
|
AnnotationsToDebugString(indent?: int): string;
|
|
3981
4244
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4002,10 +4265,12 @@ export interface IStoredProcedure$instance extends IReadOnlyStoredProcedure, IRe
|
|
|
4002
4265
|
export type IStoredProcedure = IStoredProcedure$instance;
|
|
4003
4266
|
|
|
4004
4267
|
export interface IStoredProcedureMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4268
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureMapping: never;
|
|
4269
|
+
|
|
4005
4270
|
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
4006
4271
|
readonly StoredProcedure: IStoredProcedure;
|
|
4007
4272
|
readonly StoredProcedureIdentifier: StoreObjectIdentifier;
|
|
4008
|
-
readonly TableMapping: ITableMapping;
|
|
4273
|
+
readonly TableMapping: ITableMapping | undefined;
|
|
4009
4274
|
readonly ParameterMappings: IEnumerable<IStoredProcedureParameterMapping>;
|
|
4010
4275
|
readonly ResultColumnMappings: IEnumerable<IStoredProcedureResultColumnMapping>;
|
|
4011
4276
|
readonly TypeBase: ITypeBase;
|
|
@@ -4014,7 +4279,7 @@ export interface IStoredProcedureMapping$instance extends ITableMappingBase, IAn
|
|
|
4014
4279
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
4015
4280
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
4016
4281
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
4017
|
-
readonly
|
|
4282
|
+
readonly [name: string]: unknown | undefined;
|
|
4018
4283
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4019
4284
|
AnnotationsToDebugString(indent?: int): string;
|
|
4020
4285
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4030,14 +4295,16 @@ export interface IStoredProcedureMapping$instance extends ITableMappingBase, IAn
|
|
|
4030
4295
|
export type IStoredProcedureMapping = IStoredProcedureMapping$instance;
|
|
4031
4296
|
|
|
4032
4297
|
export interface IStoredProcedureParameter$instance extends IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
4298
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureParameter: never;
|
|
4299
|
+
|
|
4033
4300
|
readonly StoredProcedure: IStoredProcedure;
|
|
4034
4301
|
readonly StoreParameter: IStoreStoredProcedureParameter;
|
|
4035
4302
|
readonly Name: string;
|
|
4036
|
-
readonly PropertyName: string;
|
|
4303
|
+
readonly PropertyName: string | undefined;
|
|
4037
4304
|
readonly Direction: ParameterDirection;
|
|
4038
4305
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
4039
4306
|
readonly ForRowsAffected: boolean;
|
|
4040
|
-
readonly
|
|
4307
|
+
readonly [name: string]: unknown | undefined;
|
|
4041
4308
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4042
4309
|
AnnotationsToDebugString(indent?: int): string;
|
|
4043
4310
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4053,6 +4320,8 @@ export interface IStoredProcedureParameter$instance extends IReadOnlyStoredProce
|
|
|
4053
4320
|
export type IStoredProcedureParameter = IStoredProcedureParameter$instance;
|
|
4054
4321
|
|
|
4055
4322
|
export interface IStoredProcedureParameterMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4323
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureParameterMapping: never;
|
|
4324
|
+
|
|
4056
4325
|
readonly StoreParameter: IStoreStoredProcedureParameter;
|
|
4057
4326
|
readonly Parameter: IStoredProcedureParameter;
|
|
4058
4327
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
@@ -4060,7 +4329,7 @@ export interface IStoredProcedureParameterMapping$instance extends IColumnMappin
|
|
|
4060
4329
|
readonly Column: IColumnBase;
|
|
4061
4330
|
readonly TypeMapping: RelationalTypeMapping;
|
|
4062
4331
|
readonly TableMapping: ITableMappingBase;
|
|
4063
|
-
readonly
|
|
4332
|
+
readonly [name: string]: unknown | undefined;
|
|
4064
4333
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4065
4334
|
AnnotationsToDebugString(indent?: int): string;
|
|
4066
4335
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4076,12 +4345,14 @@ export interface IStoredProcedureParameterMapping$instance extends IColumnMappin
|
|
|
4076
4345
|
export type IStoredProcedureParameterMapping = IStoredProcedureParameterMapping$instance;
|
|
4077
4346
|
|
|
4078
4347
|
export interface IStoredProcedureResultColumn$instance extends IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IAnnotatable {
|
|
4348
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureResultColumn: never;
|
|
4349
|
+
|
|
4079
4350
|
readonly StoredProcedure: IStoredProcedure;
|
|
4080
4351
|
readonly StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
4081
4352
|
readonly Name: string;
|
|
4082
|
-
readonly PropertyName: string;
|
|
4353
|
+
readonly PropertyName: string | undefined;
|
|
4083
4354
|
readonly ForRowsAffected: boolean;
|
|
4084
|
-
readonly
|
|
4355
|
+
readonly [name: string]: unknown | undefined;
|
|
4085
4356
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4086
4357
|
AnnotationsToDebugString(indent?: int): string;
|
|
4087
4358
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4097,6 +4368,8 @@ export interface IStoredProcedureResultColumn$instance extends IReadOnlyStoredPr
|
|
|
4097
4368
|
export type IStoredProcedureResultColumn = IStoredProcedureResultColumn$instance;
|
|
4098
4369
|
|
|
4099
4370
|
export interface IStoredProcedureResultColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4371
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureResultColumnMapping: never;
|
|
4372
|
+
|
|
4100
4373
|
readonly StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
4101
4374
|
readonly ResultColumn: IStoredProcedureResultColumn;
|
|
4102
4375
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
@@ -4104,7 +4377,7 @@ export interface IStoredProcedureResultColumnMapping$instance extends IColumnMap
|
|
|
4104
4377
|
readonly Column: IColumnBase;
|
|
4105
4378
|
readonly TypeMapping: RelationalTypeMapping;
|
|
4106
4379
|
readonly TableMapping: ITableMappingBase;
|
|
4107
|
-
readonly
|
|
4380
|
+
readonly [name: string]: unknown | undefined;
|
|
4108
4381
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4109
4382
|
AnnotationsToDebugString(indent?: int): string;
|
|
4110
4383
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4120,19 +4393,21 @@ export interface IStoredProcedureResultColumnMapping$instance extends IColumnMap
|
|
|
4120
4393
|
export type IStoredProcedureResultColumnMapping = IStoredProcedureResultColumnMapping$instance;
|
|
4121
4394
|
|
|
4122
4395
|
export interface IStoreFunction$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreFunction: never;
|
|
4397
|
+
|
|
4123
4398
|
readonly DbFunctions: IEnumerable<IDbFunction>;
|
|
4124
4399
|
readonly IsBuiltIn: boolean;
|
|
4125
4400
|
readonly Parameters: IEnumerable<IStoreFunctionParameter>;
|
|
4126
|
-
readonly ReturnType: string;
|
|
4401
|
+
readonly ReturnType: string | undefined;
|
|
4127
4402
|
readonly EntityTypeMappings: IEnumerable<IFunctionMapping>;
|
|
4128
4403
|
readonly Columns: IEnumerable<IFunctionColumn>;
|
|
4129
4404
|
readonly Name: string;
|
|
4130
|
-
readonly Schema: string;
|
|
4405
|
+
readonly Schema: string | undefined;
|
|
4131
4406
|
readonly SchemaQualifiedName: string;
|
|
4132
4407
|
readonly Model: IRelationalModel;
|
|
4133
4408
|
readonly IsShared: boolean;
|
|
4134
4409
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4135
|
-
readonly
|
|
4410
|
+
readonly [name: string]: unknown | undefined;
|
|
4136
4411
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4137
4412
|
AnnotationsToDebugString(indent?: int): string;
|
|
4138
4413
|
FindColumn(property: IProperty): IFunctionColumn | undefined;
|
|
@@ -4154,12 +4429,14 @@ export interface IStoreFunction$instance extends ITableBase, IAnnotatable, IRead
|
|
|
4154
4429
|
export type IStoreFunction = IStoreFunction$instance;
|
|
4155
4430
|
|
|
4156
4431
|
export interface IStoreFunctionParameter$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4432
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreFunctionParameter: never;
|
|
4433
|
+
|
|
4157
4434
|
readonly Function: IStoreFunction;
|
|
4158
4435
|
readonly DbFunctionParameters: IEnumerable<IDbFunctionParameter>;
|
|
4159
4436
|
readonly Name: string;
|
|
4160
4437
|
readonly StoreType: string;
|
|
4161
4438
|
readonly Type: string;
|
|
4162
|
-
readonly
|
|
4439
|
+
readonly [name: string]: unknown | undefined;
|
|
4163
4440
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4164
4441
|
AnnotationsToDebugString(indent?: int): string;
|
|
4165
4442
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4175,19 +4452,21 @@ export interface IStoreFunctionParameter$instance extends IAnnotatable, IReadOnl
|
|
|
4175
4452
|
export type IStoreFunctionParameter = IStoreFunctionParameter$instance;
|
|
4176
4453
|
|
|
4177
4454
|
export interface IStoreStoredProcedure$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4455
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedure: never;
|
|
4456
|
+
|
|
4178
4457
|
readonly StoredProcedures: IEnumerable<IStoredProcedure>;
|
|
4179
4458
|
readonly EntityTypeMappings: IEnumerable<IStoredProcedureMapping>;
|
|
4180
4459
|
readonly ReturnValue: IStoreStoredProcedureReturnValue | undefined;
|
|
4181
4460
|
readonly Parameters: IReadOnlyList<IStoreStoredProcedureParameter>;
|
|
4182
4461
|
readonly ResultColumns: IEnumerable<IStoreStoredProcedureResultColumn>;
|
|
4183
4462
|
readonly Name: string;
|
|
4184
|
-
readonly Schema: string;
|
|
4463
|
+
readonly Schema: string | undefined;
|
|
4185
4464
|
readonly SchemaQualifiedName: string;
|
|
4186
4465
|
readonly Model: IRelationalModel;
|
|
4187
4466
|
readonly IsShared: boolean;
|
|
4188
4467
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4189
4468
|
readonly Columns: IEnumerable<IColumnBase>;
|
|
4190
|
-
readonly
|
|
4469
|
+
readonly [name: string]: unknown | undefined;
|
|
4191
4470
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4192
4471
|
AnnotationsToDebugString(indent?: int): string;
|
|
4193
4472
|
FindColumn(property: IProperty): IColumnBase | undefined;
|
|
@@ -4211,6 +4490,8 @@ export interface IStoreStoredProcedure$instance extends ITableBase, IAnnotatable
|
|
|
4211
4490
|
export type IStoreStoredProcedure = IStoreStoredProcedure$instance;
|
|
4212
4491
|
|
|
4213
4492
|
export interface IStoreStoredProcedureParameter$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4493
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureParameter: never;
|
|
4494
|
+
|
|
4214
4495
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4215
4496
|
readonly PropertyMappings: IReadOnlyList<IStoredProcedureParameterMapping>;
|
|
4216
4497
|
readonly Direction: ParameterDirection;
|
|
@@ -4222,7 +4503,7 @@ export interface IStoreStoredProcedureParameter$instance extends IColumnBase, IA
|
|
|
4222
4503
|
readonly IsNullable: boolean;
|
|
4223
4504
|
readonly Table: ITableBase;
|
|
4224
4505
|
readonly ProviderValueComparer: ValueComparer;
|
|
4225
|
-
readonly
|
|
4506
|
+
readonly [name: string]: unknown | undefined;
|
|
4226
4507
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4227
4508
|
AnnotationsToDebugString(indent?: int): string;
|
|
4228
4509
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -4240,6 +4521,8 @@ export interface IStoreStoredProcedureParameter$instance extends IColumnBase, IA
|
|
|
4240
4521
|
export type IStoreStoredProcedureParameter = IStoreStoredProcedureParameter$instance;
|
|
4241
4522
|
|
|
4242
4523
|
export interface IStoreStoredProcedureResultColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4524
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureResultColumn: never;
|
|
4525
|
+
|
|
4243
4526
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4244
4527
|
readonly PropertyMappings: IReadOnlyList<IStoredProcedureResultColumnMapping>;
|
|
4245
4528
|
readonly Position: int;
|
|
@@ -4250,7 +4533,7 @@ export interface IStoreStoredProcedureResultColumn$instance extends IColumnBase,
|
|
|
4250
4533
|
readonly IsNullable: boolean;
|
|
4251
4534
|
readonly Table: ITableBase;
|
|
4252
4535
|
readonly ProviderValueComparer: ValueComparer;
|
|
4253
|
-
readonly
|
|
4536
|
+
readonly [name: string]: unknown | undefined;
|
|
4254
4537
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4255
4538
|
AnnotationsToDebugString(indent?: int): string;
|
|
4256
4539
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -4268,6 +4551,8 @@ export interface IStoreStoredProcedureResultColumn$instance extends IColumnBase,
|
|
|
4268
4551
|
export type IStoreStoredProcedureResultColumn = IStoreStoredProcedureResultColumn$instance;
|
|
4269
4552
|
|
|
4270
4553
|
export interface IStoreStoredProcedureReturnValue$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4554
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureReturnValue: never;
|
|
4555
|
+
|
|
4271
4556
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4272
4557
|
readonly Name: string;
|
|
4273
4558
|
readonly StoreType: string;
|
|
@@ -4277,7 +4562,7 @@ export interface IStoreStoredProcedureReturnValue$instance extends IColumnBase,
|
|
|
4277
4562
|
readonly Table: ITableBase;
|
|
4278
4563
|
readonly PropertyMappings: IReadOnlyList<IColumnMappingBase>;
|
|
4279
4564
|
readonly ProviderValueComparer: ValueComparer;
|
|
4280
|
-
readonly
|
|
4565
|
+
readonly [name: string]: unknown | undefined;
|
|
4281
4566
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4282
4567
|
AnnotationsToDebugString(indent?: int): string;
|
|
4283
4568
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -4294,6 +4579,8 @@ export interface IStoreStoredProcedureReturnValue$instance extends IColumnBase,
|
|
|
4294
4579
|
export type IStoreStoredProcedureReturnValue = IStoreStoredProcedureReturnValue$instance;
|
|
4295
4580
|
|
|
4296
4581
|
export interface ITable$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4582
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITable: never;
|
|
4583
|
+
|
|
4297
4584
|
readonly EntityTypeMappings: IEnumerable<ITableMapping>;
|
|
4298
4585
|
readonly Columns: IEnumerable<IColumn>;
|
|
4299
4586
|
readonly IsExcludedFromMigrations: boolean;
|
|
@@ -4306,12 +4593,12 @@ export interface ITable$instance extends ITableBase, IAnnotatable, IReadOnlyAnno
|
|
|
4306
4593
|
readonly Triggers: IEnumerable<ITrigger>;
|
|
4307
4594
|
readonly Comment: string | undefined;
|
|
4308
4595
|
readonly Name: string;
|
|
4309
|
-
readonly Schema: string;
|
|
4596
|
+
readonly Schema: string | undefined;
|
|
4310
4597
|
readonly SchemaQualifiedName: string;
|
|
4311
4598
|
readonly Model: IRelationalModel;
|
|
4312
4599
|
readonly IsShared: boolean;
|
|
4313
4600
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4314
|
-
readonly
|
|
4601
|
+
readonly [name: string]: unknown | undefined;
|
|
4315
4602
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4316
4603
|
AnnotationsToDebugString(indent?: int): string;
|
|
4317
4604
|
FindColumn(property: IProperty): IColumn | undefined;
|
|
@@ -4333,15 +4620,17 @@ export interface ITable$instance extends ITableBase, IAnnotatable, IReadOnlyAnno
|
|
|
4333
4620
|
export type ITable = ITable$instance;
|
|
4334
4621
|
|
|
4335
4622
|
export interface ITableBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4623
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableBase: never;
|
|
4624
|
+
|
|
4336
4625
|
readonly Name: string;
|
|
4337
|
-
readonly Schema: string;
|
|
4626
|
+
readonly Schema: string | undefined;
|
|
4338
4627
|
readonly SchemaQualifiedName: string;
|
|
4339
4628
|
readonly Model: IRelationalModel;
|
|
4340
4629
|
readonly IsShared: boolean;
|
|
4341
4630
|
readonly EntityTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4342
4631
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4343
4632
|
readonly Columns: IEnumerable<IColumnBase>;
|
|
4344
|
-
readonly
|
|
4633
|
+
readonly [name: string]: unknown | undefined;
|
|
4345
4634
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4346
4635
|
AnnotationsToDebugString(indent?: int): string;
|
|
4347
4636
|
FindColumn(property: IProperty): IColumnBase | undefined;
|
|
@@ -4361,14 +4650,16 @@ export interface ITableBase$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
4361
4650
|
export type ITableBase = ITableBase$instance;
|
|
4362
4651
|
|
|
4363
4652
|
export interface ITableIndex$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4653
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableIndex: never;
|
|
4654
|
+
|
|
4364
4655
|
readonly Name: string;
|
|
4365
4656
|
readonly MappedIndexes: IEnumerable<IIndex>;
|
|
4366
4657
|
readonly Table: ITable;
|
|
4367
4658
|
readonly Columns: IReadOnlyList<IColumn>;
|
|
4368
4659
|
readonly IsUnique: boolean;
|
|
4369
|
-
readonly IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
4660
|
+
readonly IsDescending: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
4370
4661
|
readonly Filter: string | undefined;
|
|
4371
|
-
readonly
|
|
4662
|
+
readonly [name: string]: unknown | undefined;
|
|
4372
4663
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4373
4664
|
AnnotationsToDebugString(indent?: int): string;
|
|
4374
4665
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4384,6 +4675,8 @@ export interface ITableIndex$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
4384
4675
|
export type ITableIndex = ITableIndex$instance;
|
|
4385
4676
|
|
|
4386
4677
|
export interface ITableMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableMapping: never;
|
|
4679
|
+
|
|
4387
4680
|
readonly Table: ITable;
|
|
4388
4681
|
readonly ColumnMappings: IEnumerable<IColumnMapping>;
|
|
4389
4682
|
readonly InsertStoredProcedureMapping: IStoredProcedureMapping | undefined;
|
|
@@ -4393,7 +4686,7 @@ export interface ITableMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4393
4686
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
4394
4687
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
4395
4688
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
4396
|
-
readonly
|
|
4689
|
+
readonly [name: string]: unknown | undefined;
|
|
4397
4690
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4398
4691
|
AnnotationsToDebugString(indent?: int): string;
|
|
4399
4692
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4409,13 +4702,15 @@ export interface ITableMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4409
4702
|
export type ITableMapping = ITableMapping$instance;
|
|
4410
4703
|
|
|
4411
4704
|
export interface ITableMappingBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4705
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableMappingBase: never;
|
|
4706
|
+
|
|
4412
4707
|
readonly TypeBase: ITypeBase;
|
|
4413
4708
|
readonly Table: ITableBase;
|
|
4414
4709
|
readonly ColumnMappings: IEnumerable<IColumnMappingBase>;
|
|
4415
4710
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
4416
4711
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
4417
4712
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
4418
|
-
readonly
|
|
4713
|
+
readonly [name: string]: unknown | undefined;
|
|
4419
4714
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4420
4715
|
AnnotationsToDebugString(indent?: int): string;
|
|
4421
4716
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4431,9 +4726,11 @@ export interface ITableMappingBase$instance extends IAnnotatable, IReadOnlyAnnot
|
|
|
4431
4726
|
export type ITableMappingBase = ITableMappingBase$instance;
|
|
4432
4727
|
|
|
4433
4728
|
export interface ITrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatable, IAnnotatable {
|
|
4729
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITrigger: never;
|
|
4730
|
+
|
|
4434
4731
|
readonly EntityType: IEntityType;
|
|
4435
4732
|
readonly ModelName: string;
|
|
4436
|
-
readonly
|
|
4733
|
+
readonly [name: string]: unknown | undefined;
|
|
4437
4734
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4438
4735
|
AnnotationsToDebugString(indent?: int): string;
|
|
4439
4736
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4449,6 +4746,8 @@ export interface ITrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatabl
|
|
|
4449
4746
|
export type ITrigger = ITrigger$instance;
|
|
4450
4747
|
|
|
4451
4748
|
export interface ITypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
4749
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeBase: never;
|
|
4750
|
+
|
|
4452
4751
|
readonly Model: IModel;
|
|
4453
4752
|
readonly ContainingEntityType: IEntityType;
|
|
4454
4753
|
readonly BaseType: ITypeBase | undefined;
|
|
@@ -4457,7 +4756,7 @@ export interface ITypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotata
|
|
|
4457
4756
|
readonly ClrType: Type;
|
|
4458
4757
|
readonly HasSharedClrType: boolean;
|
|
4459
4758
|
readonly IsPropertyBag: boolean;
|
|
4460
|
-
readonly
|
|
4759
|
+
readonly [name: string]: unknown | undefined;
|
|
4461
4760
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4462
4761
|
AnnotationsToDebugString(indent?: int): string;
|
|
4463
4762
|
DisplayName(): string;
|
|
@@ -4500,8 +4799,10 @@ export interface ITypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotata
|
|
|
4500
4799
|
export type ITypeBase = ITypeBase$instance;
|
|
4501
4800
|
|
|
4502
4801
|
export interface ITypeMappingConfiguration$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4802
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeMappingConfiguration: never;
|
|
4803
|
+
|
|
4503
4804
|
readonly ClrType: Type;
|
|
4504
|
-
readonly
|
|
4805
|
+
readonly [name: string]: unknown | undefined;
|
|
4505
4806
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4506
4807
|
AnnotationsToDebugString(indent?: int): string;
|
|
4507
4808
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4519,11 +4820,13 @@ export interface ITypeMappingConfiguration$instance extends IAnnotatable, IReadO
|
|
|
4519
4820
|
export type ITypeMappingConfiguration = ITypeMappingConfiguration$instance;
|
|
4520
4821
|
|
|
4521
4822
|
export interface IUniqueConstraint$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4823
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IUniqueConstraint: never;
|
|
4824
|
+
|
|
4522
4825
|
readonly Name: string;
|
|
4523
4826
|
readonly MappedKeys: IEnumerable<IKey>;
|
|
4524
4827
|
readonly Table: ITable;
|
|
4525
4828
|
readonly Columns: IReadOnlyList<IColumn>;
|
|
4526
|
-
readonly
|
|
4829
|
+
readonly [name: string]: unknown | undefined;
|
|
4527
4830
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4528
4831
|
AnnotationsToDebugString(indent?: int): string;
|
|
4529
4832
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4540,16 +4843,18 @@ export interface IUniqueConstraint$instance extends IAnnotatable, IReadOnlyAnnot
|
|
|
4540
4843
|
export type IUniqueConstraint = IUniqueConstraint$instance;
|
|
4541
4844
|
|
|
4542
4845
|
export interface IView$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4846
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IView: never;
|
|
4847
|
+
|
|
4543
4848
|
readonly EntityTypeMappings: IEnumerable<IViewMapping>;
|
|
4544
4849
|
readonly Columns: IEnumerable<IViewColumn>;
|
|
4545
4850
|
readonly ViewDefinitionSql: string | undefined;
|
|
4546
4851
|
readonly Name: string;
|
|
4547
|
-
readonly Schema: string;
|
|
4852
|
+
readonly Schema: string | undefined;
|
|
4548
4853
|
readonly SchemaQualifiedName: string;
|
|
4549
4854
|
readonly Model: IRelationalModel;
|
|
4550
4855
|
readonly IsShared: boolean;
|
|
4551
4856
|
readonly ComplexTypeMappings: IEnumerable<ITableMappingBase>;
|
|
4552
|
-
readonly
|
|
4857
|
+
readonly [name: string]: unknown | undefined;
|
|
4553
4858
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4554
4859
|
AnnotationsToDebugString(indent?: int): string;
|
|
4555
4860
|
FindColumn(property: IProperty): IColumnBase | undefined;
|
|
@@ -4571,6 +4876,8 @@ export interface IView$instance extends ITableBase, IAnnotatable, IReadOnlyAnnot
|
|
|
4571
4876
|
export type IView = IView$instance;
|
|
4572
4877
|
|
|
4573
4878
|
export interface IViewColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4879
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumn: never;
|
|
4880
|
+
|
|
4574
4881
|
readonly View: IView;
|
|
4575
4882
|
readonly PropertyMappings: IReadOnlyList<IViewColumnMapping>;
|
|
4576
4883
|
readonly Name: string;
|
|
@@ -4580,7 +4887,7 @@ export interface IViewColumn$instance extends IColumnBase, IAnnotatable, IReadOn
|
|
|
4580
4887
|
readonly IsNullable: boolean;
|
|
4581
4888
|
readonly Table: ITableBase;
|
|
4582
4889
|
readonly ProviderValueComparer: ValueComparer;
|
|
4583
|
-
readonly
|
|
4890
|
+
readonly [name: string]: unknown | undefined;
|
|
4584
4891
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4585
4892
|
AnnotationsToDebugString(indent?: int): string;
|
|
4586
4893
|
FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
|
|
@@ -4598,12 +4905,14 @@ export interface IViewColumn$instance extends IColumnBase, IAnnotatable, IReadOn
|
|
|
4598
4905
|
export type IViewColumn = IViewColumn$instance;
|
|
4599
4906
|
|
|
4600
4907
|
export interface IViewColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4908
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumnMapping: never;
|
|
4909
|
+
|
|
4601
4910
|
readonly Column: IViewColumn;
|
|
4602
4911
|
readonly ViewMapping: IViewMapping;
|
|
4603
4912
|
readonly Property: IProperty;
|
|
4604
4913
|
readonly TypeMapping: RelationalTypeMapping;
|
|
4605
4914
|
readonly TableMapping: ITableMappingBase;
|
|
4606
|
-
readonly
|
|
4915
|
+
readonly [name: string]: unknown | undefined;
|
|
4607
4916
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4608
4917
|
AnnotationsToDebugString(indent?: int): string;
|
|
4609
4918
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4619,6 +4928,8 @@ export interface IViewColumnMapping$instance extends IColumnMappingBase, IAnnota
|
|
|
4619
4928
|
export type IViewColumnMapping = IViewColumnMapping$instance;
|
|
4620
4929
|
|
|
4621
4930
|
export interface IViewMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4931
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewMapping: never;
|
|
4932
|
+
|
|
4622
4933
|
readonly View: IView;
|
|
4623
4934
|
readonly ColumnMappings: IEnumerable<IViewColumnMapping>;
|
|
4624
4935
|
readonly TypeBase: ITypeBase;
|
|
@@ -4626,7 +4937,7 @@ export interface IViewMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4626
4937
|
readonly IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
4627
4938
|
readonly IsSplitEntityTypePrincipal: Nullable<System_Internal.Boolean>;
|
|
4628
4939
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
4629
|
-
readonly
|
|
4940
|
+
readonly [name: string]: unknown | undefined;
|
|
4630
4941
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4631
4942
|
AnnotationsToDebugString(indent?: int): string;
|
|
4632
4943
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4642,8 +4953,10 @@ export interface IViewMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4642
4953
|
export type IViewMapping = IViewMapping$instance;
|
|
4643
4954
|
|
|
4644
4955
|
export interface MemberIdentity$instance {
|
|
4956
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4957
|
+
|
|
4645
4958
|
readonly MemberInfo: MemberInfo | undefined;
|
|
4646
|
-
readonly Name: string;
|
|
4959
|
+
readonly Name: string | undefined;
|
|
4647
4960
|
Equals(obj: unknown): boolean;
|
|
4648
4961
|
Equals(other: MemberIdentity): boolean;
|
|
4649
4962
|
GetHashCode(): int;
|
|
@@ -4680,6 +4993,9 @@ export const ParameterBindingInfo: {
|
|
|
4680
4993
|
export type ParameterBindingInfo = ParameterBindingInfo$instance;
|
|
4681
4994
|
|
|
4682
4995
|
export interface StoreObjectIdentifier$instance {
|
|
4996
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4997
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4998
|
+
|
|
4683
4999
|
readonly Name: string;
|
|
4684
5000
|
readonly Schema: string | undefined;
|
|
4685
5001
|
readonly StoreObjectType: StoreObjectType;
|
|
@@ -4708,12 +5024,10 @@ export const StoreObjectIdentifier: {
|
|
|
4708
5024
|
|
|
4709
5025
|
export type StoreObjectIdentifier = StoreObjectIdentifier$instance;
|
|
4710
5026
|
|
|
4711
|
-
export
|
|
4712
|
-
|
|
4713
|
-
}
|
|
4714
|
-
|
|
5027
|
+
export interface AdHocMapper$instance {
|
|
5028
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
|
|
4715
5029
|
|
|
4716
|
-
|
|
5030
|
+
readonly Dependencies: AdHocMapperDependencies;
|
|
4717
5031
|
BuildConventionSet(): ConventionSet;
|
|
4718
5032
|
GetOrAddEntityType(clrType: Type): RuntimeEntityType;
|
|
4719
5033
|
}
|
|
@@ -4734,6 +5048,8 @@ export type AdHocMapper = AdHocMapper$instance & __AdHocMapper$views;
|
|
|
4734
5048
|
|
|
4735
5049
|
|
|
4736
5050
|
export interface AdHocMapperDependencies$instance {
|
|
5051
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5052
|
+
|
|
4737
5053
|
Model: IModel;
|
|
4738
5054
|
ModelCreationDependencies: ModelCreationDependencies;
|
|
4739
5055
|
_Clone_$(): AdHocMapperDependencies;
|
|
@@ -4826,6 +5142,9 @@ export const DependencyInjectionParameterBinding: {
|
|
|
4826
5142
|
export type DependencyInjectionParameterBinding = DependencyInjectionParameterBinding$instance;
|
|
4827
5143
|
|
|
4828
5144
|
export interface EntityTypeFullNameComparer$instance {
|
|
5145
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
5146
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
5147
|
+
|
|
4829
5148
|
Compare(x: IReadOnlyEntityType, y: IReadOnlyEntityType): int;
|
|
4830
5149
|
Equals(x: IReadOnlyEntityType, y: IReadOnlyEntityType): boolean;
|
|
4831
5150
|
GetHashCode(obj: IReadOnlyEntityType): int;
|
|
@@ -4833,7 +5152,6 @@ export interface EntityTypeFullNameComparer$instance {
|
|
|
4833
5152
|
|
|
4834
5153
|
|
|
4835
5154
|
export const EntityTypeFullNameComparer: {
|
|
4836
|
-
new(): EntityTypeFullNameComparer;
|
|
4837
5155
|
readonly Instance: EntityTypeFullNameComparer;
|
|
4838
5156
|
};
|
|
4839
5157
|
|
|
@@ -4870,6 +5188,9 @@ export const FactoryMethodBinding: {
|
|
|
4870
5188
|
export type FactoryMethodBinding = FactoryMethodBinding$instance;
|
|
4871
5189
|
|
|
4872
5190
|
export interface ForeignKeyComparer$instance {
|
|
5191
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
5192
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
5193
|
+
|
|
4873
5194
|
Compare(x: IReadOnlyForeignKey, y: IReadOnlyForeignKey): int;
|
|
4874
5195
|
Equals(x: IReadOnlyForeignKey, y: IReadOnlyForeignKey): boolean;
|
|
4875
5196
|
GetHashCode(obj: IReadOnlyForeignKey): int;
|
|
@@ -4877,7 +5198,6 @@ export interface ForeignKeyComparer$instance {
|
|
|
4877
5198
|
|
|
4878
5199
|
|
|
4879
5200
|
export const ForeignKeyComparer: {
|
|
4880
|
-
new(): ForeignKeyComparer;
|
|
4881
5201
|
readonly Instance: ForeignKeyComparer;
|
|
4882
5202
|
};
|
|
4883
5203
|
|
|
@@ -4885,6 +5205,9 @@ export const ForeignKeyComparer: {
|
|
|
4885
5205
|
export type ForeignKeyComparer = ForeignKeyComparer$instance;
|
|
4886
5206
|
|
|
4887
5207
|
export interface IndexComparer$instance {
|
|
5208
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
5209
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
5210
|
+
|
|
4888
5211
|
Compare(x: IReadOnlyIndex, y: IReadOnlyIndex): int;
|
|
4889
5212
|
Equals(x: IReadOnlyIndex, y: IReadOnlyIndex): boolean;
|
|
4890
5213
|
GetHashCode(obj: IReadOnlyIndex): int;
|
|
@@ -4892,7 +5215,6 @@ export interface IndexComparer$instance {
|
|
|
4892
5215
|
|
|
4893
5216
|
|
|
4894
5217
|
export const IndexComparer: {
|
|
4895
|
-
new(): IndexComparer;
|
|
4896
5218
|
readonly Instance: IndexComparer;
|
|
4897
5219
|
};
|
|
4898
5220
|
|
|
@@ -4907,14 +5229,16 @@ export interface InstantiationBinding$instance {
|
|
|
4907
5229
|
}
|
|
4908
5230
|
|
|
4909
5231
|
|
|
4910
|
-
export const InstantiationBinding: {
|
|
4911
|
-
new(parameterBindings: IReadOnlyList<ParameterBinding>): InstantiationBinding;
|
|
5232
|
+
export const InstantiationBinding: (abstract new(parameterBindings: IReadOnlyList<ParameterBinding>) => InstantiationBinding) & {
|
|
4912
5233
|
};
|
|
4913
5234
|
|
|
4914
5235
|
|
|
4915
5236
|
export type InstantiationBinding = InstantiationBinding$instance;
|
|
4916
5237
|
|
|
4917
5238
|
export interface KeyComparer$instance {
|
|
5239
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
5240
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
5241
|
+
|
|
4918
5242
|
Compare(x: IReadOnlyKey, y: IReadOnlyKey): int;
|
|
4919
5243
|
Equals(x: IReadOnlyKey, y: IReadOnlyKey): boolean;
|
|
4920
5244
|
GetHashCode(obj: IReadOnlyKey): int;
|
|
@@ -4922,19 +5246,16 @@ export interface KeyComparer$instance {
|
|
|
4922
5246
|
|
|
4923
5247
|
|
|
4924
5248
|
export const KeyComparer: {
|
|
4925
|
-
new(): KeyComparer;
|
|
4926
5249
|
readonly Instance: KeyComparer;
|
|
4927
5250
|
};
|
|
4928
5251
|
|
|
4929
5252
|
|
|
4930
5253
|
export type KeyComparer = KeyComparer$instance;
|
|
4931
5254
|
|
|
4932
|
-
export
|
|
4933
|
-
|
|
4934
|
-
}
|
|
5255
|
+
export interface LazyLoaderParameterBindingFactory$instance extends ServiceParameterBindingFactory$instance {
|
|
5256
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
4935
5257
|
|
|
4936
|
-
|
|
4937
|
-
export interface LazyLoaderParameterBindingFactory$instance extends LazyLoaderParameterBindingFactory$protected, ServiceParameterBindingFactory$instance {
|
|
5258
|
+
readonly Dependencies: LazyLoaderParameterBindingFactoryDependencies;
|
|
4938
5259
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
4939
5260
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
4940
5261
|
Bind(entityType: IReadOnlyEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -4955,6 +5276,8 @@ export type LazyLoaderParameterBindingFactory = LazyLoaderParameterBindingFactor
|
|
|
4955
5276
|
|
|
4956
5277
|
|
|
4957
5278
|
export interface LazyLoaderParameterBindingFactoryDependencies$instance {
|
|
5279
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5280
|
+
|
|
4958
5281
|
_Clone_$(): LazyLoaderParameterBindingFactoryDependencies;
|
|
4959
5282
|
Equals(obj: unknown): boolean;
|
|
4960
5283
|
Equals(other: LazyLoaderParameterBindingFactoryDependencies): boolean;
|
|
@@ -4991,8 +5314,7 @@ export interface ParameterBinding$instance {
|
|
|
4991
5314
|
}
|
|
4992
5315
|
|
|
4993
5316
|
|
|
4994
|
-
export const ParameterBinding: {
|
|
4995
|
-
new(parameterType: Type, consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
5317
|
+
export const ParameterBinding: (abstract new(parameterType: Type, consumedProperties: IPropertyBase[]) => ParameterBinding) & {
|
|
4996
5318
|
};
|
|
4997
5319
|
|
|
4998
5320
|
|
|
@@ -5011,12 +5333,10 @@ export const PropertyParameterBinding: {
|
|
|
5011
5333
|
|
|
5012
5334
|
export type PropertyParameterBinding = PropertyParameterBinding$instance;
|
|
5013
5335
|
|
|
5014
|
-
export
|
|
5015
|
-
|
|
5016
|
-
}
|
|
5017
|
-
|
|
5336
|
+
export interface RelationalAdHocMapper$instance extends AdHocMapper$instance {
|
|
5337
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
|
|
5018
5338
|
|
|
5019
|
-
|
|
5339
|
+
readonly RelationalDependencies: RelationalAdHocMapperDependencies;
|
|
5020
5340
|
BuildConventionSet(): ConventionSet;
|
|
5021
5341
|
GetOrAddEntityType(clrType: Type): RuntimeEntityType;
|
|
5022
5342
|
}
|
|
@@ -5035,6 +5355,8 @@ export type RelationalAdHocMapper = RelationalAdHocMapper$instance & __Relationa
|
|
|
5035
5355
|
|
|
5036
5356
|
|
|
5037
5357
|
export interface RelationalAdHocMapperDependencies$instance {
|
|
5358
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5359
|
+
|
|
5038
5360
|
_Clone_$(): RelationalAdHocMapperDependencies;
|
|
5039
5361
|
Equals(obj: unknown): boolean;
|
|
5040
5362
|
Equals(other: RelationalAdHocMapperDependencies): boolean;
|
|
@@ -5050,12 +5372,10 @@ export const RelationalAdHocMapperDependencies: {
|
|
|
5050
5372
|
|
|
5051
5373
|
export type RelationalAdHocMapperDependencies = RelationalAdHocMapperDependencies$instance;
|
|
5052
5374
|
|
|
5053
|
-
export
|
|
5054
|
-
|
|
5055
|
-
}
|
|
5375
|
+
export interface RelationalAnnotationProvider$instance {
|
|
5376
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalAnnotationProvider: never;
|
|
5056
5377
|
|
|
5057
|
-
|
|
5058
|
-
export interface RelationalAnnotationProvider$instance extends RelationalAnnotationProvider$protected {
|
|
5378
|
+
readonly Dependencies: RelationalAnnotationProviderDependencies;
|
|
5059
5379
|
For(model: IRelationalModel, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5060
5380
|
For(table: ITable, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5061
5381
|
For(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
@@ -5091,6 +5411,8 @@ export type RelationalAnnotationProvider = RelationalAnnotationProvider$instance
|
|
|
5091
5411
|
|
|
5092
5412
|
|
|
5093
5413
|
export interface RelationalAnnotationProviderDependencies$instance {
|
|
5414
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5415
|
+
|
|
5094
5416
|
_Clone_$(): RelationalAnnotationProviderDependencies;
|
|
5095
5417
|
Equals(obj: unknown): boolean;
|
|
5096
5418
|
Equals(other: RelationalAnnotationProviderDependencies): boolean;
|
|
@@ -5106,13 +5428,16 @@ export const RelationalAnnotationProviderDependencies: {
|
|
|
5106
5428
|
|
|
5107
5429
|
export type RelationalAnnotationProviderDependencies = RelationalAnnotationProviderDependencies$instance;
|
|
5108
5430
|
|
|
5109
|
-
export
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5431
|
+
export interface RuntimeComplexProperty$instance extends RuntimePropertyBase$instance {
|
|
5432
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5433
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5434
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IComplexProperty: never;
|
|
5435
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
5436
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexProperty: never;
|
|
5437
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
5438
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
5114
5439
|
|
|
5115
|
-
|
|
5440
|
+
readonly ClrType: Type;
|
|
5116
5441
|
readonly ComplexType: RuntimeComplexType;
|
|
5117
5442
|
readonly DebugView: DebugView;
|
|
5118
5443
|
readonly DeclaringType: RuntimeTypeBase;
|
|
@@ -5120,6 +5445,7 @@ export interface RuntimeComplexProperty$instance extends RuntimeComplexProperty$
|
|
|
5120
5445
|
readonly Sentinel: unknown | undefined;
|
|
5121
5446
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5122
5447
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5448
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5123
5449
|
AnnotationsToDebugString(indent?: int): string;
|
|
5124
5450
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5125
5451
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5162,20 +5488,24 @@ export interface __RuntimeComplexProperty$views {
|
|
|
5162
5488
|
export type RuntimeComplexProperty = RuntimeComplexProperty$instance & __RuntimeComplexProperty$views;
|
|
5163
5489
|
|
|
5164
5490
|
|
|
5165
|
-
export
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5491
|
+
export interface RuntimeComplexType$instance extends RuntimeTypeBase$instance {
|
|
5492
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5493
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5494
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IComplexType: never;
|
|
5495
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexType: never;
|
|
5496
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTypeBase: never;
|
|
5497
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeBase: never;
|
|
5498
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
5169
5499
|
|
|
5170
|
-
export interface RuntimeComplexType$instance extends RuntimeComplexType$protected, RuntimeTypeBase$instance {
|
|
5171
5500
|
readonly ComplexProperty: RuntimeComplexProperty;
|
|
5172
5501
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5173
|
-
set ConstructorBinding(value: InstantiationBinding);
|
|
5502
|
+
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
5174
5503
|
readonly DebugView: DebugView;
|
|
5175
5504
|
get ServiceOnlyConstructorBinding(): InstantiationBinding | undefined;
|
|
5176
|
-
set ServiceOnlyConstructorBinding(value: InstantiationBinding);
|
|
5505
|
+
set ServiceOnlyConstructorBinding(value: InstantiationBinding | undefined);
|
|
5177
5506
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5178
5507
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5508
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5179
5509
|
AnnotationsToDebugString(indent?: int): string;
|
|
5180
5510
|
CalculateCounts(): PropertyCounts;
|
|
5181
5511
|
DisplayName(): string;
|
|
@@ -5242,19 +5572,21 @@ export interface __RuntimeComplexType$views {
|
|
|
5242
5572
|
export type RuntimeComplexType = RuntimeComplexType$instance & __RuntimeComplexType$views;
|
|
5243
5573
|
|
|
5244
5574
|
|
|
5245
|
-
export
|
|
5246
|
-
|
|
5247
|
-
|
|
5575
|
+
export interface RuntimeDbFunction$instance extends AnnotatableBase {
|
|
5576
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5577
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5578
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IDbFunction: never;
|
|
5579
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunction: never;
|
|
5248
5580
|
|
|
5249
|
-
|
|
5250
|
-
export interface RuntimeDbFunction$instance extends RuntimeDbFunction$protected, AnnotatableBase {
|
|
5251
5581
|
readonly DebugView: DebugView;
|
|
5252
5582
|
readonly Model: RuntimeModel;
|
|
5253
5583
|
readonly ModelName: string;
|
|
5254
5584
|
readonly StoreFunction: IStoreFunction;
|
|
5255
|
-
TypeMapping: RelationalTypeMapping;
|
|
5585
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
5586
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
5256
5587
|
AddParameter(name: string, clrType: Type, propagatesNullability: boolean, storeType: string, typeMapping?: RelationalTypeMapping): RuntimeDbFunctionParameter;
|
|
5257
5588
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5589
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5258
5590
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5259
5591
|
AnnotationsToDebugString(indent?: int): string;
|
|
5260
5592
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5284,17 +5616,19 @@ export interface __RuntimeDbFunction$views {
|
|
|
5284
5616
|
export type RuntimeDbFunction = RuntimeDbFunction$instance & __RuntimeDbFunction$views;
|
|
5285
5617
|
|
|
5286
5618
|
|
|
5287
|
-
export
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5619
|
+
export interface RuntimeDbFunctionParameter$instance extends AnnotatableBase {
|
|
5620
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5621
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5622
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IDbFunctionParameter: never;
|
|
5623
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunctionParameter: never;
|
|
5291
5624
|
|
|
5292
|
-
export interface RuntimeDbFunctionParameter$instance extends RuntimeDbFunctionParameter$protected, AnnotatableBase {
|
|
5293
5625
|
readonly DebugView: DebugView;
|
|
5294
5626
|
readonly Function: RuntimeDbFunction;
|
|
5295
5627
|
readonly Name: string;
|
|
5296
|
-
TypeMapping: RelationalTypeMapping;
|
|
5628
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
5629
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
5297
5630
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5631
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5298
5632
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5299
5633
|
AnnotationsToDebugString(indent?: int): string;
|
|
5300
5634
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5324,18 +5658,19 @@ export interface __RuntimeDbFunctionParameter$views {
|
|
|
5324
5658
|
export type RuntimeDbFunctionParameter = RuntimeDbFunctionParameter$instance & __RuntimeDbFunctionParameter$views;
|
|
5325
5659
|
|
|
5326
5660
|
|
|
5327
|
-
export
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5661
|
+
export interface RuntimeElementType$instance extends RuntimeAnnotatableBase {
|
|
5662
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5663
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5664
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IElementType: never;
|
|
5665
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyElementType: never;
|
|
5331
5666
|
|
|
5332
|
-
export interface RuntimeElementType$instance extends RuntimeElementType$protected, RuntimeAnnotatableBase {
|
|
5333
5667
|
readonly ClrType: Type;
|
|
5334
5668
|
readonly CollectionProperty: IProperty;
|
|
5335
5669
|
readonly DebugView: DebugView;
|
|
5336
5670
|
readonly IsNullable: boolean;
|
|
5337
5671
|
TypeMapping: CoreTypeMapping;
|
|
5338
5672
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5673
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5339
5674
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5340
5675
|
AnnotationsToDebugString(indent?: int): string;
|
|
5341
5676
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5376,23 +5711,28 @@ export interface __RuntimeElementType$views {
|
|
|
5376
5711
|
export type RuntimeElementType = RuntimeElementType$instance & __RuntimeElementType$views;
|
|
5377
5712
|
|
|
5378
5713
|
|
|
5379
|
-
export
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5714
|
+
export interface RuntimeEntityType$instance extends RuntimeTypeBase$instance {
|
|
5715
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5716
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5717
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IEntityType: never;
|
|
5718
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityType: never;
|
|
5719
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTypeBase: never;
|
|
5720
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeBase: never;
|
|
5721
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType: never;
|
|
5722
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
5383
5723
|
|
|
5384
|
-
export interface RuntimeEntityType$instance extends RuntimeEntityType$protected, RuntimeTypeBase$instance {
|
|
5385
5724
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5386
|
-
set ConstructorBinding(value: InstantiationBinding);
|
|
5725
|
+
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
5387
5726
|
readonly DebugView: DebugView;
|
|
5388
5727
|
get ServiceOnlyConstructorBinding(): InstantiationBinding | undefined;
|
|
5389
|
-
set ServiceOnlyConstructorBinding(value: InstantiationBinding);
|
|
5728
|
+
set ServiceOnlyConstructorBinding(value: InstantiationBinding | undefined);
|
|
5390
5729
|
AddForeignKey(properties: IReadOnlyList<RuntimeProperty>, principalKey: RuntimeKey, principalEntityType: RuntimeEntityType, deleteBehavior?: DeleteBehavior, unique?: boolean, required?: boolean, requiredDependent?: boolean, ownership?: boolean): RuntimeForeignKey;
|
|
5391
5730
|
AddIndex(properties: IReadOnlyList<RuntimeProperty>, name?: string, unique?: boolean): RuntimeIndex;
|
|
5392
5731
|
AddKey(properties: IReadOnlyList<RuntimeProperty>): RuntimeKey;
|
|
5393
5732
|
AddNavigation(name: string, foreignKey: RuntimeForeignKey, onDependent: boolean, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, eagerLoaded?: boolean, lazyLoadingEnabled?: boolean): RuntimeNavigation;
|
|
5394
5733
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5395
5734
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5735
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5396
5736
|
AddServiceProperty(name: string, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, serviceType?: Type, propertyAccessMode?: PropertyAccessMode): RuntimeServiceProperty;
|
|
5397
5737
|
AddSkipNavigation(name: string, targetEntityType: RuntimeEntityType, foreignKey: RuntimeForeignKey, collection: boolean, onDependent: boolean, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, eagerLoaded?: boolean, lazyLoadingEnabled?: boolean): RuntimeSkipNavigation;
|
|
5398
5738
|
AddTrigger(modelName: string): RuntimeTrigger;
|
|
@@ -5486,17 +5826,18 @@ export interface __RuntimeEntityType$views {
|
|
|
5486
5826
|
export type RuntimeEntityType = RuntimeEntityType$instance & __RuntimeEntityType$views;
|
|
5487
5827
|
|
|
5488
5828
|
|
|
5489
|
-
export
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5829
|
+
export interface RuntimeEntityTypeMappingFragment$instance extends AnnotatableBase {
|
|
5830
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5831
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5832
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IEntityTypeMappingFragment: never;
|
|
5833
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityTypeMappingFragment: never;
|
|
5493
5834
|
|
|
5494
|
-
export interface RuntimeEntityTypeMappingFragment$instance extends RuntimeEntityTypeMappingFragment$protected, AnnotatableBase {
|
|
5495
5835
|
readonly DebugView: DebugView;
|
|
5496
5836
|
readonly EntityType: RuntimeEntityType;
|
|
5497
5837
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
5498
5838
|
readonly StoreObject: StoreObjectIdentifier;
|
|
5499
5839
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5840
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5500
5841
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5501
5842
|
AnnotationsToDebugString(indent?: int): string;
|
|
5502
5843
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5526,21 +5867,23 @@ export interface __RuntimeEntityTypeMappingFragment$views {
|
|
|
5526
5867
|
export type RuntimeEntityTypeMappingFragment = RuntimeEntityTypeMappingFragment$instance & __RuntimeEntityTypeMappingFragment$views;
|
|
5527
5868
|
|
|
5528
5869
|
|
|
5529
|
-
export
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5870
|
+
export interface RuntimeForeignKey$instance extends RuntimeAnnotatableBase {
|
|
5871
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5872
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5873
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IForeignKey: never;
|
|
5874
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyForeignKey: never;
|
|
5875
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeForeignKey: never;
|
|
5533
5876
|
|
|
5534
|
-
export interface RuntimeForeignKey$instance extends RuntimeForeignKey$protected, RuntimeAnnotatableBase {
|
|
5535
5877
|
readonly DebugView: DebugView;
|
|
5536
5878
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5537
5879
|
readonly PrincipalEntityType: RuntimeEntityType;
|
|
5538
5880
|
readonly PrincipalKey: RuntimeKey;
|
|
5539
5881
|
readonly Properties: IReadOnlyList<RuntimeProperty>;
|
|
5540
5882
|
get ReferencingSkipNavigations(): ISet<RuntimeSkipNavigation> | undefined;
|
|
5541
|
-
set ReferencingSkipNavigations(value: ISet<RuntimeSkipNavigation>);
|
|
5883
|
+
set ReferencingSkipNavigations(value: ISet<RuntimeSkipNavigation> | undefined);
|
|
5542
5884
|
AddNavigation(navigation: RuntimeNavigation, onDependent: boolean): void;
|
|
5543
5885
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5886
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5544
5887
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5545
5888
|
AnnotationsToDebugString(indent?: int): string;
|
|
5546
5889
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5571,17 +5914,18 @@ export interface __RuntimeForeignKey$views {
|
|
|
5571
5914
|
export type RuntimeForeignKey = RuntimeForeignKey$instance & __RuntimeForeignKey$views;
|
|
5572
5915
|
|
|
5573
5916
|
|
|
5574
|
-
export
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5917
|
+
export interface RuntimeIndex$instance extends RuntimeAnnotatableBase {
|
|
5918
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5919
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5920
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IIndex: never;
|
|
5921
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyIndex: never;
|
|
5578
5922
|
|
|
5579
|
-
export interface RuntimeIndex$instance extends RuntimeIndex$protected, RuntimeAnnotatableBase {
|
|
5580
5923
|
readonly DebugView: DebugView;
|
|
5581
5924
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5582
|
-
readonly Name: string;
|
|
5925
|
+
readonly Name: string | undefined;
|
|
5583
5926
|
readonly Properties: IReadOnlyList<RuntimeProperty>;
|
|
5584
5927
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5928
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5585
5929
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5586
5930
|
AnnotationsToDebugString(indent?: int): string;
|
|
5587
5931
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5611,18 +5955,20 @@ export interface __RuntimeIndex$views {
|
|
|
5611
5955
|
export type RuntimeIndex = RuntimeIndex$instance & __RuntimeIndex$views;
|
|
5612
5956
|
|
|
5613
5957
|
|
|
5614
|
-
export
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5958
|
+
export interface RuntimeKey$instance extends RuntimeAnnotatableBase {
|
|
5959
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
5960
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
5961
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IKey: never;
|
|
5962
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyKey: never;
|
|
5963
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeKey: never;
|
|
5618
5964
|
|
|
5619
|
-
export interface RuntimeKey$instance extends RuntimeKey$protected, RuntimeAnnotatableBase {
|
|
5620
5965
|
readonly DebugView: DebugView;
|
|
5621
5966
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5622
5967
|
readonly Properties: IReadOnlyList<RuntimeProperty>;
|
|
5623
5968
|
get ReferencingForeignKeys(): ISet<RuntimeForeignKey> | undefined;
|
|
5624
|
-
set ReferencingForeignKeys(value: ISet<RuntimeForeignKey>);
|
|
5969
|
+
set ReferencingForeignKeys(value: ISet<RuntimeForeignKey> | undefined);
|
|
5625
5970
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5971
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5626
5972
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5627
5973
|
AnnotationsToDebugString(indent?: int): string;
|
|
5628
5974
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5655,16 +6001,18 @@ export interface __RuntimeKey$views {
|
|
|
5655
6001
|
export type RuntimeKey = RuntimeKey$instance & __RuntimeKey$views;
|
|
5656
6002
|
|
|
5657
6003
|
|
|
5658
|
-
export
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
6004
|
+
export interface RuntimeModel$instance extends RuntimeAnnotatableBase {
|
|
6005
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6006
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6007
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IModel: never;
|
|
6008
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyModel: never;
|
|
6009
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeModel: never;
|
|
5662
6010
|
|
|
5663
|
-
export interface RuntimeModel$instance extends RuntimeModel$protected, RuntimeAnnotatableBase {
|
|
5664
6011
|
readonly DebugView: DebugView;
|
|
5665
6012
|
ModelId: Guid;
|
|
5666
6013
|
AddEntityType(name: string, type: Type, baseType?: RuntimeEntityType, sharedClrType?: boolean, changeTrackingStrategy?: ChangeTrackingStrategy, indexerPropertyInfo?: PropertyInfo, propertyBag?: boolean, discriminatorProperty?: string, discriminatorValue?: unknown, derivedTypesCount?: int, propertyCount?: int, complexPropertyCount?: int, navigationCount?: int, skipNavigationCount?: int, servicePropertyCount?: int, foreignKeyCount?: int, unnamedIndexCount?: int, namedIndexCount?: int, keyCount?: int, triggerCount?: int): RuntimeEntityType;
|
|
5667
6014
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6015
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5668
6016
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5669
6017
|
AddTypeMappingConfiguration(clrType: Type, maxLength?: Nullable<System_Internal.Int32>, unicode?: Nullable<System_Internal.Boolean>, precision?: Nullable<System_Internal.Int32>, scale?: Nullable<System_Internal.Int32>, providerPropertyType?: Type, valueConverter?: ValueConverter): RuntimeTypeMappingConfiguration;
|
|
5670
6018
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -5702,13 +6050,18 @@ export interface __RuntimeModel$views {
|
|
|
5702
6050
|
export type RuntimeModel = RuntimeModel$instance & __RuntimeModel$views;
|
|
5703
6051
|
|
|
5704
6052
|
|
|
5705
|
-
export
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
|
|
6053
|
+
export interface RuntimeNavigation$instance extends RuntimePropertyBase$instance {
|
|
6054
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6055
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6056
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigation: never;
|
|
6057
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigationBase: never;
|
|
6058
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
6059
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigation: never;
|
|
6060
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigationBase: never;
|
|
6061
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
6062
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
5709
6063
|
|
|
5710
|
-
|
|
5711
|
-
export interface RuntimeNavigation$instance extends RuntimeNavigation$protected, RuntimePropertyBase$instance {
|
|
6064
|
+
readonly ClrType: Type;
|
|
5712
6065
|
readonly DebugView: DebugView;
|
|
5713
6066
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5714
6067
|
readonly DeclaringType: RuntimeTypeBase;
|
|
@@ -5717,6 +6070,7 @@ export interface RuntimeNavigation$instance extends RuntimeNavigation$protected,
|
|
|
5717
6070
|
readonly Sentinel: unknown | undefined;
|
|
5718
6071
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5719
6072
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6073
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5720
6074
|
AnnotationsToDebugString(indent?: int): string;
|
|
5721
6075
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5722
6076
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5762,27 +6116,33 @@ export interface __RuntimeNavigation$views {
|
|
|
5762
6116
|
export type RuntimeNavigation = RuntimeNavigation$instance & __RuntimeNavigation$views;
|
|
5763
6117
|
|
|
5764
6118
|
|
|
5765
|
-
export
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
6119
|
+
export interface RuntimeProperty$instance extends RuntimePropertyBase$instance {
|
|
6120
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6121
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IProperty: never;
|
|
6123
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
6124
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyProperty: never;
|
|
6125
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
6126
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
5770
6127
|
|
|
5771
|
-
|
|
6128
|
+
readonly ClrType: Type;
|
|
5772
6129
|
readonly DebugView: DebugView;
|
|
5773
6130
|
readonly DeclaringType: RuntimeTypeBase;
|
|
5774
|
-
ForeignKeys: ISet<RuntimeForeignKey
|
|
5775
|
-
|
|
6131
|
+
get ForeignKeys(): ISet<RuntimeForeignKey> | undefined;
|
|
6132
|
+
set ForeignKeys(value: ISet<RuntimeForeignKey> | undefined);
|
|
6133
|
+
get Indexes(): List<RuntimeIndex> | undefined;
|
|
6134
|
+
set Indexes(value: List<RuntimeIndex> | undefined);
|
|
5776
6135
|
readonly IsCollection: boolean;
|
|
5777
6136
|
IsPrimitiveCollection: boolean;
|
|
5778
6137
|
get Keys(): List<RuntimeKey> | undefined;
|
|
5779
|
-
set Keys(value: List<RuntimeKey>);
|
|
6138
|
+
set Keys(value: List<RuntimeKey> | undefined);
|
|
5780
6139
|
get PrimaryKey(): RuntimeKey | undefined;
|
|
5781
|
-
set PrimaryKey(value: RuntimeKey);
|
|
6140
|
+
set PrimaryKey(value: RuntimeKey | undefined);
|
|
5782
6141
|
readonly Sentinel: unknown | undefined;
|
|
5783
6142
|
TypeMapping: CoreTypeMapping;
|
|
5784
6143
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5785
6144
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6145
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5786
6146
|
AnnotationsToDebugString(indent?: int): string;
|
|
5787
6147
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5788
6148
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5835,18 +6195,20 @@ export interface __RuntimeProperty$views {
|
|
|
5835
6195
|
export type RuntimeProperty = RuntimeProperty$instance & __RuntimeProperty$views;
|
|
5836
6196
|
|
|
5837
6197
|
|
|
5838
|
-
export
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
|
|
6198
|
+
export interface RuntimePropertyBase$instance extends RuntimeAnnotatableBase {
|
|
6199
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6200
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6201
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
6202
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
6203
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
5842
6204
|
|
|
5843
|
-
|
|
5844
|
-
export interface RuntimePropertyBase$instance extends RuntimePropertyBase$protected, RuntimeAnnotatableBase {
|
|
6205
|
+
readonly ClrType: Type;
|
|
5845
6206
|
readonly DeclaringType: RuntimeTypeBase;
|
|
5846
6207
|
readonly IsCollection: boolean;
|
|
5847
6208
|
readonly Name: string;
|
|
5848
6209
|
readonly Sentinel: unknown | undefined;
|
|
5849
6210
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6211
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5850
6212
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5851
6213
|
AnnotationsToDebugString(indent?: int): string;
|
|
5852
6214
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5870,8 +6232,7 @@ export interface RuntimePropertyBase$instance extends RuntimePropertyBase$protec
|
|
|
5870
6232
|
}
|
|
5871
6233
|
|
|
5872
6234
|
|
|
5873
|
-
export const RuntimePropertyBase: {
|
|
5874
|
-
new(name: string, propertyInfo: PropertyInfo, fieldInfo: FieldInfo, propertyAccessMode: PropertyAccessMode): RuntimePropertyBase;
|
|
6235
|
+
export const RuntimePropertyBase: (abstract new(name: string, propertyInfo: PropertyInfo, fieldInfo: FieldInfo, propertyAccessMode: PropertyAccessMode) => RuntimePropertyBase) & {
|
|
5875
6236
|
};
|
|
5876
6237
|
|
|
5877
6238
|
|
|
@@ -5886,16 +6247,17 @@ export interface __RuntimePropertyBase$views {
|
|
|
5886
6247
|
export type RuntimePropertyBase = RuntimePropertyBase$instance & __RuntimePropertyBase$views;
|
|
5887
6248
|
|
|
5888
6249
|
|
|
5889
|
-
export
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
6250
|
+
export interface RuntimeRelationalPropertyOverrides$instance extends AnnotatableBase {
|
|
6251
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6252
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6253
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyRelationalPropertyOverrides: never;
|
|
6254
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalPropertyOverrides: never;
|
|
5893
6255
|
|
|
5894
|
-
export interface RuntimeRelationalPropertyOverrides$instance extends RuntimeRelationalPropertyOverrides$protected, AnnotatableBase {
|
|
5895
6256
|
readonly DebugView: DebugView;
|
|
5896
6257
|
readonly Property: RuntimeProperty;
|
|
5897
6258
|
readonly StoreObject: StoreObjectIdentifier;
|
|
5898
6259
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6260
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5899
6261
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5900
6262
|
AnnotationsToDebugString(indent?: int): string;
|
|
5901
6263
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5925,18 +6287,19 @@ export interface __RuntimeRelationalPropertyOverrides$views {
|
|
|
5925
6287
|
export type RuntimeRelationalPropertyOverrides = RuntimeRelationalPropertyOverrides$instance & __RuntimeRelationalPropertyOverrides$views;
|
|
5926
6288
|
|
|
5927
6289
|
|
|
5928
|
-
export
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
6290
|
+
export interface RuntimeSequence$instance extends AnnotatableBase {
|
|
6291
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6292
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6293
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySequence: never;
|
|
6294
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISequence: never;
|
|
5932
6295
|
|
|
5933
|
-
export interface RuntimeSequence$instance extends RuntimeSequence$protected, AnnotatableBase {
|
|
5934
6296
|
readonly DebugView: DebugView;
|
|
5935
6297
|
readonly Model: RuntimeModel;
|
|
5936
6298
|
readonly ModelSchema: string | undefined;
|
|
5937
6299
|
readonly Name: string;
|
|
5938
|
-
readonly Schema: string;
|
|
6300
|
+
readonly Schema: string | undefined;
|
|
5939
6301
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6302
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5940
6303
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5941
6304
|
AnnotationsToDebugString(indent?: int): string;
|
|
5942
6305
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5966,13 +6329,16 @@ export interface __RuntimeSequence$views {
|
|
|
5966
6329
|
export type RuntimeSequence = RuntimeSequence$instance & __RuntimeSequence$views;
|
|
5967
6330
|
|
|
5968
6331
|
|
|
5969
|
-
export
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
6332
|
+
export interface RuntimeServiceProperty$instance extends RuntimePropertyBase$instance {
|
|
6333
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6334
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6335
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
6336
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
6337
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyServiceProperty: never;
|
|
6338
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IServiceProperty: never;
|
|
6339
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
5973
6340
|
|
|
5974
|
-
|
|
5975
|
-
export interface RuntimeServiceProperty$instance extends RuntimeServiceProperty$protected, RuntimePropertyBase$instance {
|
|
6341
|
+
readonly ClrType: Type;
|
|
5976
6342
|
readonly DebugView: DebugView;
|
|
5977
6343
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5978
6344
|
readonly DeclaringType: RuntimeTypeBase;
|
|
@@ -5981,6 +6347,7 @@ export interface RuntimeServiceProperty$instance extends RuntimeServiceProperty$
|
|
|
5981
6347
|
readonly Sentinel: unknown | undefined;
|
|
5982
6348
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5983
6349
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6350
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5984
6351
|
AnnotationsToDebugString(indent?: int): string;
|
|
5985
6352
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5986
6353
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6023,13 +6390,19 @@ export interface __RuntimeServiceProperty$views {
|
|
|
6023
6390
|
export type RuntimeServiceProperty = RuntimeServiceProperty$instance & __RuntimeServiceProperty$views;
|
|
6024
6391
|
|
|
6025
6392
|
|
|
6026
|
-
export
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
6393
|
+
export interface RuntimeSkipNavigation$instance extends RuntimePropertyBase$instance {
|
|
6394
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6395
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigationBase: never;
|
|
6397
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
6398
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigationBase: never;
|
|
6399
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
6400
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySkipNavigation: never;
|
|
6401
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISkipNavigation: never;
|
|
6402
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
6403
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeSkipNavigation: never;
|
|
6031
6404
|
|
|
6032
|
-
|
|
6405
|
+
readonly ClrType: Type;
|
|
6033
6406
|
readonly DebugView: DebugView;
|
|
6034
6407
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
6035
6408
|
readonly DeclaringType: RuntimeTypeBase;
|
|
@@ -6039,6 +6412,7 @@ export interface RuntimeSkipNavigation$instance extends RuntimeSkipNavigation$pr
|
|
|
6039
6412
|
readonly TargetEntityType: RuntimeEntityType;
|
|
6040
6413
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6041
6414
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6415
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6042
6416
|
AnnotationsToDebugString(indent?: int): string;
|
|
6043
6417
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6044
6418
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6085,17 +6459,18 @@ export interface __RuntimeSkipNavigation$views {
|
|
|
6085
6459
|
export type RuntimeSkipNavigation = RuntimeSkipNavigation$instance & __RuntimeSkipNavigation$views;
|
|
6086
6460
|
|
|
6087
6461
|
|
|
6088
|
-
export
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6462
|
+
export interface RuntimeStoredProcedure$instance extends AnnotatableBase {
|
|
6463
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6464
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6465
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedure: never;
|
|
6466
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedure: never;
|
|
6092
6467
|
|
|
6093
|
-
export interface RuntimeStoredProcedure$instance extends RuntimeStoredProcedure$protected, AnnotatableBase {
|
|
6094
6468
|
readonly DebugView: DebugView;
|
|
6095
6469
|
EntityType: RuntimeEntityType;
|
|
6096
6470
|
AddParameter(name: string, direction: ParameterDirection, forRowsAffected: boolean, propertyName: string, forOriginalValue: Nullable<System_Internal.Boolean>): RuntimeStoredProcedureParameter;
|
|
6097
6471
|
AddResultColumn(name: string, forRowsAffected: boolean, propertyName: string): RuntimeStoredProcedureResultColumn;
|
|
6098
6472
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6473
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6099
6474
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6100
6475
|
AnnotationsToDebugString(indent?: int): string;
|
|
6101
6476
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6125,16 +6500,17 @@ export interface __RuntimeStoredProcedure$views {
|
|
|
6125
6500
|
export type RuntimeStoredProcedure = RuntimeStoredProcedure$instance & __RuntimeStoredProcedure$views;
|
|
6126
6501
|
|
|
6127
6502
|
|
|
6128
|
-
export
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6503
|
+
export interface RuntimeTrigger$instance extends RuntimeAnnotatableBase {
|
|
6504
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6505
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6506
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTrigger: never;
|
|
6507
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITrigger: never;
|
|
6132
6508
|
|
|
6133
|
-
export interface RuntimeTrigger$instance extends RuntimeTrigger$protected, RuntimeAnnotatableBase {
|
|
6134
6509
|
readonly DebugView: DebugView;
|
|
6135
6510
|
readonly EntityType: IEntityType;
|
|
6136
6511
|
readonly ModelName: string;
|
|
6137
6512
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6513
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6138
6514
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6139
6515
|
AnnotationsToDebugString(indent?: int): string;
|
|
6140
6516
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6164,22 +6540,20 @@ export interface __RuntimeTrigger$views {
|
|
|
6164
6540
|
export type RuntimeTrigger = RuntimeTrigger$instance & __RuntimeTrigger$views;
|
|
6165
6541
|
|
|
6166
6542
|
|
|
6167
|
-
export
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
protected GetProperties(): IEnumerable<RuntimeProperty>;
|
|
6174
|
-
}
|
|
6175
|
-
|
|
6543
|
+
export interface RuntimeTypeBase$instance extends RuntimeAnnotatableBase {
|
|
6544
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6545
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6546
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTypeBase: never;
|
|
6547
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeBase: never;
|
|
6548
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
6176
6549
|
|
|
6177
|
-
export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, RuntimeAnnotatableBase {
|
|
6178
6550
|
readonly BaseType: RuntimeTypeBase | undefined;
|
|
6179
6551
|
readonly ClrType: Type;
|
|
6180
6552
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
6181
|
-
set ConstructorBinding(value: InstantiationBinding);
|
|
6553
|
+
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
6554
|
+
readonly DirectlyDerivedTypes: IEnumerable<RuntimeTypeBase>;
|
|
6182
6555
|
readonly EmptyShadowValuesFactory: Func<ISnapshot>;
|
|
6556
|
+
readonly HasDirectlyDerivedTypes: boolean;
|
|
6183
6557
|
Model: RuntimeModel;
|
|
6184
6558
|
readonly Name: string;
|
|
6185
6559
|
readonly OriginalValuesFactory: Func<IInternalEntry, ISnapshot>;
|
|
@@ -6189,6 +6563,7 @@ export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, Run
|
|
|
6189
6563
|
AddComplexProperty(name: string, clrType: Type, targetTypeName: string, targetType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, nullable?: boolean, collection?: boolean, changeTrackingStrategy?: ChangeTrackingStrategy, indexerPropertyInfo?: PropertyInfo, propertyBag?: boolean, discriminatorProperty?: string, discriminatorValue?: unknown, propertyCount?: int, complexPropertyCount?: int): RuntimeComplexProperty;
|
|
6190
6564
|
AddProperty(name: string, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, nullable?: boolean, concurrencyToken?: boolean, valueGenerated?: ValueGenerated, beforeSaveBehavior?: PropertySaveBehavior, afterSaveBehavior?: PropertySaveBehavior, maxLength?: Nullable<System_Internal.Int32>, unicode?: Nullable<System_Internal.Boolean>, precision?: Nullable<System_Internal.Int32>, scale?: Nullable<System_Internal.Int32>, providerPropertyType?: Type, valueGeneratorFactory?: Func<IProperty, ITypeBase, ValueGenerator>, valueConverter?: ValueConverter, valueComparer?: ValueComparer, keyValueComparer?: ValueComparer, providerValueComparer?: ValueComparer, jsonValueReaderWriter?: JsonValueReaderWriter, typeMapping?: CoreTypeMapping, sentinel?: unknown): RuntimeProperty;
|
|
6191
6565
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6566
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6192
6567
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6193
6568
|
AnnotationsToDebugString(indent?: int): string;
|
|
6194
6569
|
CalculateCounts(): PropertyCounts;
|
|
@@ -6197,6 +6572,7 @@ export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, Run
|
|
|
6197
6572
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6198
6573
|
FindComplexPropertiesInHierarchy(propertyName: string): IEnumerable<RuntimeComplexProperty>;
|
|
6199
6574
|
FindComplexProperty(name: string): RuntimeComplexProperty | undefined;
|
|
6575
|
+
FindDeclaredProperty(name: string): RuntimeProperty | undefined;
|
|
6200
6576
|
FindIndexerPropertyInfo(): PropertyInfo | undefined;
|
|
6201
6577
|
FindMember(name: string): RuntimePropertyBase | undefined;
|
|
6202
6578
|
FindMembersInHierarchy(name: string): IEnumerable<RuntimePropertyBase>;
|
|
@@ -6212,6 +6588,7 @@ export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, Run
|
|
|
6212
6588
|
GetDeclaredMembers(): IEnumerable<RuntimePropertyBase>;
|
|
6213
6589
|
GetDeclaredProperties(): IEnumerable<RuntimeProperty>;
|
|
6214
6590
|
GetDerivedTypes(): IEnumerable<RuntimeTypeBase>;
|
|
6591
|
+
GetDerivedTypes<T extends RuntimeTypeBase>(): IEnumerable<T>;
|
|
6215
6592
|
GetFlattenedComplexProperties(): IEnumerable<RuntimeComplexProperty>;
|
|
6216
6593
|
GetFlattenedDeclaredProperties(): IEnumerable<RuntimeProperty>;
|
|
6217
6594
|
GetFlattenedProperties(): IEnumerable<RuntimeProperty>;
|
|
@@ -6220,6 +6597,7 @@ export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, Run
|
|
|
6220
6597
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6221
6598
|
GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func<MaterializationContext, unknown>;
|
|
6222
6599
|
GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func<MaterializationContext, unknown>;
|
|
6600
|
+
GetProperties(): IEnumerable<RuntimeProperty>;
|
|
6223
6601
|
GetRuntimeAnnotations(): IEnumerable<Annotation>;
|
|
6224
6602
|
GetSnapshottableMembers(): IEnumerable<RuntimePropertyBase>;
|
|
6225
6603
|
SetEmptyShadowValuesFactory(factory: Func<ISnapshot>): void;
|
|
@@ -6230,8 +6608,7 @@ export interface RuntimeTypeBase$instance extends RuntimeTypeBase$protected, Run
|
|
|
6230
6608
|
}
|
|
6231
6609
|
|
|
6232
6610
|
|
|
6233
|
-
export const RuntimeTypeBase: {
|
|
6234
|
-
new(name: string, type: Type, model: RuntimeModel, baseType: RuntimeTypeBase, changeTrackingStrategy: ChangeTrackingStrategy, indexerPropertyInfo: PropertyInfo, propertyBag: boolean, discriminatorProperty: string, discriminatorValue: unknown, derivedTypesCount: int, propertyCount: int, complexPropertyCount: int): RuntimeTypeBase;
|
|
6611
|
+
export const RuntimeTypeBase: (abstract new(name: string, type: Type, model: RuntimeModel, baseType: RuntimeTypeBase, changeTrackingStrategy: ChangeTrackingStrategy, indexerPropertyInfo: PropertyInfo, propertyBag: boolean, discriminatorProperty: string, discriminatorValue: unknown, derivedTypesCount: int, propertyCount: int, complexPropertyCount: int) => RuntimeTypeBase) & {
|
|
6235
6612
|
FindIndexerProperty(type: Type): PropertyInfo | undefined;
|
|
6236
6613
|
ToEnumerable<T>(element: T): IEnumerable<T>;
|
|
6237
6614
|
};
|
|
@@ -6248,14 +6625,14 @@ export interface __RuntimeTypeBase$views {
|
|
|
6248
6625
|
export type RuntimeTypeBase = RuntimeTypeBase$instance & __RuntimeTypeBase$views;
|
|
6249
6626
|
|
|
6250
6627
|
|
|
6251
|
-
export
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6628
|
+
export interface RuntimeTypeMappingConfiguration$instance extends RuntimeAnnotatableBase {
|
|
6629
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
6630
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
6631
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeMappingConfiguration: never;
|
|
6255
6632
|
|
|
6256
|
-
export interface RuntimeTypeMappingConfiguration$instance extends RuntimeTypeMappingConfiguration$protected, RuntimeAnnotatableBase {
|
|
6257
6633
|
readonly ClrType: Type;
|
|
6258
6634
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6635
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6259
6636
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6260
6637
|
AnnotationsToDebugString(indent?: int): string;
|
|
6261
6638
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6291,14 +6668,15 @@ export interface ServiceParameterBinding$instance extends ParameterBinding {
|
|
|
6291
6668
|
}
|
|
6292
6669
|
|
|
6293
6670
|
|
|
6294
|
-
export const ServiceParameterBinding: {
|
|
6295
|
-
new(parameterType: Type, serviceType: Type, serviceProperties: IPropertyBase[]): ServiceParameterBinding;
|
|
6671
|
+
export const ServiceParameterBinding: (abstract new(parameterType: Type, serviceType: Type, serviceProperties: IPropertyBase[]) => ServiceParameterBinding) & {
|
|
6296
6672
|
};
|
|
6297
6673
|
|
|
6298
6674
|
|
|
6299
6675
|
export type ServiceParameterBinding = ServiceParameterBinding$instance;
|
|
6300
6676
|
|
|
6301
6677
|
export interface ServiceParameterBindingFactory$instance {
|
|
6678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
6679
|
+
|
|
6302
6680
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
6303
6681
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
6304
6682
|
Bind(entityType: IReadOnlyEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -6331,6 +6709,8 @@ export const SimpleModelFactory: {
|
|
|
6331
6709
|
export type SimpleModelFactory = SimpleModelFactory$instance;
|
|
6332
6710
|
|
|
6333
6711
|
export interface StoreObjectDictionary_1$instance<T> {
|
|
6712
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoreObjectDictionary_1: never;
|
|
6713
|
+
|
|
6334
6714
|
Add(storeObject: StoreObjectIdentifier, value: T): void;
|
|
6335
6715
|
Find(storeObject: StoreObjectIdentifier): T | undefined;
|
|
6336
6716
|
GetValues(): IEnumerable<T>;
|
|
@@ -6351,6 +6731,9 @@ export type StoreObjectDictionary_1<T> = StoreObjectDictionary_1$instance<T> & _
|
|
|
6351
6731
|
|
|
6352
6732
|
|
|
6353
6733
|
export interface TypeBaseNameComparer$instance {
|
|
6734
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
6735
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
6736
|
+
|
|
6354
6737
|
Compare(x: IReadOnlyTypeBase, y: IReadOnlyTypeBase): int;
|
|
6355
6738
|
Equals(x: IReadOnlyTypeBase, y: IReadOnlyTypeBase): boolean;
|
|
6356
6739
|
GetHashCode(obj: IReadOnlyTypeBase): int;
|
|
@@ -6358,7 +6741,6 @@ export interface TypeBaseNameComparer$instance {
|
|
|
6358
6741
|
|
|
6359
6742
|
|
|
6360
6743
|
export const TypeBaseNameComparer: {
|
|
6361
|
-
new(): TypeBaseNameComparer;
|
|
6362
6744
|
readonly Instance: TypeBaseNameComparer;
|
|
6363
6745
|
};
|
|
6364
6746
|
|