@tsonic/efcore 10.0.3 → 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 +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- 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,6 +79,8 @@ 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
86
|
readonly Name: string | 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>;
|
|
@@ -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;
|
|
@@ -203,6 +219,8 @@ 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;
|
|
@@ -223,6 +241,8 @@ 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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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,6 +377,8 @@ 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
384
|
readonly [name: string]: unknown | undefined;
|
|
@@ -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,6 +408,8 @@ 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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -529,6 +565,8 @@ 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>;
|
|
@@ -567,6 +605,8 @@ 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;
|
|
@@ -595,6 +635,8 @@ 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;
|
|
@@ -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;
|
|
@@ -782,6 +826,8 @@ 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;
|
|
@@ -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;
|
|
@@ -848,6 +896,8 @@ 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;
|
|
@@ -876,6 +926,8 @@ 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;
|
|
@@ -900,6 +952,8 @@ 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
959
|
readonly [name: string]: unknown | undefined;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1140,6 +1202,8 @@ 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;
|
|
@@ -1166,6 +1230,8 @@ 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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1281,6 +1351,8 @@ 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>;
|
|
@@ -1323,6 +1395,8 @@ 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;
|
|
@@ -1350,6 +1424,8 @@ 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;
|
|
@@ -1374,6 +1450,8 @@ 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;
|
|
@@ -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;
|
|
@@ -1468,6 +1548,8 @@ 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;
|
|
@@ -1499,6 +1581,8 @@ 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;
|
|
@@ -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,6 +1615,8 @@ 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;
|
|
@@ -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;
|
|
@@ -1661,6 +1751,8 @@ 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>;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1767,6 +1865,8 @@ 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;
|
|
@@ -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;
|
|
@@ -1813,6 +1915,8 @@ 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
1922
|
readonly Name: string | undefined;
|
|
@@ -1836,6 +1940,8 @@ 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
1947
|
readonly [name: string]: unknown | undefined;
|
|
@@ -1860,13 +1966,19 @@ 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
1983
|
set ModelDependencies(value: RuntimeModelDependencies | undefined);
|
|
1872
1984
|
readonly ModelId: Guid;
|
|
@@ -1907,6 +2019,8 @@ 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 {
|
|
2022
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
2023
|
+
|
|
1910
2024
|
[name: string]: unknown | undefined;
|
|
1911
2025
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1912
2026
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
@@ -1921,6 +2035,8 @@ export interface IMutableAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
|
1921
2035
|
export type IMutableAnnotatable = IMutableAnnotatable$instance;
|
|
1922
2036
|
|
|
1923
2037
|
export interface IMutableCheckConstraint$instance extends IReadOnlyCheckConstraint, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2038
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableCheckConstraint: never;
|
|
2039
|
+
|
|
1924
2040
|
readonly EntityType: IMutableEntityType;
|
|
1925
2041
|
get Name(): string | undefined;
|
|
1926
2042
|
set Name(value: string | undefined);
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -2048,6 +2168,8 @@ 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
2174
|
get Schema(): string | undefined;
|
|
2053
2175
|
set Schema(value: string | undefined);
|
|
@@ -2081,6 +2203,8 @@ export interface IMutableDbFunction$instance extends IReadOnlyDbFunction, IReadO
|
|
|
2081
2203
|
export type IMutableDbFunction = IMutableDbFunction$instance;
|
|
2082
2204
|
|
|
2083
2205
|
export interface IMutableDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2206
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableDbFunctionParameter: never;
|
|
2207
|
+
|
|
2084
2208
|
readonly Function: IMutableDbFunction;
|
|
2085
2209
|
StoreType: string;
|
|
2086
2210
|
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
@@ -2103,6 +2227,8 @@ export interface IMutableDbFunctionParameter$instance extends IReadOnlyDbFunctio
|
|
|
2103
2227
|
export type IMutableDbFunctionParameter = IMutableDbFunctionParameter$instance;
|
|
2104
2228
|
|
|
2105
2229
|
export interface IMutableElementType$instance extends IReadOnlyElementType, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2230
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableElementType: never;
|
|
2231
|
+
|
|
2106
2232
|
readonly CollectionProperty: IMutableProperty;
|
|
2107
2233
|
IsNullable: boolean;
|
|
2108
2234
|
readonly ClrType: Type;
|
|
@@ -2132,6 +2258,8 @@ export interface IMutableElementType$instance extends IReadOnlyElementType, IRea
|
|
|
2132
2258
|
export type IMutableElementType = IMutableElementType$instance;
|
|
2133
2259
|
|
|
2134
2260
|
export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadOnlyTypeBase, IReadOnlyAnnotatable, IMutableTypeBase, IMutableAnnotatable {
|
|
2261
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityType: never;
|
|
2262
|
+
|
|
2135
2263
|
get BaseType(): IMutableEntityType | undefined;
|
|
2136
2264
|
set BaseType(value: IMutableEntityType | undefined);
|
|
2137
2265
|
IsKeyless: boolean;
|
|
@@ -2269,6 +2397,8 @@ export interface IMutableEntityType$instance extends IReadOnlyEntityType, IReadO
|
|
|
2269
2397
|
export type IMutableEntityType = IMutableEntityType$instance;
|
|
2270
2398
|
|
|
2271
2399
|
export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEntityTypeMappingFragment, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2400
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityTypeMappingFragment: never;
|
|
2401
|
+
|
|
2272
2402
|
readonly EntityType: IMutableEntityType;
|
|
2273
2403
|
IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
2274
2404
|
readonly StoreObject: StoreObjectIdentifier;
|
|
@@ -2287,6 +2417,8 @@ export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEnt
|
|
|
2287
2417
|
export type IMutableEntityTypeMappingFragment = IMutableEntityTypeMappingFragment$instance;
|
|
2288
2418
|
|
|
2289
2419
|
export interface IMutableForeignKey$instance extends IReadOnlyForeignKey, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2420
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableForeignKey: never;
|
|
2421
|
+
|
|
2290
2422
|
readonly Properties: IReadOnlyList<IMutableProperty>;
|
|
2291
2423
|
readonly PrincipalKey: IMutableKey;
|
|
2292
2424
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
@@ -2323,6 +2455,8 @@ export interface IMutableForeignKey$instance extends IReadOnlyForeignKey, IReadO
|
|
|
2323
2455
|
export type IMutableForeignKey = IMutableForeignKey$instance;
|
|
2324
2456
|
|
|
2325
2457
|
export interface IMutableIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2458
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableIndex: never;
|
|
2459
|
+
|
|
2326
2460
|
IsUnique: boolean;
|
|
2327
2461
|
get IsDescending(): IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
2328
2462
|
set IsDescending(value: IReadOnlyList<System_Internal.Boolean> | undefined);
|
|
@@ -2345,6 +2479,8 @@ export interface IMutableIndex$instance extends IReadOnlyIndex, IReadOnlyAnnotat
|
|
|
2345
2479
|
export type IMutableIndex = IMutableIndex$instance;
|
|
2346
2480
|
|
|
2347
2481
|
export interface IMutableKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2482
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableKey: never;
|
|
2483
|
+
|
|
2348
2484
|
readonly Properties: IReadOnlyList<IMutableProperty>;
|
|
2349
2485
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2350
2486
|
readonly [name: string]: unknown | undefined;
|
|
@@ -2365,6 +2501,8 @@ export interface IMutableKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable
|
|
|
2365
2501
|
export type IMutableKey = IMutableKey$instance;
|
|
2366
2502
|
|
|
2367
2503
|
export interface IMutableModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2504
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableModel: never;
|
|
2505
|
+
|
|
2368
2506
|
readonly ModelId: Guid;
|
|
2369
2507
|
readonly [name: string]: unknown | undefined;
|
|
2370
2508
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
@@ -2411,6 +2549,8 @@ export interface IMutableModel$instance extends IReadOnlyModel, IReadOnlyAnnotat
|
|
|
2411
2549
|
export type IMutableModel = IMutableModel$instance;
|
|
2412
2550
|
|
|
2413
2551
|
export interface IMutableNavigation$instance extends IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableNavigationBase, IMutablePropertyBase, IMutableAnnotatable {
|
|
2552
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableNavigation: never;
|
|
2553
|
+
|
|
2414
2554
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2415
2555
|
readonly TargetEntityType: IMutableEntityType;
|
|
2416
2556
|
readonly ForeignKey: IMutableForeignKey;
|
|
@@ -2448,6 +2588,8 @@ export interface IMutableNavigation$instance extends IReadOnlyNavigation, IReadO
|
|
|
2448
2588
|
export type IMutableNavigation = IMutableNavigation$instance;
|
|
2449
2589
|
|
|
2450
2590
|
export interface IMutableNavigationBase$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2591
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableNavigationBase: never;
|
|
2592
|
+
|
|
2451
2593
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
2452
2594
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
2453
2595
|
readonly Inverse: IReadOnlyNavigationBase;
|
|
@@ -2480,6 +2622,8 @@ export interface IMutableNavigationBase$instance extends IReadOnlyNavigationBase
|
|
|
2480
2622
|
export type IMutableNavigationBase = IMutableNavigationBase$instance;
|
|
2481
2623
|
|
|
2482
2624
|
export interface IMutableProperty$instance extends IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2625
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableProperty: never;
|
|
2626
|
+
|
|
2483
2627
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2484
2628
|
IsNullable: boolean;
|
|
2485
2629
|
ValueGenerated: ValueGenerated;
|
|
@@ -2538,6 +2682,8 @@ export interface IMutableProperty$instance extends IReadOnlyProperty, IReadOnlyP
|
|
|
2538
2682
|
export type IMutableProperty = IMutableProperty$instance;
|
|
2539
2683
|
|
|
2540
2684
|
export interface IMutablePropertyBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutablePropertyBase: never;
|
|
2686
|
+
|
|
2541
2687
|
readonly DeclaringType: IMutableTypeBase;
|
|
2542
2688
|
get FieldInfo(): FieldInfo | undefined;
|
|
2543
2689
|
set FieldInfo(value: FieldInfo | undefined);
|
|
@@ -2565,6 +2711,8 @@ export interface IMutablePropertyBase$instance extends IReadOnlyPropertyBase, IR
|
|
|
2565
2711
|
export type IMutablePropertyBase = IMutablePropertyBase$instance;
|
|
2566
2712
|
|
|
2567
2713
|
export interface IMutableRelationalPropertyOverrides$instance extends IReadOnlyRelationalPropertyOverrides, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2714
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableRelationalPropertyOverrides: never;
|
|
2715
|
+
|
|
2568
2716
|
readonly Property: IMutableProperty;
|
|
2569
2717
|
get ColumnName(): string | undefined;
|
|
2570
2718
|
set ColumnName(value: string | undefined);
|
|
@@ -2586,6 +2734,8 @@ export interface IMutableRelationalPropertyOverrides$instance extends IReadOnlyR
|
|
|
2586
2734
|
export type IMutableRelationalPropertyOverrides = IMutableRelationalPropertyOverrides$instance;
|
|
2587
2735
|
|
|
2588
2736
|
export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2737
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableSequence: never;
|
|
2738
|
+
|
|
2589
2739
|
readonly Model: IMutableModel;
|
|
2590
2740
|
StartValue: long;
|
|
2591
2741
|
IncrementBy: int;
|
|
@@ -2611,6 +2761,8 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
|
|
|
2611
2761
|
export type IMutableSequence = IMutableSequence$instance;
|
|
2612
2762
|
|
|
2613
2763
|
export interface IMutableServiceProperty$instance extends IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutablePropertyBase, IMutableAnnotatable {
|
|
2764
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableServiceProperty: never;
|
|
2765
|
+
|
|
2614
2766
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2615
2767
|
ParameterBinding: ServiceParameterBinding;
|
|
2616
2768
|
readonly Name: string;
|
|
@@ -2640,6 +2792,8 @@ export interface IMutableServiceProperty$instance extends IReadOnlyServiceProper
|
|
|
2640
2792
|
export type IMutableServiceProperty = IMutableServiceProperty$instance;
|
|
2641
2793
|
|
|
2642
2794
|
export interface IMutableSkipNavigation$instance extends IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IMutableNavigationBase, IMutablePropertyBase, IMutableAnnotatable {
|
|
2795
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableSkipNavigation: never;
|
|
2796
|
+
|
|
2643
2797
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2644
2798
|
readonly TargetEntityType: IMutableEntityType;
|
|
2645
2799
|
readonly JoinEntityType: IMutableEntityType;
|
|
@@ -2678,6 +2832,8 @@ export interface IMutableSkipNavigation$instance extends IReadOnlySkipNavigation
|
|
|
2678
2832
|
export type IMutableSkipNavigation = IMutableSkipNavigation$instance;
|
|
2679
2833
|
|
|
2680
2834
|
export interface IMutableStoredProcedure$instance extends IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2835
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedure: never;
|
|
2836
|
+
|
|
2681
2837
|
Name: string;
|
|
2682
2838
|
get Schema(): string | undefined;
|
|
2683
2839
|
set Schema(value: string | undefined);
|
|
@@ -2710,6 +2866,8 @@ export interface IMutableStoredProcedure$instance extends IReadOnlyStoredProcedu
|
|
|
2710
2866
|
export type IMutableStoredProcedure = IMutableStoredProcedure$instance;
|
|
2711
2867
|
|
|
2712
2868
|
export interface IMutableStoredProcedureParameter$instance extends IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2869
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedureParameter: never;
|
|
2870
|
+
|
|
2713
2871
|
readonly StoredProcedure: IMutableStoredProcedure;
|
|
2714
2872
|
Name: string;
|
|
2715
2873
|
Direction: ParameterDirection;
|
|
@@ -2731,6 +2889,8 @@ export interface IMutableStoredProcedureParameter$instance extends IReadOnlyStor
|
|
|
2731
2889
|
export type IMutableStoredProcedureParameter = IMutableStoredProcedureParameter$instance;
|
|
2732
2890
|
|
|
2733
2891
|
export interface IMutableStoredProcedureResultColumn$instance extends IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2892
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableStoredProcedureResultColumn: never;
|
|
2893
|
+
|
|
2734
2894
|
readonly StoredProcedure: IMutableStoredProcedure;
|
|
2735
2895
|
Name: string;
|
|
2736
2896
|
readonly PropertyName: string | undefined;
|
|
@@ -2750,6 +2910,8 @@ export interface IMutableStoredProcedureResultColumn$instance extends IReadOnlyS
|
|
|
2750
2910
|
export type IMutableStoredProcedureResultColumn = IMutableStoredProcedureResultColumn$instance;
|
|
2751
2911
|
|
|
2752
2912
|
export interface IMutableTrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2913
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableTrigger: never;
|
|
2914
|
+
|
|
2753
2915
|
readonly EntityType: IMutableEntityType;
|
|
2754
2916
|
readonly ModelName: string;
|
|
2755
2917
|
readonly [name: string]: unknown | undefined;
|
|
@@ -2767,6 +2929,8 @@ export interface IMutableTrigger$instance extends IReadOnlyTrigger, IReadOnlyAnn
|
|
|
2767
2929
|
export type IMutableTrigger = IMutableTrigger$instance;
|
|
2768
2930
|
|
|
2769
2931
|
export interface IMutableTypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2932
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableTypeBase: never;
|
|
2933
|
+
|
|
2770
2934
|
readonly Model: IMutableModel;
|
|
2771
2935
|
readonly ContainingEntityType: IMutableEntityType;
|
|
2772
2936
|
get BaseType(): IMutableTypeBase | undefined;
|
|
@@ -2832,6 +2996,8 @@ export interface IMutableTypeBase$instance extends IReadOnlyTypeBase, IReadOnlyA
|
|
|
2832
2996
|
export type IMutableTypeBase = IMutableTypeBase$instance;
|
|
2833
2997
|
|
|
2834
2998
|
export interface INavigation$instance extends IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
2999
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigation: never;
|
|
3000
|
+
|
|
2835
3001
|
readonly DeclaringEntityType: IEntityType;
|
|
2836
3002
|
readonly TargetEntityType: IEntityType;
|
|
2837
3003
|
readonly ForeignKey: IForeignKey;
|
|
@@ -2871,6 +3037,8 @@ export interface INavigation$instance extends IReadOnlyNavigation, IReadOnlyNavi
|
|
|
2871
3037
|
export type INavigation = INavigation$instance;
|
|
2872
3038
|
|
|
2873
3039
|
export interface INavigationBase$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
3040
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_INavigationBase: never;
|
|
3041
|
+
|
|
2874
3042
|
readonly DeclaringEntityType: IEntityType;
|
|
2875
3043
|
readonly TargetEntityType: IEntityType;
|
|
2876
3044
|
readonly Inverse: INavigationBase;
|
|
@@ -2907,6 +3075,8 @@ export interface INavigationBase$instance extends IReadOnlyNavigationBase, IRead
|
|
|
2907
3075
|
export type INavigationBase = INavigationBase$instance;
|
|
2908
3076
|
|
|
2909
3077
|
export interface IParameterBindingFactories$instance {
|
|
3078
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactories: never;
|
|
3079
|
+
|
|
2910
3080
|
FindFactory(parameterType: Type, parameterName: string): IParameterBindingFactory | undefined;
|
|
2911
3081
|
}
|
|
2912
3082
|
|
|
@@ -2914,6 +3084,8 @@ export interface IParameterBindingFactories$instance {
|
|
|
2914
3084
|
export type IParameterBindingFactories = IParameterBindingFactories$instance;
|
|
2915
3085
|
|
|
2916
3086
|
export interface IParameterBindingFactory$instance {
|
|
3087
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
3088
|
+
|
|
2917
3089
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
2918
3090
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
2919
3091
|
Bind(entityType: IReadOnlyEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -2924,6 +3096,8 @@ export interface IParameterBindingFactory$instance {
|
|
|
2924
3096
|
export type IParameterBindingFactory = IParameterBindingFactory$instance;
|
|
2925
3097
|
|
|
2926
3098
|
export interface IPrimaryKeyConstraint$instance extends IUniqueConstraint, IAnnotatable, IReadOnlyAnnotatable {
|
|
3099
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPrimaryKeyConstraint: never;
|
|
3100
|
+
|
|
2927
3101
|
readonly Name: string;
|
|
2928
3102
|
readonly MappedKeys: IEnumerable<IKey>;
|
|
2929
3103
|
readonly Table: ITable;
|
|
@@ -2945,6 +3119,8 @@ export interface IPrimaryKeyConstraint$instance extends IUniqueConstraint, IAnno
|
|
|
2945
3119
|
export type IPrimaryKeyConstraint = IPrimaryKeyConstraint$instance;
|
|
2946
3120
|
|
|
2947
3121
|
export interface IProperty$instance extends IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
3122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IProperty: never;
|
|
3123
|
+
|
|
2948
3124
|
readonly DeclaringEntityType: IEntityType;
|
|
2949
3125
|
readonly IsNullable: boolean;
|
|
2950
3126
|
readonly ValueGenerated: ValueGenerated;
|
|
@@ -3001,6 +3177,8 @@ export interface IProperty$instance extends IReadOnlyProperty, IReadOnlyProperty
|
|
|
3001
3177
|
export type IProperty = IProperty$instance;
|
|
3002
3178
|
|
|
3003
3179
|
export interface IPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
3180
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyBase: never;
|
|
3181
|
+
|
|
3004
3182
|
readonly DeclaringType: ITypeBase;
|
|
3005
3183
|
readonly Name: string;
|
|
3006
3184
|
readonly ClrType: Type;
|
|
@@ -3031,6 +3209,8 @@ export interface IPropertyBase$instance extends IReadOnlyPropertyBase, IReadOnly
|
|
|
3031
3209
|
export type IPropertyBase = IPropertyBase$instance;
|
|
3032
3210
|
|
|
3033
3211
|
export interface IPropertyParameterBindingFactory$instance {
|
|
3212
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IPropertyParameterBindingFactory: never;
|
|
3213
|
+
|
|
3034
3214
|
FindParameter(complexType: IComplexType, parameterType: Type, parameterName: string): ParameterBinding | undefined;
|
|
3035
3215
|
FindParameter(entityType: IEntityType, parameterType: Type, parameterName: string): ParameterBinding | undefined;
|
|
3036
3216
|
}
|
|
@@ -3039,6 +3219,8 @@ export interface IPropertyParameterBindingFactory$instance {
|
|
|
3039
3219
|
export type IPropertyParameterBindingFactory = IPropertyParameterBindingFactory$instance;
|
|
3040
3220
|
|
|
3041
3221
|
export interface IQueryFilter$instance {
|
|
3222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IQueryFilter: never;
|
|
3223
|
+
|
|
3042
3224
|
readonly Expression: LambdaExpression;
|
|
3043
3225
|
readonly Key: string | undefined;
|
|
3044
3226
|
readonly IsAnonymous: boolean;
|
|
@@ -3048,6 +3230,8 @@ export interface IQueryFilter$instance {
|
|
|
3048
3230
|
export type IQueryFilter = IQueryFilter$instance;
|
|
3049
3231
|
|
|
3050
3232
|
export interface IReadOnlyCheckConstraint$instance extends IReadOnlyAnnotatable {
|
|
3233
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyCheckConstraint: never;
|
|
3234
|
+
|
|
3051
3235
|
readonly ModelName: string;
|
|
3052
3236
|
readonly Name: string | undefined;
|
|
3053
3237
|
readonly EntityType: IReadOnlyEntityType;
|
|
@@ -3067,6 +3251,8 @@ export interface IReadOnlyCheckConstraint$instance extends Microsoft_EntityFrame
|
|
|
3067
3251
|
export type IReadOnlyCheckConstraint = IReadOnlyCheckConstraint$instance;
|
|
3068
3252
|
|
|
3069
3253
|
export interface IReadOnlyComplexProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3254
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexProperty: never;
|
|
3255
|
+
|
|
3070
3256
|
readonly ComplexType: IReadOnlyComplexType;
|
|
3071
3257
|
readonly IsNullable: boolean;
|
|
3072
3258
|
readonly Name: string;
|
|
@@ -3090,6 +3276,8 @@ export interface IReadOnlyComplexProperty$instance extends IReadOnlyPropertyBase
|
|
|
3090
3276
|
export type IReadOnlyComplexProperty = IReadOnlyComplexProperty$instance;
|
|
3091
3277
|
|
|
3092
3278
|
export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable {
|
|
3279
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyComplexType: never;
|
|
3280
|
+
|
|
3093
3281
|
readonly ComplexProperty: IReadOnlyComplexProperty;
|
|
3094
3282
|
readonly BaseType: IReadOnlyComplexType | undefined;
|
|
3095
3283
|
readonly Model: IReadOnlyModel;
|
|
@@ -3131,6 +3319,8 @@ export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadO
|
|
|
3131
3319
|
export type IReadOnlyComplexType = IReadOnlyComplexType$instance;
|
|
3132
3320
|
|
|
3133
3321
|
export interface IReadOnlyDbFunction$instance extends IReadOnlyAnnotatable {
|
|
3322
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunction: never;
|
|
3323
|
+
|
|
3134
3324
|
readonly Name: string;
|
|
3135
3325
|
readonly Schema: string | undefined;
|
|
3136
3326
|
readonly ModelName: string;
|
|
@@ -3158,6 +3348,8 @@ export interface IReadOnlyDbFunction$instance extends Microsoft_EntityFrameworkC
|
|
|
3158
3348
|
export type IReadOnlyDbFunction = IReadOnlyDbFunction$instance;
|
|
3159
3349
|
|
|
3160
3350
|
export interface IReadOnlyDbFunctionParameter$instance extends IReadOnlyAnnotatable {
|
|
3351
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyDbFunctionParameter: never;
|
|
3352
|
+
|
|
3161
3353
|
readonly Function: IReadOnlyDbFunction;
|
|
3162
3354
|
readonly Name: string;
|
|
3163
3355
|
readonly ClrType: Type;
|
|
@@ -3177,6 +3369,8 @@ export interface IReadOnlyDbFunctionParameter$instance extends Microsoft_EntityF
|
|
|
3177
3369
|
export type IReadOnlyDbFunctionParameter = IReadOnlyDbFunctionParameter$instance;
|
|
3178
3370
|
|
|
3179
3371
|
export interface IReadOnlyElementType$instance extends IReadOnlyAnnotatable {
|
|
3372
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyElementType: never;
|
|
3373
|
+
|
|
3180
3374
|
readonly CollectionProperty: IReadOnlyProperty;
|
|
3181
3375
|
readonly ClrType: Type;
|
|
3182
3376
|
readonly IsNullable: boolean;
|
|
@@ -3199,6 +3393,8 @@ export interface IReadOnlyElementType$instance extends Microsoft_EntityFramework
|
|
|
3199
3393
|
export type IReadOnlyElementType = IReadOnlyElementType$instance;
|
|
3200
3394
|
|
|
3201
3395
|
export interface IReadOnlyEntityType$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable {
|
|
3396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityType: never;
|
|
3397
|
+
|
|
3202
3398
|
readonly BaseType: IReadOnlyEntityType | undefined;
|
|
3203
3399
|
readonly Model: IReadOnlyModel;
|
|
3204
3400
|
readonly ContainingEntityType: IReadOnlyEntityType;
|
|
@@ -3263,6 +3459,8 @@ export interface IReadOnlyEntityType$instance extends IReadOnlyTypeBase, IReadOn
|
|
|
3263
3459
|
export type IReadOnlyEntityType = IReadOnlyEntityType$instance;
|
|
3264
3460
|
|
|
3265
3461
|
export interface IReadOnlyEntityTypeMappingFragment$instance extends IReadOnlyAnnotatable {
|
|
3462
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyEntityTypeMappingFragment: never;
|
|
3463
|
+
|
|
3266
3464
|
readonly EntityType: IReadOnlyEntityType;
|
|
3267
3465
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3268
3466
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
@@ -3279,6 +3477,8 @@ export interface IReadOnlyEntityTypeMappingFragment$instance extends Microsoft_E
|
|
|
3279
3477
|
export type IReadOnlyEntityTypeMappingFragment = IReadOnlyEntityTypeMappingFragment$instance;
|
|
3280
3478
|
|
|
3281
3479
|
export interface IReadOnlyForeignKey$instance extends IReadOnlyAnnotatable {
|
|
3480
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyForeignKey: never;
|
|
3481
|
+
|
|
3282
3482
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3283
3483
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3284
3484
|
readonly PrincipalEntityType: IReadOnlyEntityType;
|
|
@@ -3307,6 +3507,8 @@ export interface IReadOnlyForeignKey$instance extends Microsoft_EntityFrameworkC
|
|
|
3307
3507
|
export type IReadOnlyForeignKey = IReadOnlyForeignKey$instance;
|
|
3308
3508
|
|
|
3309
3509
|
export interface IReadOnlyIndex$instance extends IReadOnlyAnnotatable {
|
|
3510
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyIndex: never;
|
|
3511
|
+
|
|
3310
3512
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3311
3513
|
readonly Name: string | undefined;
|
|
3312
3514
|
readonly IsUnique: boolean;
|
|
@@ -3326,6 +3528,8 @@ export interface IReadOnlyIndex$instance extends Microsoft_EntityFrameworkCore_I
|
|
|
3326
3528
|
export type IReadOnlyIndex = IReadOnlyIndex$instance;
|
|
3327
3529
|
|
|
3328
3530
|
export interface IReadOnlyKey$instance extends IReadOnlyAnnotatable {
|
|
3531
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyKey: never;
|
|
3532
|
+
|
|
3329
3533
|
readonly Properties: IReadOnlyList<IReadOnlyProperty>;
|
|
3330
3534
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3331
3535
|
readonly [name: string]: unknown | undefined;
|
|
@@ -3343,6 +3547,8 @@ export interface IReadOnlyKey$instance extends Microsoft_EntityFrameworkCore_Inf
|
|
|
3343
3547
|
export type IReadOnlyKey = IReadOnlyKey$instance;
|
|
3344
3548
|
|
|
3345
3549
|
export interface IReadOnlyModel$instance extends IReadOnlyAnnotatable {
|
|
3550
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyModel: never;
|
|
3551
|
+
|
|
3346
3552
|
readonly ModelId: Guid;
|
|
3347
3553
|
readonly [name: string]: unknown | undefined;
|
|
3348
3554
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -3368,6 +3574,8 @@ export interface IReadOnlyModel$instance extends Microsoft_EntityFrameworkCore_I
|
|
|
3368
3574
|
export type IReadOnlyModel = IReadOnlyModel$instance;
|
|
3369
3575
|
|
|
3370
3576
|
export interface IReadOnlyNavigation$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3577
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigation: never;
|
|
3578
|
+
|
|
3371
3579
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3372
3580
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
3373
3581
|
readonly Inverse: IReadOnlyNavigation;
|
|
@@ -3396,6 +3604,8 @@ export interface IReadOnlyNavigation$instance extends IReadOnlyNavigationBase, I
|
|
|
3396
3604
|
export type IReadOnlyNavigation = IReadOnlyNavigation$instance;
|
|
3397
3605
|
|
|
3398
3606
|
export interface IReadOnlyNavigationBase$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3607
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyNavigationBase: never;
|
|
3608
|
+
|
|
3399
3609
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3400
3610
|
readonly TargetEntityType: IReadOnlyEntityType;
|
|
3401
3611
|
readonly Inverse: IReadOnlyNavigationBase;
|
|
@@ -3421,6 +3631,8 @@ export interface IReadOnlyNavigationBase$instance extends IReadOnlyPropertyBase,
|
|
|
3421
3631
|
export type IReadOnlyNavigationBase = IReadOnlyNavigationBase$instance;
|
|
3422
3632
|
|
|
3423
3633
|
export interface IReadOnlyProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3634
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyProperty: never;
|
|
3635
|
+
|
|
3424
3636
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3425
3637
|
readonly IsNullable: boolean;
|
|
3426
3638
|
readonly ValueGenerated: ValueGenerated;
|
|
@@ -3461,6 +3673,8 @@ export interface IReadOnlyProperty$instance extends IReadOnlyPropertyBase, IRead
|
|
|
3461
3673
|
export type IReadOnlyProperty = IReadOnlyProperty$instance;
|
|
3462
3674
|
|
|
3463
3675
|
export interface IReadOnlyPropertyBase$instance extends IReadOnlyAnnotatable {
|
|
3676
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyPropertyBase: never;
|
|
3677
|
+
|
|
3464
3678
|
readonly Name: string;
|
|
3465
3679
|
readonly DeclaringType: IReadOnlyTypeBase;
|
|
3466
3680
|
readonly ClrType: Type;
|
|
@@ -3483,6 +3697,8 @@ export interface IReadOnlyPropertyBase$instance extends Microsoft_EntityFramewor
|
|
|
3483
3697
|
export type IReadOnlyPropertyBase = IReadOnlyPropertyBase$instance;
|
|
3484
3698
|
|
|
3485
3699
|
export interface IReadOnlyRelationalPropertyOverrides$instance extends IReadOnlyAnnotatable {
|
|
3700
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyRelationalPropertyOverrides: never;
|
|
3701
|
+
|
|
3486
3702
|
readonly Property: IReadOnlyProperty;
|
|
3487
3703
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3488
3704
|
readonly ColumnName: string | undefined;
|
|
@@ -3500,6 +3716,8 @@ export interface IReadOnlyRelationalPropertyOverrides$instance extends Microsoft
|
|
|
3500
3716
|
export type IReadOnlyRelationalPropertyOverrides = IReadOnlyRelationalPropertyOverrides$instance;
|
|
3501
3717
|
|
|
3502
3718
|
export interface IReadOnlySequence$instance extends IReadOnlyAnnotatable {
|
|
3719
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySequence: never;
|
|
3720
|
+
|
|
3503
3721
|
readonly Name: string;
|
|
3504
3722
|
readonly ModelSchema: string | undefined;
|
|
3505
3723
|
readonly Schema: string | undefined;
|
|
@@ -3523,6 +3741,8 @@ export interface IReadOnlySequence$instance extends Microsoft_EntityFrameworkCor
|
|
|
3523
3741
|
export type IReadOnlySequence = IReadOnlySequence$instance;
|
|
3524
3742
|
|
|
3525
3743
|
export interface IReadOnlyServiceProperty$instance extends IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3744
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyServiceProperty: never;
|
|
3745
|
+
|
|
3526
3746
|
readonly DeclaringEntityType: IReadOnlyEntityType;
|
|
3527
3747
|
readonly ParameterBinding: ServiceParameterBinding;
|
|
3528
3748
|
readonly Name: string;
|
|
@@ -3546,6 +3766,8 @@ export interface IReadOnlyServiceProperty$instance extends IReadOnlyPropertyBase
|
|
|
3546
3766
|
export type IReadOnlyServiceProperty = IReadOnlyServiceProperty$instance;
|
|
3547
3767
|
|
|
3548
3768
|
export interface IReadOnlySkipNavigation$instance extends IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable {
|
|
3769
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlySkipNavigation: never;
|
|
3770
|
+
|
|
3549
3771
|
readonly JoinEntityType: IReadOnlyEntityType;
|
|
3550
3772
|
readonly Inverse: IReadOnlySkipNavigation;
|
|
3551
3773
|
readonly ForeignKey: IReadOnlyForeignKey;
|
|
@@ -3575,6 +3797,8 @@ export interface IReadOnlySkipNavigation$instance extends IReadOnlyNavigationBas
|
|
|
3575
3797
|
export type IReadOnlySkipNavigation = IReadOnlySkipNavigation$instance;
|
|
3576
3798
|
|
|
3577
3799
|
export interface IReadOnlyStoredProcedure$instance extends IReadOnlyAnnotatable {
|
|
3800
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedure: never;
|
|
3801
|
+
|
|
3578
3802
|
readonly Name: string;
|
|
3579
3803
|
readonly Schema: string | undefined;
|
|
3580
3804
|
readonly EntityType: IReadOnlyEntityType;
|
|
@@ -3600,6 +3824,8 @@ export interface IReadOnlyStoredProcedure$instance extends Microsoft_EntityFrame
|
|
|
3600
3824
|
export type IReadOnlyStoredProcedure = IReadOnlyStoredProcedure$instance;
|
|
3601
3825
|
|
|
3602
3826
|
export interface IReadOnlyStoredProcedureParameter$instance extends IReadOnlyAnnotatable {
|
|
3827
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedureParameter: never;
|
|
3828
|
+
|
|
3603
3829
|
readonly StoredProcedure: IReadOnlyStoredProcedure;
|
|
3604
3830
|
readonly Name: string;
|
|
3605
3831
|
readonly PropertyName: string | undefined;
|
|
@@ -3619,6 +3845,8 @@ export interface IReadOnlyStoredProcedureParameter$instance extends Microsoft_En
|
|
|
3619
3845
|
export type IReadOnlyStoredProcedureParameter = IReadOnlyStoredProcedureParameter$instance;
|
|
3620
3846
|
|
|
3621
3847
|
export interface IReadOnlyStoredProcedureResultColumn$instance extends IReadOnlyAnnotatable {
|
|
3848
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoredProcedureResultColumn: never;
|
|
3849
|
+
|
|
3622
3850
|
readonly StoredProcedure: IReadOnlyStoredProcedure;
|
|
3623
3851
|
readonly Name: string;
|
|
3624
3852
|
readonly PropertyName: string | undefined;
|
|
@@ -3636,6 +3864,8 @@ export interface IReadOnlyStoredProcedureResultColumn$instance extends Microsoft
|
|
|
3636
3864
|
export type IReadOnlyStoredProcedureResultColumn = IReadOnlyStoredProcedureResultColumn$instance;
|
|
3637
3865
|
|
|
3638
3866
|
export interface IReadOnlyStoreObjectDictionary_1$instance<T> {
|
|
3867
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoreObjectDictionary_1: never;
|
|
3868
|
+
|
|
3639
3869
|
Find(storeObject: StoreObjectIdentifier): T | undefined;
|
|
3640
3870
|
GetValues(): IEnumerable<T>;
|
|
3641
3871
|
}
|
|
@@ -3644,6 +3874,8 @@ export interface IReadOnlyStoreObjectDictionary_1$instance<T> {
|
|
|
3644
3874
|
export type IReadOnlyStoreObjectDictionary_1<T> = IReadOnlyStoreObjectDictionary_1$instance<T>;
|
|
3645
3875
|
|
|
3646
3876
|
export interface IReadOnlyTrigger$instance extends IReadOnlyAnnotatable {
|
|
3877
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTrigger: never;
|
|
3878
|
+
|
|
3647
3879
|
readonly ModelName: string;
|
|
3648
3880
|
readonly EntityType: IReadOnlyEntityType;
|
|
3649
3881
|
readonly [name: string]: unknown | undefined;
|
|
@@ -3659,6 +3891,8 @@ export interface IReadOnlyTrigger$instance extends Microsoft_EntityFrameworkCore
|
|
|
3659
3891
|
export type IReadOnlyTrigger = IReadOnlyTrigger$instance;
|
|
3660
3892
|
|
|
3661
3893
|
export interface IReadOnlyTypeBase$instance extends IReadOnlyAnnotatable {
|
|
3894
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyTypeBase: never;
|
|
3895
|
+
|
|
3662
3896
|
readonly Model: IReadOnlyModel;
|
|
3663
3897
|
readonly ContainingEntityType: IReadOnlyEntityType;
|
|
3664
3898
|
readonly BaseType: IReadOnlyTypeBase | undefined;
|
|
@@ -3697,6 +3931,8 @@ export interface IReadOnlyTypeBase$instance extends Microsoft_EntityFrameworkCor
|
|
|
3697
3931
|
export type IReadOnlyTypeBase = IReadOnlyTypeBase$instance;
|
|
3698
3932
|
|
|
3699
3933
|
export interface IRelationalAnnotationProvider$instance {
|
|
3934
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalAnnotationProvider: never;
|
|
3935
|
+
|
|
3700
3936
|
For(checkConstraint: ICheckConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3701
3937
|
For(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3702
3938
|
For(foreignKey: IForeignKeyConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
@@ -3722,6 +3958,8 @@ export interface IRelationalAnnotationProvider$instance {
|
|
|
3722
3958
|
export type IRelationalAnnotationProvider = IRelationalAnnotationProvider$instance;
|
|
3723
3959
|
|
|
3724
3960
|
export interface IRelationalModel$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
3961
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalModel: never;
|
|
3962
|
+
|
|
3725
3963
|
readonly Model: IModel;
|
|
3726
3964
|
readonly Tables: IEnumerable<ITable>;
|
|
3727
3965
|
readonly Views: IEnumerable<IView>;
|
|
@@ -3753,6 +3991,8 @@ export interface IRelationalModel$instance extends IAnnotatable, IReadOnlyAnnota
|
|
|
3753
3991
|
export type IRelationalModel = IRelationalModel$instance;
|
|
3754
3992
|
|
|
3755
3993
|
export interface IRelationalPropertyOverrides$instance extends IReadOnlyRelationalPropertyOverrides, IReadOnlyAnnotatable, IAnnotatable {
|
|
3994
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalPropertyOverrides: never;
|
|
3995
|
+
|
|
3756
3996
|
readonly Property: IProperty;
|
|
3757
3997
|
readonly StoreObject: StoreObjectIdentifier;
|
|
3758
3998
|
readonly ColumnName: string | undefined;
|
|
@@ -3773,6 +4013,8 @@ export interface IRelationalPropertyOverrides$instance extends IReadOnlyRelation
|
|
|
3773
4013
|
export type IRelationalPropertyOverrides = IRelationalPropertyOverrides$instance;
|
|
3774
4014
|
|
|
3775
4015
|
export interface ISequence$instance extends IReadOnlySequence, IReadOnlyAnnotatable, IAnnotatable {
|
|
4016
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISequence: never;
|
|
4017
|
+
|
|
3776
4018
|
readonly Model: IModel;
|
|
3777
4019
|
readonly Name: string;
|
|
3778
4020
|
readonly ModelSchema: string | undefined;
|
|
@@ -3799,6 +4041,8 @@ export interface ISequence$instance extends IReadOnlySequence, IReadOnlyAnnotata
|
|
|
3799
4041
|
export type ISequence = ISequence$instance;
|
|
3800
4042
|
|
|
3801
4043
|
export interface IServiceProperty$instance extends IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
4044
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IServiceProperty: never;
|
|
4045
|
+
|
|
3802
4046
|
readonly DeclaringEntityType: IEntityType;
|
|
3803
4047
|
readonly ParameterBinding: ServiceParameterBinding;
|
|
3804
4048
|
readonly Name: string;
|
|
@@ -3832,6 +4076,8 @@ export interface IServiceProperty$instance extends IReadOnlyServiceProperty, IRe
|
|
|
3832
4076
|
export type IServiceProperty = IServiceProperty$instance;
|
|
3833
4077
|
|
|
3834
4078
|
export interface ISkipNavigation$instance extends IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
4079
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISkipNavigation: never;
|
|
4080
|
+
|
|
3835
4081
|
readonly DeclaringEntityType: IEntityType;
|
|
3836
4082
|
readonly TargetEntityType: IEntityType;
|
|
3837
4083
|
readonly JoinEntityType: IEntityType;
|
|
@@ -3872,6 +4118,8 @@ export interface ISkipNavigation$instance extends IReadOnlySkipNavigation, IRead
|
|
|
3872
4118
|
export type ISkipNavigation = ISkipNavigation$instance;
|
|
3873
4119
|
|
|
3874
4120
|
export interface ISqlQuery$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4121
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQuery: never;
|
|
4122
|
+
|
|
3875
4123
|
readonly EntityTypeMappings: IEnumerable<ISqlQueryMapping>;
|
|
3876
4124
|
readonly Columns: IEnumerable<ISqlQueryColumn>;
|
|
3877
4125
|
readonly Sql: string;
|
|
@@ -3903,6 +4151,8 @@ export interface ISqlQuery$instance extends ITableBase, IAnnotatable, IReadOnlyA
|
|
|
3903
4151
|
export type ISqlQuery = ISqlQuery$instance;
|
|
3904
4152
|
|
|
3905
4153
|
export interface ISqlQueryColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4154
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumn: never;
|
|
4155
|
+
|
|
3906
4156
|
readonly SqlQuery: ISqlQuery;
|
|
3907
4157
|
readonly PropertyMappings: IReadOnlyList<ISqlQueryColumnMapping>;
|
|
3908
4158
|
readonly Name: string;
|
|
@@ -3930,6 +4180,8 @@ export interface ISqlQueryColumn$instance extends IColumnBase, IAnnotatable, IRe
|
|
|
3930
4180
|
export type ISqlQueryColumn = ISqlQueryColumn$instance;
|
|
3931
4181
|
|
|
3932
4182
|
export interface ISqlQueryColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4183
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumnMapping: never;
|
|
4184
|
+
|
|
3933
4185
|
readonly Column: ISqlQueryColumn;
|
|
3934
4186
|
readonly SqlQueryMapping: ISqlQueryMapping;
|
|
3935
4187
|
readonly Property: IProperty;
|
|
@@ -3951,6 +4203,8 @@ export interface ISqlQueryColumnMapping$instance extends IColumnMappingBase, IAn
|
|
|
3951
4203
|
export type ISqlQueryColumnMapping = ISqlQueryColumnMapping$instance;
|
|
3952
4204
|
|
|
3953
4205
|
export interface ISqlQueryMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4206
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryMapping: never;
|
|
4207
|
+
|
|
3954
4208
|
IsDefaultSqlQueryMapping: boolean;
|
|
3955
4209
|
readonly SqlQuery: ISqlQuery;
|
|
3956
4210
|
readonly ColumnMappings: IEnumerable<ISqlQueryColumnMapping>;
|
|
@@ -3975,6 +4229,8 @@ export interface ISqlQueryMapping$instance extends ITableMappingBase, IAnnotatab
|
|
|
3975
4229
|
export type ISqlQueryMapping = ISqlQueryMapping$instance;
|
|
3976
4230
|
|
|
3977
4231
|
export interface IStoredProcedure$instance extends IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IAnnotatable {
|
|
4232
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedure: never;
|
|
4233
|
+
|
|
3978
4234
|
readonly Name: string;
|
|
3979
4235
|
readonly EntityType: IEntityType;
|
|
3980
4236
|
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
@@ -4009,6 +4265,8 @@ export interface IStoredProcedure$instance extends IReadOnlyStoredProcedure, IRe
|
|
|
4009
4265
|
export type IStoredProcedure = IStoredProcedure$instance;
|
|
4010
4266
|
|
|
4011
4267
|
export interface IStoredProcedureMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4268
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureMapping: never;
|
|
4269
|
+
|
|
4012
4270
|
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
4013
4271
|
readonly StoredProcedure: IStoredProcedure;
|
|
4014
4272
|
readonly StoredProcedureIdentifier: StoreObjectIdentifier;
|
|
@@ -4037,6 +4295,8 @@ export interface IStoredProcedureMapping$instance extends ITableMappingBase, IAn
|
|
|
4037
4295
|
export type IStoredProcedureMapping = IStoredProcedureMapping$instance;
|
|
4038
4296
|
|
|
4039
4297
|
export interface IStoredProcedureParameter$instance extends IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
4298
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureParameter: never;
|
|
4299
|
+
|
|
4040
4300
|
readonly StoredProcedure: IStoredProcedure;
|
|
4041
4301
|
readonly StoreParameter: IStoreStoredProcedureParameter;
|
|
4042
4302
|
readonly Name: string;
|
|
@@ -4060,6 +4320,8 @@ export interface IStoredProcedureParameter$instance extends IReadOnlyStoredProce
|
|
|
4060
4320
|
export type IStoredProcedureParameter = IStoredProcedureParameter$instance;
|
|
4061
4321
|
|
|
4062
4322
|
export interface IStoredProcedureParameterMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4323
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureParameterMapping: never;
|
|
4324
|
+
|
|
4063
4325
|
readonly StoreParameter: IStoreStoredProcedureParameter;
|
|
4064
4326
|
readonly Parameter: IStoredProcedureParameter;
|
|
4065
4327
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
@@ -4083,6 +4345,8 @@ export interface IStoredProcedureParameterMapping$instance extends IColumnMappin
|
|
|
4083
4345
|
export type IStoredProcedureParameterMapping = IStoredProcedureParameterMapping$instance;
|
|
4084
4346
|
|
|
4085
4347
|
export interface IStoredProcedureResultColumn$instance extends IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IAnnotatable {
|
|
4348
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureResultColumn: never;
|
|
4349
|
+
|
|
4086
4350
|
readonly StoredProcedure: IStoredProcedure;
|
|
4087
4351
|
readonly StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
4088
4352
|
readonly Name: string;
|
|
@@ -4104,6 +4368,8 @@ export interface IStoredProcedureResultColumn$instance extends IReadOnlyStoredPr
|
|
|
4104
4368
|
export type IStoredProcedureResultColumn = IStoredProcedureResultColumn$instance;
|
|
4105
4369
|
|
|
4106
4370
|
export interface IStoredProcedureResultColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4371
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoredProcedureResultColumnMapping: never;
|
|
4372
|
+
|
|
4107
4373
|
readonly StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
4108
4374
|
readonly ResultColumn: IStoredProcedureResultColumn;
|
|
4109
4375
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
@@ -4127,6 +4393,8 @@ export interface IStoredProcedureResultColumnMapping$instance extends IColumnMap
|
|
|
4127
4393
|
export type IStoredProcedureResultColumnMapping = IStoredProcedureResultColumnMapping$instance;
|
|
4128
4394
|
|
|
4129
4395
|
export interface IStoreFunction$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4396
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreFunction: never;
|
|
4397
|
+
|
|
4130
4398
|
readonly DbFunctions: IEnumerable<IDbFunction>;
|
|
4131
4399
|
readonly IsBuiltIn: boolean;
|
|
4132
4400
|
readonly Parameters: IEnumerable<IStoreFunctionParameter>;
|
|
@@ -4161,6 +4429,8 @@ export interface IStoreFunction$instance extends ITableBase, IAnnotatable, IRead
|
|
|
4161
4429
|
export type IStoreFunction = IStoreFunction$instance;
|
|
4162
4430
|
|
|
4163
4431
|
export interface IStoreFunctionParameter$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4432
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreFunctionParameter: never;
|
|
4433
|
+
|
|
4164
4434
|
readonly Function: IStoreFunction;
|
|
4165
4435
|
readonly DbFunctionParameters: IEnumerable<IDbFunctionParameter>;
|
|
4166
4436
|
readonly Name: string;
|
|
@@ -4182,6 +4452,8 @@ export interface IStoreFunctionParameter$instance extends IAnnotatable, IReadOnl
|
|
|
4182
4452
|
export type IStoreFunctionParameter = IStoreFunctionParameter$instance;
|
|
4183
4453
|
|
|
4184
4454
|
export interface IStoreStoredProcedure$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4455
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedure: never;
|
|
4456
|
+
|
|
4185
4457
|
readonly StoredProcedures: IEnumerable<IStoredProcedure>;
|
|
4186
4458
|
readonly EntityTypeMappings: IEnumerable<IStoredProcedureMapping>;
|
|
4187
4459
|
readonly ReturnValue: IStoreStoredProcedureReturnValue | undefined;
|
|
@@ -4218,6 +4490,8 @@ export interface IStoreStoredProcedure$instance extends ITableBase, IAnnotatable
|
|
|
4218
4490
|
export type IStoreStoredProcedure = IStoreStoredProcedure$instance;
|
|
4219
4491
|
|
|
4220
4492
|
export interface IStoreStoredProcedureParameter$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4493
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureParameter: never;
|
|
4494
|
+
|
|
4221
4495
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4222
4496
|
readonly PropertyMappings: IReadOnlyList<IStoredProcedureParameterMapping>;
|
|
4223
4497
|
readonly Direction: ParameterDirection;
|
|
@@ -4247,6 +4521,8 @@ export interface IStoreStoredProcedureParameter$instance extends IColumnBase, IA
|
|
|
4247
4521
|
export type IStoreStoredProcedureParameter = IStoreStoredProcedureParameter$instance;
|
|
4248
4522
|
|
|
4249
4523
|
export interface IStoreStoredProcedureResultColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4524
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureResultColumn: never;
|
|
4525
|
+
|
|
4250
4526
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4251
4527
|
readonly PropertyMappings: IReadOnlyList<IStoredProcedureResultColumnMapping>;
|
|
4252
4528
|
readonly Position: int;
|
|
@@ -4275,6 +4551,8 @@ export interface IStoreStoredProcedureResultColumn$instance extends IColumnBase,
|
|
|
4275
4551
|
export type IStoreStoredProcedureResultColumn = IStoreStoredProcedureResultColumn$instance;
|
|
4276
4552
|
|
|
4277
4553
|
export interface IStoreStoredProcedureReturnValue$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4554
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IStoreStoredProcedureReturnValue: never;
|
|
4555
|
+
|
|
4278
4556
|
readonly StoredProcedure: IStoreStoredProcedure;
|
|
4279
4557
|
readonly Name: string;
|
|
4280
4558
|
readonly StoreType: string;
|
|
@@ -4301,6 +4579,8 @@ export interface IStoreStoredProcedureReturnValue$instance extends IColumnBase,
|
|
|
4301
4579
|
export type IStoreStoredProcedureReturnValue = IStoreStoredProcedureReturnValue$instance;
|
|
4302
4580
|
|
|
4303
4581
|
export interface ITable$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4582
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITable: never;
|
|
4583
|
+
|
|
4304
4584
|
readonly EntityTypeMappings: IEnumerable<ITableMapping>;
|
|
4305
4585
|
readonly Columns: IEnumerable<IColumn>;
|
|
4306
4586
|
readonly IsExcludedFromMigrations: boolean;
|
|
@@ -4340,6 +4620,8 @@ export interface ITable$instance extends ITableBase, IAnnotatable, IReadOnlyAnno
|
|
|
4340
4620
|
export type ITable = ITable$instance;
|
|
4341
4621
|
|
|
4342
4622
|
export interface ITableBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4623
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableBase: never;
|
|
4624
|
+
|
|
4343
4625
|
readonly Name: string;
|
|
4344
4626
|
readonly Schema: string | undefined;
|
|
4345
4627
|
readonly SchemaQualifiedName: string;
|
|
@@ -4368,6 +4650,8 @@ export interface ITableBase$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
4368
4650
|
export type ITableBase = ITableBase$instance;
|
|
4369
4651
|
|
|
4370
4652
|
export interface ITableIndex$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4653
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableIndex: never;
|
|
4654
|
+
|
|
4371
4655
|
readonly Name: string;
|
|
4372
4656
|
readonly MappedIndexes: IEnumerable<IIndex>;
|
|
4373
4657
|
readonly Table: ITable;
|
|
@@ -4391,6 +4675,8 @@ export interface ITableIndex$instance extends IAnnotatable, IReadOnlyAnnotatable
|
|
|
4391
4675
|
export type ITableIndex = ITableIndex$instance;
|
|
4392
4676
|
|
|
4393
4677
|
export interface ITableMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableMapping: never;
|
|
4679
|
+
|
|
4394
4680
|
readonly Table: ITable;
|
|
4395
4681
|
readonly ColumnMappings: IEnumerable<IColumnMapping>;
|
|
4396
4682
|
readonly InsertStoredProcedureMapping: IStoredProcedureMapping | undefined;
|
|
@@ -4416,6 +4702,8 @@ export interface ITableMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4416
4702
|
export type ITableMapping = ITableMapping$instance;
|
|
4417
4703
|
|
|
4418
4704
|
export interface ITableMappingBase$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4705
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableMappingBase: never;
|
|
4706
|
+
|
|
4419
4707
|
readonly TypeBase: ITypeBase;
|
|
4420
4708
|
readonly Table: ITableBase;
|
|
4421
4709
|
readonly ColumnMappings: IEnumerable<IColumnMappingBase>;
|
|
@@ -4438,6 +4726,8 @@ export interface ITableMappingBase$instance extends IAnnotatable, IReadOnlyAnnot
|
|
|
4438
4726
|
export type ITableMappingBase = ITableMappingBase$instance;
|
|
4439
4727
|
|
|
4440
4728
|
export interface ITrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatable, IAnnotatable {
|
|
4729
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITrigger: never;
|
|
4730
|
+
|
|
4441
4731
|
readonly EntityType: IEntityType;
|
|
4442
4732
|
readonly ModelName: string;
|
|
4443
4733
|
readonly [name: string]: unknown | undefined;
|
|
@@ -4456,6 +4746,8 @@ export interface ITrigger$instance extends IReadOnlyTrigger, IReadOnlyAnnotatabl
|
|
|
4456
4746
|
export type ITrigger = ITrigger$instance;
|
|
4457
4747
|
|
|
4458
4748
|
export interface ITypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
4749
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeBase: never;
|
|
4750
|
+
|
|
4459
4751
|
readonly Model: IModel;
|
|
4460
4752
|
readonly ContainingEntityType: IEntityType;
|
|
4461
4753
|
readonly BaseType: ITypeBase | undefined;
|
|
@@ -4507,6 +4799,8 @@ export interface ITypeBase$instance extends IReadOnlyTypeBase, IReadOnlyAnnotata
|
|
|
4507
4799
|
export type ITypeBase = ITypeBase$instance;
|
|
4508
4800
|
|
|
4509
4801
|
export interface ITypeMappingConfiguration$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4802
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeMappingConfiguration: never;
|
|
4803
|
+
|
|
4510
4804
|
readonly ClrType: Type;
|
|
4511
4805
|
readonly [name: string]: unknown | undefined;
|
|
4512
4806
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
@@ -4526,6 +4820,8 @@ export interface ITypeMappingConfiguration$instance extends IAnnotatable, IReadO
|
|
|
4526
4820
|
export type ITypeMappingConfiguration = ITypeMappingConfiguration$instance;
|
|
4527
4821
|
|
|
4528
4822
|
export interface IUniqueConstraint$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4823
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IUniqueConstraint: never;
|
|
4824
|
+
|
|
4529
4825
|
readonly Name: string;
|
|
4530
4826
|
readonly MappedKeys: IEnumerable<IKey>;
|
|
4531
4827
|
readonly Table: ITable;
|
|
@@ -4547,6 +4843,8 @@ export interface IUniqueConstraint$instance extends IAnnotatable, IReadOnlyAnnot
|
|
|
4547
4843
|
export type IUniqueConstraint = IUniqueConstraint$instance;
|
|
4548
4844
|
|
|
4549
4845
|
export interface IView$instance extends ITableBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4846
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IView: never;
|
|
4847
|
+
|
|
4550
4848
|
readonly EntityTypeMappings: IEnumerable<IViewMapping>;
|
|
4551
4849
|
readonly Columns: IEnumerable<IViewColumn>;
|
|
4552
4850
|
readonly ViewDefinitionSql: string | undefined;
|
|
@@ -4578,6 +4876,8 @@ export interface IView$instance extends ITableBase, IAnnotatable, IReadOnlyAnnot
|
|
|
4578
4876
|
export type IView = IView$instance;
|
|
4579
4877
|
|
|
4580
4878
|
export interface IViewColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4879
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumn: never;
|
|
4880
|
+
|
|
4581
4881
|
readonly View: IView;
|
|
4582
4882
|
readonly PropertyMappings: IReadOnlyList<IViewColumnMapping>;
|
|
4583
4883
|
readonly Name: string;
|
|
@@ -4605,6 +4905,8 @@ export interface IViewColumn$instance extends IColumnBase, IAnnotatable, IReadOn
|
|
|
4605
4905
|
export type IViewColumn = IViewColumn$instance;
|
|
4606
4906
|
|
|
4607
4907
|
export interface IViewColumnMapping$instance extends IColumnMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4908
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumnMapping: never;
|
|
4909
|
+
|
|
4608
4910
|
readonly Column: IViewColumn;
|
|
4609
4911
|
readonly ViewMapping: IViewMapping;
|
|
4610
4912
|
readonly Property: IProperty;
|
|
@@ -4626,6 +4928,8 @@ export interface IViewColumnMapping$instance extends IColumnMappingBase, IAnnota
|
|
|
4626
4928
|
export type IViewColumnMapping = IViewColumnMapping$instance;
|
|
4627
4929
|
|
|
4628
4930
|
export interface IViewMapping$instance extends ITableMappingBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
4931
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewMapping: never;
|
|
4932
|
+
|
|
4629
4933
|
readonly View: IView;
|
|
4630
4934
|
readonly ColumnMappings: IEnumerable<IViewColumnMapping>;
|
|
4631
4935
|
readonly TypeBase: ITypeBase;
|
|
@@ -4649,6 +4953,8 @@ export interface IViewMapping$instance extends ITableMappingBase, IAnnotatable,
|
|
|
4649
4953
|
export type IViewMapping = IViewMapping$instance;
|
|
4650
4954
|
|
|
4651
4955
|
export interface MemberIdentity$instance {
|
|
4956
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4957
|
+
|
|
4652
4958
|
readonly MemberInfo: MemberInfo | undefined;
|
|
4653
4959
|
readonly Name: string | undefined;
|
|
4654
4960
|
Equals(obj: unknown): boolean;
|
|
@@ -4687,6 +4993,9 @@ export const ParameterBindingInfo: {
|
|
|
4687
4993
|
export type ParameterBindingInfo = ParameterBindingInfo$instance;
|
|
4688
4994
|
|
|
4689
4995
|
export interface StoreObjectIdentifier$instance {
|
|
4996
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
4997
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4998
|
+
|
|
4690
4999
|
readonly Name: string;
|
|
4691
5000
|
readonly Schema: string | undefined;
|
|
4692
5001
|
readonly StoreObjectType: StoreObjectType;
|
|
@@ -4716,6 +5025,8 @@ export const StoreObjectIdentifier: {
|
|
|
4716
5025
|
export type StoreObjectIdentifier = StoreObjectIdentifier$instance;
|
|
4717
5026
|
|
|
4718
5027
|
export interface AdHocMapper$instance {
|
|
5028
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
|
|
5029
|
+
|
|
4719
5030
|
readonly Dependencies: AdHocMapperDependencies;
|
|
4720
5031
|
BuildConventionSet(): ConventionSet;
|
|
4721
5032
|
GetOrAddEntityType(clrType: Type): RuntimeEntityType;
|
|
@@ -4737,6 +5048,8 @@ export type AdHocMapper = AdHocMapper$instance & __AdHocMapper$views;
|
|
|
4737
5048
|
|
|
4738
5049
|
|
|
4739
5050
|
export interface AdHocMapperDependencies$instance {
|
|
5051
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5052
|
+
|
|
4740
5053
|
Model: IModel;
|
|
4741
5054
|
ModelCreationDependencies: ModelCreationDependencies;
|
|
4742
5055
|
_Clone_$(): AdHocMapperDependencies;
|
|
@@ -4829,6 +5142,9 @@ export const DependencyInjectionParameterBinding: {
|
|
|
4829
5142
|
export type DependencyInjectionParameterBinding = DependencyInjectionParameterBinding$instance;
|
|
4830
5143
|
|
|
4831
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
|
+
|
|
4832
5148
|
Compare(x: IReadOnlyEntityType, y: IReadOnlyEntityType): int;
|
|
4833
5149
|
Equals(x: IReadOnlyEntityType, y: IReadOnlyEntityType): boolean;
|
|
4834
5150
|
GetHashCode(obj: IReadOnlyEntityType): int;
|
|
@@ -4872,6 +5188,9 @@ export const FactoryMethodBinding: {
|
|
|
4872
5188
|
export type FactoryMethodBinding = FactoryMethodBinding$instance;
|
|
4873
5189
|
|
|
4874
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
|
+
|
|
4875
5194
|
Compare(x: IReadOnlyForeignKey, y: IReadOnlyForeignKey): int;
|
|
4876
5195
|
Equals(x: IReadOnlyForeignKey, y: IReadOnlyForeignKey): boolean;
|
|
4877
5196
|
GetHashCode(obj: IReadOnlyForeignKey): int;
|
|
@@ -4886,6 +5205,9 @@ export const ForeignKeyComparer: {
|
|
|
4886
5205
|
export type ForeignKeyComparer = ForeignKeyComparer$instance;
|
|
4887
5206
|
|
|
4888
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
|
+
|
|
4889
5211
|
Compare(x: IReadOnlyIndex, y: IReadOnlyIndex): int;
|
|
4890
5212
|
Equals(x: IReadOnlyIndex, y: IReadOnlyIndex): boolean;
|
|
4891
5213
|
GetHashCode(obj: IReadOnlyIndex): int;
|
|
@@ -4914,6 +5236,9 @@ export const InstantiationBinding: (abstract new(parameterBindings: IReadOnlyLis
|
|
|
4914
5236
|
export type InstantiationBinding = InstantiationBinding$instance;
|
|
4915
5237
|
|
|
4916
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
|
+
|
|
4917
5242
|
Compare(x: IReadOnlyKey, y: IReadOnlyKey): int;
|
|
4918
5243
|
Equals(x: IReadOnlyKey, y: IReadOnlyKey): boolean;
|
|
4919
5244
|
GetHashCode(obj: IReadOnlyKey): int;
|
|
@@ -4928,6 +5253,8 @@ export const KeyComparer: {
|
|
|
4928
5253
|
export type KeyComparer = KeyComparer$instance;
|
|
4929
5254
|
|
|
4930
5255
|
export interface LazyLoaderParameterBindingFactory$instance extends ServiceParameterBindingFactory$instance {
|
|
5256
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
5257
|
+
|
|
4931
5258
|
readonly Dependencies: LazyLoaderParameterBindingFactoryDependencies;
|
|
4932
5259
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
4933
5260
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -4949,6 +5276,8 @@ export type LazyLoaderParameterBindingFactory = LazyLoaderParameterBindingFactor
|
|
|
4949
5276
|
|
|
4950
5277
|
|
|
4951
5278
|
export interface LazyLoaderParameterBindingFactoryDependencies$instance {
|
|
5279
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5280
|
+
|
|
4952
5281
|
_Clone_$(): LazyLoaderParameterBindingFactoryDependencies;
|
|
4953
5282
|
Equals(obj: unknown): boolean;
|
|
4954
5283
|
Equals(other: LazyLoaderParameterBindingFactoryDependencies): boolean;
|
|
@@ -5005,6 +5334,8 @@ export const PropertyParameterBinding: {
|
|
|
5005
5334
|
export type PropertyParameterBinding = PropertyParameterBinding$instance;
|
|
5006
5335
|
|
|
5007
5336
|
export interface RelationalAdHocMapper$instance extends AdHocMapper$instance {
|
|
5337
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
|
|
5338
|
+
|
|
5008
5339
|
readonly RelationalDependencies: RelationalAdHocMapperDependencies;
|
|
5009
5340
|
BuildConventionSet(): ConventionSet;
|
|
5010
5341
|
GetOrAddEntityType(clrType: Type): RuntimeEntityType;
|
|
@@ -5024,6 +5355,8 @@ export type RelationalAdHocMapper = RelationalAdHocMapper$instance & __Relationa
|
|
|
5024
5355
|
|
|
5025
5356
|
|
|
5026
5357
|
export interface RelationalAdHocMapperDependencies$instance {
|
|
5358
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5359
|
+
|
|
5027
5360
|
_Clone_$(): RelationalAdHocMapperDependencies;
|
|
5028
5361
|
Equals(obj: unknown): boolean;
|
|
5029
5362
|
Equals(other: RelationalAdHocMapperDependencies): boolean;
|
|
@@ -5040,6 +5373,8 @@ export const RelationalAdHocMapperDependencies: {
|
|
|
5040
5373
|
export type RelationalAdHocMapperDependencies = RelationalAdHocMapperDependencies$instance;
|
|
5041
5374
|
|
|
5042
5375
|
export interface RelationalAnnotationProvider$instance {
|
|
5376
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IRelationalAnnotationProvider: never;
|
|
5377
|
+
|
|
5043
5378
|
readonly Dependencies: RelationalAnnotationProviderDependencies;
|
|
5044
5379
|
For(model: IRelationalModel, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5045
5380
|
For(table: ITable, designTime: boolean): IEnumerable<IAnnotation>;
|
|
@@ -5076,6 +5411,8 @@ export type RelationalAnnotationProvider = RelationalAnnotationProvider$instance
|
|
|
5076
5411
|
|
|
5077
5412
|
|
|
5078
5413
|
export interface RelationalAnnotationProviderDependencies$instance {
|
|
5414
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
5415
|
+
|
|
5079
5416
|
_Clone_$(): RelationalAnnotationProviderDependencies;
|
|
5080
5417
|
Equals(obj: unknown): boolean;
|
|
5081
5418
|
Equals(other: RelationalAnnotationProviderDependencies): boolean;
|
|
@@ -5092,6 +5429,14 @@ export const RelationalAnnotationProviderDependencies: {
|
|
|
5092
5429
|
export type RelationalAnnotationProviderDependencies = RelationalAnnotationProviderDependencies$instance;
|
|
5093
5430
|
|
|
5094
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;
|
|
5439
|
+
|
|
5095
5440
|
readonly ClrType: Type;
|
|
5096
5441
|
readonly ComplexType: RuntimeComplexType;
|
|
5097
5442
|
readonly DebugView: DebugView;
|
|
@@ -5144,6 +5489,14 @@ export type RuntimeComplexProperty = RuntimeComplexProperty$instance & __Runtime
|
|
|
5144
5489
|
|
|
5145
5490
|
|
|
5146
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;
|
|
5499
|
+
|
|
5147
5500
|
readonly ComplexProperty: RuntimeComplexProperty;
|
|
5148
5501
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5149
5502
|
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
@@ -5220,6 +5573,11 @@ export type RuntimeComplexType = RuntimeComplexType$instance & __RuntimeComplexT
|
|
|
5220
5573
|
|
|
5221
5574
|
|
|
5222
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;
|
|
5580
|
+
|
|
5223
5581
|
readonly DebugView: DebugView;
|
|
5224
5582
|
readonly Model: RuntimeModel;
|
|
5225
5583
|
readonly ModelName: string;
|
|
@@ -5259,6 +5617,11 @@ export type RuntimeDbFunction = RuntimeDbFunction$instance & __RuntimeDbFunction
|
|
|
5259
5617
|
|
|
5260
5618
|
|
|
5261
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;
|
|
5624
|
+
|
|
5262
5625
|
readonly DebugView: DebugView;
|
|
5263
5626
|
readonly Function: RuntimeDbFunction;
|
|
5264
5627
|
readonly Name: string;
|
|
@@ -5296,6 +5659,11 @@ export type RuntimeDbFunctionParameter = RuntimeDbFunctionParameter$instance & _
|
|
|
5296
5659
|
|
|
5297
5660
|
|
|
5298
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;
|
|
5666
|
+
|
|
5299
5667
|
readonly ClrType: Type;
|
|
5300
5668
|
readonly CollectionProperty: IProperty;
|
|
5301
5669
|
readonly DebugView: DebugView;
|
|
@@ -5344,6 +5712,15 @@ export type RuntimeElementType = RuntimeElementType$instance & __RuntimeElementT
|
|
|
5344
5712
|
|
|
5345
5713
|
|
|
5346
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;
|
|
5723
|
+
|
|
5347
5724
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5348
5725
|
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
5349
5726
|
readonly DebugView: DebugView;
|
|
@@ -5450,6 +5827,11 @@ export type RuntimeEntityType = RuntimeEntityType$instance & __RuntimeEntityType
|
|
|
5450
5827
|
|
|
5451
5828
|
|
|
5452
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;
|
|
5834
|
+
|
|
5453
5835
|
readonly DebugView: DebugView;
|
|
5454
5836
|
readonly EntityType: RuntimeEntityType;
|
|
5455
5837
|
readonly IsTableExcludedFromMigrations: Nullable<System_Internal.Boolean>;
|
|
@@ -5486,6 +5868,12 @@ export type RuntimeEntityTypeMappingFragment = RuntimeEntityTypeMappingFragment$
|
|
|
5486
5868
|
|
|
5487
5869
|
|
|
5488
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;
|
|
5876
|
+
|
|
5489
5877
|
readonly DebugView: DebugView;
|
|
5490
5878
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5491
5879
|
readonly PrincipalEntityType: RuntimeEntityType;
|
|
@@ -5527,6 +5915,11 @@ export type RuntimeForeignKey = RuntimeForeignKey$instance & __RuntimeForeignKey
|
|
|
5527
5915
|
|
|
5528
5916
|
|
|
5529
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;
|
|
5922
|
+
|
|
5530
5923
|
readonly DebugView: DebugView;
|
|
5531
5924
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5532
5925
|
readonly Name: string | undefined;
|
|
@@ -5563,6 +5956,12 @@ export type RuntimeIndex = RuntimeIndex$instance & __RuntimeIndex$views;
|
|
|
5563
5956
|
|
|
5564
5957
|
|
|
5565
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;
|
|
5964
|
+
|
|
5566
5965
|
readonly DebugView: DebugView;
|
|
5567
5966
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
5568
5967
|
readonly Properties: IReadOnlyList<RuntimeProperty>;
|
|
@@ -5603,6 +6002,12 @@ export type RuntimeKey = RuntimeKey$instance & __RuntimeKey$views;
|
|
|
5603
6002
|
|
|
5604
6003
|
|
|
5605
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;
|
|
6010
|
+
|
|
5606
6011
|
readonly DebugView: DebugView;
|
|
5607
6012
|
ModelId: Guid;
|
|
5608
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;
|
|
@@ -5646,6 +6051,16 @@ export type RuntimeModel = RuntimeModel$instance & __RuntimeModel$views;
|
|
|
5646
6051
|
|
|
5647
6052
|
|
|
5648
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;
|
|
6063
|
+
|
|
5649
6064
|
readonly ClrType: Type;
|
|
5650
6065
|
readonly DebugView: DebugView;
|
|
5651
6066
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
@@ -5702,6 +6117,14 @@ export type RuntimeNavigation = RuntimeNavigation$instance & __RuntimeNavigation
|
|
|
5702
6117
|
|
|
5703
6118
|
|
|
5704
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;
|
|
6127
|
+
|
|
5705
6128
|
readonly ClrType: Type;
|
|
5706
6129
|
readonly DebugView: DebugView;
|
|
5707
6130
|
readonly DeclaringType: RuntimeTypeBase;
|
|
@@ -5773,6 +6196,12 @@ export type RuntimeProperty = RuntimeProperty$instance & __RuntimeProperty$views
|
|
|
5773
6196
|
|
|
5774
6197
|
|
|
5775
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;
|
|
6204
|
+
|
|
5776
6205
|
readonly ClrType: Type;
|
|
5777
6206
|
readonly DeclaringType: RuntimeTypeBase;
|
|
5778
6207
|
readonly IsCollection: boolean;
|
|
@@ -5819,6 +6248,11 @@ export type RuntimePropertyBase = RuntimePropertyBase$instance & __RuntimeProper
|
|
|
5819
6248
|
|
|
5820
6249
|
|
|
5821
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;
|
|
6255
|
+
|
|
5822
6256
|
readonly DebugView: DebugView;
|
|
5823
6257
|
readonly Property: RuntimeProperty;
|
|
5824
6258
|
readonly StoreObject: StoreObjectIdentifier;
|
|
@@ -5854,6 +6288,11 @@ export type RuntimeRelationalPropertyOverrides = RuntimeRelationalPropertyOverri
|
|
|
5854
6288
|
|
|
5855
6289
|
|
|
5856
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;
|
|
6295
|
+
|
|
5857
6296
|
readonly DebugView: DebugView;
|
|
5858
6297
|
readonly Model: RuntimeModel;
|
|
5859
6298
|
readonly ModelSchema: string | undefined;
|
|
@@ -5891,6 +6330,14 @@ export type RuntimeSequence = RuntimeSequence$instance & __RuntimeSequence$views
|
|
|
5891
6330
|
|
|
5892
6331
|
|
|
5893
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;
|
|
6340
|
+
|
|
5894
6341
|
readonly ClrType: Type;
|
|
5895
6342
|
readonly DebugView: DebugView;
|
|
5896
6343
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
@@ -5944,6 +6391,17 @@ export type RuntimeServiceProperty = RuntimeServiceProperty$instance & __Runtime
|
|
|
5944
6391
|
|
|
5945
6392
|
|
|
5946
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;
|
|
6404
|
+
|
|
5947
6405
|
readonly ClrType: Type;
|
|
5948
6406
|
readonly DebugView: DebugView;
|
|
5949
6407
|
readonly DeclaringEntityType: RuntimeEntityType;
|
|
@@ -6002,6 +6460,11 @@ export type RuntimeSkipNavigation = RuntimeSkipNavigation$instance & __RuntimeSk
|
|
|
6002
6460
|
|
|
6003
6461
|
|
|
6004
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;
|
|
6467
|
+
|
|
6005
6468
|
readonly DebugView: DebugView;
|
|
6006
6469
|
EntityType: RuntimeEntityType;
|
|
6007
6470
|
AddParameter(name: string, direction: ParameterDirection, forRowsAffected: boolean, propertyName: string, forOriginalValue: Nullable<System_Internal.Boolean>): RuntimeStoredProcedureParameter;
|
|
@@ -6038,6 +6501,11 @@ export type RuntimeStoredProcedure = RuntimeStoredProcedure$instance & __Runtime
|
|
|
6038
6501
|
|
|
6039
6502
|
|
|
6040
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;
|
|
6508
|
+
|
|
6041
6509
|
readonly DebugView: DebugView;
|
|
6042
6510
|
readonly EntityType: IEntityType;
|
|
6043
6511
|
readonly ModelName: string;
|
|
@@ -6073,6 +6541,12 @@ export type RuntimeTrigger = RuntimeTrigger$instance & __RuntimeTrigger$views;
|
|
|
6073
6541
|
|
|
6074
6542
|
|
|
6075
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;
|
|
6549
|
+
|
|
6076
6550
|
readonly BaseType: RuntimeTypeBase | undefined;
|
|
6077
6551
|
readonly ClrType: Type;
|
|
6078
6552
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
@@ -6152,6 +6626,10 @@ export type RuntimeTypeBase = RuntimeTypeBase$instance & __RuntimeTypeBase$views
|
|
|
6152
6626
|
|
|
6153
6627
|
|
|
6154
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;
|
|
6632
|
+
|
|
6155
6633
|
readonly ClrType: Type;
|
|
6156
6634
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6157
6635
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -6197,6 +6675,8 @@ export const ServiceParameterBinding: (abstract new(parameterType: Type, service
|
|
|
6197
6675
|
export type ServiceParameterBinding = ServiceParameterBinding$instance;
|
|
6198
6676
|
|
|
6199
6677
|
export interface ServiceParameterBindingFactory$instance {
|
|
6678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IParameterBindingFactory: never;
|
|
6679
|
+
|
|
6200
6680
|
Bind(entityType: IMutableEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
6201
6681
|
Bind(entityType: IConventionEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
6202
6682
|
Bind(entityType: IReadOnlyEntityType, parameterType: Type, parameterName: string): ParameterBinding;
|
|
@@ -6229,6 +6709,8 @@ export const SimpleModelFactory: {
|
|
|
6229
6709
|
export type SimpleModelFactory = SimpleModelFactory$instance;
|
|
6230
6710
|
|
|
6231
6711
|
export interface StoreObjectDictionary_1$instance<T> {
|
|
6712
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IReadOnlyStoreObjectDictionary_1: never;
|
|
6713
|
+
|
|
6232
6714
|
Add(storeObject: StoreObjectIdentifier, value: T): void;
|
|
6233
6715
|
Find(storeObject: StoreObjectIdentifier): T | undefined;
|
|
6234
6716
|
GetValues(): IEnumerable<T>;
|
|
@@ -6249,6 +6731,9 @@ export type StoreObjectDictionary_1<T> = StoreObjectDictionary_1$instance<T> & _
|
|
|
6249
6731
|
|
|
6250
6732
|
|
|
6251
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
|
+
|
|
6252
6737
|
Compare(x: IReadOnlyTypeBase, y: IReadOnlyTypeBase): int;
|
|
6253
6738
|
Equals(x: IReadOnlyTypeBase, y: IReadOnlyTypeBase): boolean;
|
|
6254
6739
|
GetHashCode(obj: IReadOnlyTypeBase): int;
|