@tsonic/efcore 10.0.2 → 10.0.3
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 +18 -35
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +28 -69
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +153 -261
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +43 -55
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +8 -16
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +24 -46
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +8 -50
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +160 -247
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +5 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -3
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +304 -407
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +130 -268
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +266 -598
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +6 -15
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +436 -763
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +95 -116
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +56 -64
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +229 -347
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +468 -719
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +151 -301
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +144 -335
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +4 -10
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +73 -102
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +244 -452
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +19 -47
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +3 -32
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +3 -9
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +114 -133
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +21 -43
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +21 -49
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/package.json +1 -1
|
@@ -83,7 +83,7 @@ export interface IRuntimeComplexProperty$instance extends IComplexProperty, IRea
|
|
|
83
83
|
readonly IsCollection: boolean;
|
|
84
84
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
85
85
|
readonly FieldInfo: FieldInfo | undefined;
|
|
86
|
-
readonly
|
|
86
|
+
readonly [name: string]: unknown | undefined;
|
|
87
87
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
88
88
|
readonly Accessors: PropertyAccessors;
|
|
89
89
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -121,7 +121,7 @@ export interface IRuntimeComplexType$instance extends IComplexType, IReadOnlyCom
|
|
|
121
121
|
readonly ClrType: Type;
|
|
122
122
|
readonly HasSharedClrType: boolean;
|
|
123
123
|
readonly IsPropertyBag: boolean;
|
|
124
|
-
readonly
|
|
124
|
+
readonly [name: string]: unknown | undefined;
|
|
125
125
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
126
126
|
readonly ContainingEntryType: IRuntimeTypeBase;
|
|
127
127
|
readonly OriginalValueCount: int;
|
|
@@ -198,18 +198,18 @@ export interface IRuntimeDbFunction$instance extends IDbFunction, IReadOnlyDbFun
|
|
|
198
198
|
readonly Model: IModel;
|
|
199
199
|
readonly Parameters: IReadOnlyList<IDbFunctionParameter>;
|
|
200
200
|
readonly Name: string;
|
|
201
|
-
readonly Schema: string;
|
|
201
|
+
readonly Schema: string | undefined;
|
|
202
202
|
readonly ModelName: string;
|
|
203
203
|
readonly MethodInfo: MethodInfo | undefined;
|
|
204
204
|
readonly IsBuiltIn: boolean;
|
|
205
205
|
readonly IsScalar: boolean;
|
|
206
206
|
readonly IsAggregate: boolean;
|
|
207
207
|
readonly IsNullable: boolean;
|
|
208
|
-
readonly StoreType: string;
|
|
208
|
+
readonly StoreType: string | undefined;
|
|
209
209
|
readonly ReturnType: Type;
|
|
210
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
210
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
211
211
|
readonly Translation: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
212
|
-
readonly
|
|
212
|
+
readonly [name: string]: unknown | undefined;
|
|
213
213
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
214
214
|
AnnotationsToDebugString(indent?: int): string;
|
|
215
215
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -231,8 +231,8 @@ export interface IRuntimeDbFunctionParameter$instance extends IDbFunctionParamet
|
|
|
231
231
|
readonly Name: string;
|
|
232
232
|
readonly ClrType: Type;
|
|
233
233
|
readonly PropagatesNullability: boolean;
|
|
234
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
235
|
-
readonly
|
|
234
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
235
|
+
readonly [name: string]: unknown | undefined;
|
|
236
236
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
237
237
|
AnnotationsToDebugString(indent?: int): string;
|
|
238
238
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -257,7 +257,7 @@ export interface IRuntimeEntityType$instance extends IEntityType, IReadOnlyEntit
|
|
|
257
257
|
readonly ClrType: Type;
|
|
258
258
|
readonly HasSharedClrType: boolean;
|
|
259
259
|
readonly IsPropertyBag: boolean;
|
|
260
|
-
readonly
|
|
260
|
+
readonly [name: string]: unknown | undefined;
|
|
261
261
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
262
262
|
readonly ContainingEntryType: IRuntimeTypeBase;
|
|
263
263
|
readonly OriginalValueCount: int;
|
|
@@ -404,7 +404,7 @@ export interface IRuntimeForeignKey$instance extends IForeignKey, IReadOnlyForei
|
|
|
404
404
|
readonly IsRequiredDependent: boolean;
|
|
405
405
|
readonly IsOwnership: boolean;
|
|
406
406
|
readonly DeleteBehavior: DeleteBehavior;
|
|
407
|
-
readonly
|
|
407
|
+
readonly [name: string]: unknown | undefined;
|
|
408
408
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
409
409
|
AnnotationsToDebugString(indent?: int): string;
|
|
410
410
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -433,7 +433,7 @@ export type IRuntimeForeignKey = IRuntimeForeignKey$instance;
|
|
|
433
433
|
export interface IRuntimeKey$instance extends IKey, IReadOnlyKey, IReadOnlyAnnotatable, IAnnotatable {
|
|
434
434
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
435
435
|
readonly DeclaringEntityType: IEntityType;
|
|
436
|
-
readonly
|
|
436
|
+
readonly [name: string]: unknown | undefined;
|
|
437
437
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
438
438
|
AnnotationsToDebugString(indent?: int): string;
|
|
439
439
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -459,9 +459,9 @@ export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnl
|
|
|
459
459
|
readonly SkipDetectChanges: boolean;
|
|
460
460
|
readonly RelationalModel: unknown | undefined;
|
|
461
461
|
get ModelDependencies(): RuntimeModelDependencies | undefined;
|
|
462
|
-
set ModelDependencies(value: RuntimeModelDependencies);
|
|
462
|
+
set ModelDependencies(value: RuntimeModelDependencies | undefined);
|
|
463
463
|
readonly ModelId: Guid;
|
|
464
|
-
readonly
|
|
464
|
+
readonly [name: string]: unknown | undefined;
|
|
465
465
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
466
466
|
AnnotationsToDebugString(indent?: int): string;
|
|
467
467
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -514,7 +514,7 @@ export interface IRuntimeNavigation$instance extends INavigation, IReadOnlyNavig
|
|
|
514
514
|
readonly IsCollection: boolean;
|
|
515
515
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
516
516
|
readonly FieldInfo: FieldInfo | undefined;
|
|
517
|
-
readonly
|
|
517
|
+
readonly [name: string]: unknown | undefined;
|
|
518
518
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
519
519
|
readonly Accessors: PropertyAccessors;
|
|
520
520
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -556,7 +556,7 @@ export interface IRuntimeNavigationBase$instance extends INavigationBase, IReadO
|
|
|
556
556
|
readonly IsCollection: boolean;
|
|
557
557
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
558
558
|
readonly FieldInfo: FieldInfo | undefined;
|
|
559
|
-
readonly
|
|
559
|
+
readonly [name: string]: unknown | undefined;
|
|
560
560
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
561
561
|
readonly Accessors: PropertyAccessors;
|
|
562
562
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -597,7 +597,7 @@ export interface IRuntimeProperty$instance extends IProperty, IReadOnlyProperty,
|
|
|
597
597
|
readonly IsCollection: boolean;
|
|
598
598
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
599
599
|
readonly FieldInfo: FieldInfo | undefined;
|
|
600
|
-
readonly
|
|
600
|
+
readonly [name: string]: unknown | undefined;
|
|
601
601
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
602
602
|
readonly Accessors: PropertyAccessors;
|
|
603
603
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -659,7 +659,7 @@ export interface IRuntimePropertyBase$instance extends IPropertyBase, IReadOnlyP
|
|
|
659
659
|
readonly IsCollection: boolean;
|
|
660
660
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
661
661
|
readonly FieldInfo: FieldInfo | undefined;
|
|
662
|
-
readonly
|
|
662
|
+
readonly [name: string]: unknown | undefined;
|
|
663
663
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
664
664
|
AnnotationsToDebugString(indent?: int): string;
|
|
665
665
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -694,7 +694,7 @@ export interface IRuntimeServiceProperty$instance extends IServiceProperty, IRea
|
|
|
694
694
|
readonly IsCollection: boolean;
|
|
695
695
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
696
696
|
readonly FieldInfo: FieldInfo | undefined;
|
|
697
|
-
readonly
|
|
697
|
+
readonly [name: string]: unknown | undefined;
|
|
698
698
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
699
699
|
readonly Accessors: PropertyAccessors;
|
|
700
700
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -738,7 +738,7 @@ export interface IRuntimeSkipNavigation$instance extends ISkipNavigation, IReadO
|
|
|
738
738
|
readonly IsCollection: boolean;
|
|
739
739
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
740
740
|
readonly FieldInfo: FieldInfo | undefined;
|
|
741
|
-
readonly
|
|
741
|
+
readonly [name: string]: unknown | undefined;
|
|
742
742
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
743
743
|
readonly Accessors: PropertyAccessors;
|
|
744
744
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -774,9 +774,9 @@ export interface IRuntimeStoredProcedure$instance extends IStoredProcedure, IRea
|
|
|
774
774
|
readonly EntityType: IEntityType;
|
|
775
775
|
readonly Parameters: IReadOnlyList<IStoredProcedureParameter>;
|
|
776
776
|
readonly ResultColumns: IReadOnlyList<IStoredProcedureResultColumn>;
|
|
777
|
-
readonly Schema: string;
|
|
777
|
+
readonly Schema: string | undefined;
|
|
778
778
|
readonly IsRowsAffectedReturned: boolean;
|
|
779
|
-
readonly
|
|
779
|
+
readonly [name: string]: unknown | undefined;
|
|
780
780
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
781
781
|
AnnotationsToDebugString(indent?: int): string;
|
|
782
782
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -811,11 +811,11 @@ export interface IRuntimeStoredProcedureParameter$instance extends IStoredProced
|
|
|
811
811
|
StoreParameter: IStoreStoredProcedureParameter;
|
|
812
812
|
readonly StoredProcedure: IStoredProcedure;
|
|
813
813
|
readonly Name: string;
|
|
814
|
-
readonly PropertyName: string;
|
|
814
|
+
readonly PropertyName: string | undefined;
|
|
815
815
|
readonly Direction: ParameterDirection;
|
|
816
816
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
817
817
|
readonly ForRowsAffected: boolean;
|
|
818
|
-
readonly
|
|
818
|
+
readonly [name: string]: unknown | undefined;
|
|
819
819
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
820
820
|
AnnotationsToDebugString(indent?: int): string;
|
|
821
821
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -834,9 +834,9 @@ export interface IRuntimeStoredProcedureResultColumn$instance extends IStoredPro
|
|
|
834
834
|
StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
835
835
|
readonly StoredProcedure: IStoredProcedure;
|
|
836
836
|
readonly Name: string;
|
|
837
|
-
readonly PropertyName: string;
|
|
837
|
+
readonly PropertyName: string | undefined;
|
|
838
838
|
readonly ForRowsAffected: boolean;
|
|
839
|
-
readonly
|
|
839
|
+
readonly [name: string]: unknown | undefined;
|
|
840
840
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
841
841
|
AnnotationsToDebugString(indent?: int): string;
|
|
842
842
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -874,7 +874,7 @@ export interface IRuntimeTypeBase$instance extends ITypeBase, IReadOnlyTypeBase,
|
|
|
874
874
|
readonly ClrType: Type;
|
|
875
875
|
readonly HasSharedClrType: boolean;
|
|
876
876
|
readonly IsPropertyBag: boolean;
|
|
877
|
-
readonly
|
|
877
|
+
readonly [name: string]: unknown | undefined;
|
|
878
878
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
879
879
|
AnnotationsToDebugString(indent?: int): string;
|
|
880
880
|
CalculateCounts(): PropertyCounts;
|
|
@@ -927,7 +927,7 @@ export type IRuntimeTypeBase = IRuntimeTypeBase$instance;
|
|
|
927
927
|
export interface TypeIdentity$instance {
|
|
928
928
|
readonly IsNamed: boolean;
|
|
929
929
|
readonly Name: string;
|
|
930
|
-
readonly Type: Type;
|
|
930
|
+
readonly Type: Type | undefined;
|
|
931
931
|
Equals(obj: unknown): boolean;
|
|
932
932
|
Equals(other: TypeIdentity): boolean;
|
|
933
933
|
GetHashCode(): int;
|
|
@@ -943,30 +943,26 @@ export const TypeIdentity: {
|
|
|
943
943
|
|
|
944
944
|
export type TypeIdentity = TypeIdentity$instance;
|
|
945
945
|
|
|
946
|
-
export
|
|
947
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
948
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
949
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
export interface CheckConstraint$instance extends CheckConstraint$protected, ConventionAnnotatable {
|
|
946
|
+
export interface CheckConstraint$instance extends ConventionAnnotatable {
|
|
954
947
|
readonly DebugView: DebugView;
|
|
955
948
|
readonly EntityType: IReadOnlyEntityType;
|
|
956
949
|
readonly IsInModel: boolean;
|
|
957
950
|
readonly IsReadOnly: boolean;
|
|
958
951
|
readonly ModelName: string;
|
|
959
|
-
Name: string;
|
|
952
|
+
get Name(): string | undefined;
|
|
953
|
+
set Name(value: string | undefined);
|
|
960
954
|
readonly Sql: string;
|
|
961
955
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
962
956
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
963
957
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
964
958
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
959
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
965
960
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
966
961
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
967
962
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
968
963
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
969
964
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
965
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
970
966
|
AnnotationsToDebugString(indent?: int): string;
|
|
971
967
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
972
968
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -985,7 +981,8 @@ export interface CheckConstraint$instance extends CheckConstraint$protected, Con
|
|
|
985
981
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
986
982
|
SetAnnotation(name: string, value: unknown): void;
|
|
987
983
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
988
|
-
|
|
984
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
985
|
+
SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
989
986
|
SetRemovedFromModel(): void;
|
|
990
987
|
ToString(): string;
|
|
991
988
|
UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
@@ -1019,22 +1016,17 @@ export interface __CheckConstraint$views {
|
|
|
1019
1016
|
export type CheckConstraint = CheckConstraint$instance & __CheckConstraint$views;
|
|
1020
1017
|
|
|
1021
1018
|
|
|
1022
|
-
export
|
|
1023
|
-
protected CreateBase(memberInfo: MemberInfo): TAccessor;
|
|
1024
|
-
protected CreateBase(propertyBase: IPropertyBase): TAccessor;
|
|
1025
|
-
protected abstract CreateGeneric<TEntity, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): TAccessor;
|
|
1026
|
-
protected abstract GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
export interface ClrAccessorFactory_1$instance<TAccessor> extends ClrAccessorFactory_1$protected<TAccessor> {
|
|
1019
|
+
export interface ClrAccessorFactory_1$instance<TAccessor> {
|
|
1031
1020
|
Create(property: IPropertyBase): TAccessor;
|
|
1032
1021
|
Create(memberInfo: MemberInfo): TAccessor;
|
|
1022
|
+
CreateBase(memberInfo: MemberInfo): TAccessor;
|
|
1023
|
+
CreateBase(propertyBase: IPropertyBase): TAccessor;
|
|
1024
|
+
CreateGeneric<TEntity, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): TAccessor;
|
|
1025
|
+
GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1033
1026
|
}
|
|
1034
1027
|
|
|
1035
1028
|
|
|
1036
|
-
export const ClrAccessorFactory_1: {
|
|
1037
|
-
new<TAccessor>(): ClrAccessorFactory_1<TAccessor>;
|
|
1029
|
+
export const ClrAccessorFactory_1: (abstract new<TAccessor>() => ClrAccessorFactory_1<TAccessor>) & {
|
|
1038
1030
|
};
|
|
1039
1031
|
|
|
1040
1032
|
|
|
@@ -1068,13 +1060,12 @@ export type ClrCollectionAccessor_3<TStructural, TCollection extends IEnumerable
|
|
|
1068
1060
|
|
|
1069
1061
|
|
|
1070
1062
|
export interface ClrCollectionAccessorFactory$instance {
|
|
1071
|
-
Create(structuralProperty: IPropertyBase): IClrCollectionAccessor;
|
|
1063
|
+
Create(structuralProperty: IPropertyBase): IClrCollectionAccessor | undefined;
|
|
1072
1064
|
Create(navigation: INavigationBase, entityType: Type, propertyType: Type, elementType: Type, getCollection: Expression, setCollection: Expression, setCollectionForMaterialization: Expression, createAndSetCollection: Expression, createCollection: Expression): void;
|
|
1073
1065
|
}
|
|
1074
1066
|
|
|
1075
1067
|
|
|
1076
1068
|
export const ClrCollectionAccessorFactory: {
|
|
1077
|
-
new(): ClrCollectionAccessorFactory;
|
|
1078
1069
|
readonly Instance: ClrCollectionAccessorFactory;
|
|
1079
1070
|
CreateAndSet<TStructural, TCollection, TConcreteCollection extends TCollection>(entity: TStructural, setterDelegate: Action<TStructural, TCollection>): TCollection;
|
|
1080
1071
|
CreateAndSetHashSet<TStructural, TCollection, TElement>(entity: TStructural, setterDelegate: Action<TStructural, TCollection>): TCollection;
|
|
@@ -1108,13 +1099,12 @@ export type ClrIndexedCollectionAccessor_3<TStructural, TCollection extends ILis
|
|
|
1108
1099
|
|
|
1109
1100
|
|
|
1110
1101
|
export interface ClrIndexedCollectionAccessorFactory$instance {
|
|
1111
|
-
Create(collection: IPropertyBase): IClrIndexedCollectionAccessor;
|
|
1102
|
+
Create(collection: IPropertyBase): IClrIndexedCollectionAccessor | undefined;
|
|
1112
1103
|
Create(collection: IPropertyBase, entityType: Type, propertyType: Type, elementType: Type, get: Expression, set: Expression, setForMaterialization: Expression, createCollection: Expression): void;
|
|
1113
1104
|
}
|
|
1114
1105
|
|
|
1115
1106
|
|
|
1116
1107
|
export const ClrIndexedCollectionAccessorFactory: {
|
|
1117
|
-
new(): ClrIndexedCollectionAccessorFactory;
|
|
1118
1108
|
readonly Instance: ClrIndexedCollectionAccessorFactory;
|
|
1119
1109
|
};
|
|
1120
1110
|
|
|
@@ -1145,39 +1135,28 @@ export interface __ClrPropertyGetter_3$views<TEntity, TStructural, TValue> {
|
|
|
1145
1135
|
export type ClrPropertyGetter_3<TEntity, TStructural, TValue> = ClrPropertyGetter_3$instance<TEntity, TStructural, TValue> & __ClrPropertyGetter_3$views<TEntity, TStructural, TValue>;
|
|
1146
1136
|
|
|
1147
1137
|
|
|
1148
|
-
export
|
|
1149
|
-
protected CreateGeneric2<TRoot, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): IClrPropertyGetter;
|
|
1150
|
-
protected abstract CreateGeneric<TEntity, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): unknown;
|
|
1151
|
-
protected GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
export interface ClrPropertyGetterFactory$instance extends ClrPropertyGetterFactory$protected, ClrAccessorFactory_1<IClrPropertyGetter> {
|
|
1138
|
+
export interface ClrPropertyGetterFactory$instance extends ClrAccessorFactory_1<IClrPropertyGetter> {
|
|
1156
1139
|
Create(property: IPropertyBase): IClrPropertyGetter;
|
|
1157
1140
|
Create(propertyBase: IPropertyBase, getClrValueUsingContainingEntityExpression: Expression, hasSentinelValueUsingContainingEntityExpression: Expression, getClrValueExpression: Expression, hasSentinelValueExpression: Expression): void;
|
|
1158
1141
|
Create(memberInfo: MemberInfo): IClrPropertyGetter;
|
|
1142
|
+
CreateGeneric<TRoot, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): IClrPropertyGetter;
|
|
1143
|
+
GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1159
1144
|
}
|
|
1160
1145
|
|
|
1161
1146
|
|
|
1162
1147
|
export const ClrPropertyGetterFactory: {
|
|
1163
|
-
new(): ClrPropertyGetterFactory;
|
|
1164
1148
|
readonly Instance: ClrPropertyGetterFactory;
|
|
1165
1149
|
};
|
|
1166
1150
|
|
|
1167
1151
|
|
|
1168
1152
|
export type ClrPropertyGetterFactory = ClrPropertyGetterFactory$instance;
|
|
1169
1153
|
|
|
1170
|
-
export
|
|
1171
|
-
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
export interface ClrPropertyMaterializationSetterFactory$instance extends ClrPropertyMaterializationSetterFactory$protected, ClrPropertySetterFactory {
|
|
1154
|
+
export interface ClrPropertyMaterializationSetterFactory$instance extends ClrPropertySetterFactory {
|
|
1155
|
+
GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1176
1156
|
}
|
|
1177
1157
|
|
|
1178
1158
|
|
|
1179
1159
|
export const ClrPropertyMaterializationSetterFactory: {
|
|
1180
|
-
new(): ClrPropertyMaterializationSetterFactory;
|
|
1181
1160
|
};
|
|
1182
1161
|
|
|
1183
1162
|
|
|
@@ -1203,22 +1182,16 @@ export interface __ClrPropertySetter_3$views<TEntity, TStructural, TValue> {
|
|
|
1203
1182
|
export type ClrPropertySetter_3<TEntity, TStructural, TValue> = ClrPropertySetter_3$instance<TEntity, TStructural, TValue> & __ClrPropertySetter_3$views<TEntity, TStructural, TValue>;
|
|
1204
1183
|
|
|
1205
1184
|
|
|
1206
|
-
export
|
|
1207
|
-
protected CreateGeneric2<TRoot, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): IClrPropertySetter;
|
|
1208
|
-
protected abstract CreateGeneric<TEntity, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): unknown;
|
|
1209
|
-
protected GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
export interface ClrPropertySetterFactory$instance extends ClrPropertySetterFactory$protected, ClrAccessorFactory_1<IClrPropertySetter> {
|
|
1185
|
+
export interface ClrPropertySetterFactory$instance extends ClrAccessorFactory_1<IClrPropertySetter> {
|
|
1214
1186
|
Create(property: IPropertyBase): IClrPropertySetter;
|
|
1215
1187
|
Create(propertyBase: IPropertyBase, setterUsingContainingEntityExpression: Expression, setterExpression: Expression): void;
|
|
1216
1188
|
Create(memberInfo: MemberInfo): IClrPropertySetter;
|
|
1189
|
+
CreateGeneric<TRoot, TDeclaring, TValue>(memberInfo: MemberInfo, propertyBase: IPropertyBase): IClrPropertySetter;
|
|
1190
|
+
GetMemberInfo(propertyBase: IPropertyBase): MemberInfo;
|
|
1217
1191
|
}
|
|
1218
1192
|
|
|
1219
1193
|
|
|
1220
|
-
export const ClrPropertySetterFactory: {
|
|
1221
|
-
new(): ClrPropertySetterFactory;
|
|
1194
|
+
export const ClrPropertySetterFactory: (abstract new() => ClrPropertySetterFactory) & {
|
|
1222
1195
|
readonly Instance: ClrPropertySetterFactory;
|
|
1223
1196
|
};
|
|
1224
1197
|
|
|
@@ -1230,29 +1203,23 @@ export interface CollectionTypeFactory$instance {
|
|
|
1230
1203
|
}
|
|
1231
1204
|
|
|
1232
1205
|
|
|
1233
|
-
export const CollectionTypeFactory: {
|
|
1234
|
-
new(): CollectionTypeFactory;
|
|
1206
|
+
export const CollectionTypeFactory: (abstract new() => CollectionTypeFactory) & {
|
|
1235
1207
|
readonly Instance: CollectionTypeFactory;
|
|
1236
1208
|
};
|
|
1237
1209
|
|
|
1238
1210
|
|
|
1239
1211
|
export type CollectionTypeFactory = CollectionTypeFactory$instance;
|
|
1240
1212
|
|
|
1241
|
-
export
|
|
1242
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1243
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1244
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
export interface Column$instance extends Column$protected, ColumnBase_1$instance<ColumnMapping> {
|
|
1213
|
+
export interface Column$instance extends ColumnBase_1$instance<ColumnMapping> {
|
|
1249
1214
|
Accessors: ColumnAccessors;
|
|
1250
1215
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1251
1216
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1217
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1252
1218
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1253
1219
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1254
1220
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1255
1221
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1222
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1256
1223
|
AnnotationsToDebugString(indent?: int): string;
|
|
1257
1224
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1258
1225
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -1266,6 +1233,7 @@ export interface Column$instance extends Column$protected, ColumnBase_1$instance
|
|
|
1266
1233
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1267
1234
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1268
1235
|
SetAnnotation(name: string, value: unknown): void;
|
|
1236
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1269
1237
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
1270
1238
|
ToString(): string;
|
|
1271
1239
|
}
|
|
@@ -1287,30 +1255,24 @@ export interface __Column$views {
|
|
|
1287
1255
|
export type Column = Column$instance & __Column$views;
|
|
1288
1256
|
|
|
1289
1257
|
|
|
1290
|
-
export
|
|
1291
|
-
protected readonly PropertyMappings: List<TColumnMappingBase>;
|
|
1292
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
1293
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
1294
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
1295
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
export interface ColumnBase_1$instance<TColumnMappingBase extends IColumnMappingBase> extends ColumnBase_1$protected<TColumnMappingBase>, Annotatable {
|
|
1258
|
+
export interface ColumnBase_1$instance<TColumnMappingBase extends IColumnMappingBase> extends Annotatable {
|
|
1300
1259
|
IsNullable: boolean;
|
|
1301
1260
|
readonly IsReadOnly: boolean;
|
|
1302
1261
|
readonly Name: string;
|
|
1262
|
+
readonly PropertyMappings: List<TColumnMappingBase>;
|
|
1303
1263
|
readonly ProviderClrType: Type;
|
|
1304
1264
|
readonly StoreType: string;
|
|
1305
1265
|
readonly StoreTypeMapping: RelationalTypeMapping;
|
|
1306
1266
|
readonly Table: Table | TableBase;
|
|
1307
1267
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1308
1268
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1269
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1309
1270
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1310
1271
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1311
1272
|
AddPropertyMapping(columnMapping: TColumnMappingBase): boolean;
|
|
1312
1273
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1313
1274
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1275
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1314
1276
|
AnnotationsToDebugString(indent?: int): string;
|
|
1315
1277
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1316
1278
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -1318,12 +1280,14 @@ export interface ColumnBase_1$instance<TColumnMappingBase extends IColumnMapping
|
|
|
1318
1280
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1319
1281
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1320
1282
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1283
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
1321
1284
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1322
1285
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1323
1286
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1324
1287
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1325
1288
|
RemovePropertyMapping(columnMapping: TColumnMappingBase): void;
|
|
1326
1289
|
SetAnnotation(name: string, value: unknown): void;
|
|
1290
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1327
1291
|
ToString(): string;
|
|
1328
1292
|
}
|
|
1329
1293
|
|
|
@@ -1352,28 +1316,21 @@ export interface ColumnListComparer$instance {
|
|
|
1352
1316
|
|
|
1353
1317
|
|
|
1354
1318
|
export const ColumnListComparer: {
|
|
1355
|
-
new(): ColumnListComparer;
|
|
1356
1319
|
readonly Instance: ColumnListComparer;
|
|
1357
1320
|
};
|
|
1358
1321
|
|
|
1359
1322
|
|
|
1360
1323
|
export type ColumnListComparer = ColumnListComparer$instance;
|
|
1361
1324
|
|
|
1362
|
-
export
|
|
1363
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1364
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1365
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
1366
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
export interface ColumnMapping$instance extends ColumnMapping$protected, ColumnMappingBase$instance {
|
|
1325
|
+
export interface ColumnMapping$instance extends ColumnMappingBase$instance {
|
|
1371
1326
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1372
1327
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1328
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1373
1329
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1374
1330
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1375
1331
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1376
1332
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1333
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1377
1334
|
AnnotationsToDebugString(indent?: int): string;
|
|
1378
1335
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1379
1336
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -1383,9 +1340,11 @@ export interface ColumnMapping$instance extends ColumnMapping$protected, ColumnM
|
|
|
1383
1340
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1384
1341
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1385
1342
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1343
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
1386
1344
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1387
1345
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1388
1346
|
SetAnnotation(name: string, value: unknown): void;
|
|
1347
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1389
1348
|
ToString(): string;
|
|
1390
1349
|
}
|
|
1391
1350
|
|
|
@@ -1406,15 +1365,7 @@ export interface __ColumnMapping$views {
|
|
|
1406
1365
|
export type ColumnMapping = ColumnMapping$instance & __ColumnMapping$views;
|
|
1407
1366
|
|
|
1408
1367
|
|
|
1409
|
-
export
|
|
1410
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
1411
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
1412
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
1413
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
export interface ColumnMappingBase$instance extends ColumnMappingBase$protected, Annotatable {
|
|
1368
|
+
export interface ColumnMappingBase$instance extends Annotatable {
|
|
1418
1369
|
readonly Column: IColumnBase;
|
|
1419
1370
|
readonly IsReadOnly: boolean;
|
|
1420
1371
|
readonly Property: IProperty;
|
|
@@ -1422,10 +1373,12 @@ export interface ColumnMappingBase$instance extends ColumnMappingBase$protected,
|
|
|
1422
1373
|
readonly TypeMapping: RelationalTypeMapping;
|
|
1423
1374
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1424
1375
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1376
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1425
1377
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1426
1378
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1427
1379
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1428
1380
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1381
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1429
1382
|
AnnotationsToDebugString(indent?: int): string;
|
|
1430
1383
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
1431
1384
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -1435,9 +1388,11 @@ export interface ColumnMappingBase$instance extends ColumnMappingBase$protected,
|
|
|
1435
1388
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1436
1389
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1437
1390
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
1391
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
1438
1392
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1439
1393
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1440
1394
|
SetAnnotation(name: string, value: unknown): void;
|
|
1395
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1441
1396
|
}
|
|
1442
1397
|
|
|
1443
1398
|
|
|
@@ -1464,7 +1419,6 @@ export interface ColumnMappingBaseComparer$instance {
|
|
|
1464
1419
|
|
|
1465
1420
|
|
|
1466
1421
|
export const ColumnMappingBaseComparer: {
|
|
1467
|
-
new(): ColumnMappingBaseComparer;
|
|
1468
1422
|
readonly Instance: ColumnMappingBaseComparer;
|
|
1469
1423
|
};
|
|
1470
1424
|
|
|
@@ -1483,18 +1437,7 @@ export const ColumnNameComparer: {
|
|
|
1483
1437
|
|
|
1484
1438
|
export type ColumnNameComparer = ColumnNameComparer$instance;
|
|
1485
1439
|
|
|
1486
|
-
export
|
|
1487
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
1488
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
1489
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
1490
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1491
|
-
protected OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
1492
|
-
protected OnPropertyNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
1493
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1494
|
-
}
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
export interface ComplexProperty$instance extends ComplexProperty$protected, PropertyBase$instance {
|
|
1440
|
+
export interface ComplexProperty$instance extends PropertyBase$instance {
|
|
1498
1441
|
readonly ClrType: Type;
|
|
1499
1442
|
readonly CollectionAccessor: IClrCollectionAccessor | undefined;
|
|
1500
1443
|
readonly ComplexType: ComplexType;
|
|
@@ -1507,11 +1450,13 @@ export interface ComplexProperty$instance extends ComplexProperty$protected, Pro
|
|
|
1507
1450
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1508
1451
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
1509
1452
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1453
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1510
1454
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1511
1455
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
1512
1456
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1513
1457
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1514
1458
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1459
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1515
1460
|
AnnotationsToDebugString(indent?: int): string;
|
|
1516
1461
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
1517
1462
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -1537,10 +1482,15 @@ export interface ComplexProperty$instance extends ComplexProperty$protected, Pro
|
|
|
1537
1482
|
GetSetter(): IClrPropertySetter;
|
|
1538
1483
|
GetShadowIndex(): int;
|
|
1539
1484
|
IsShadowProperty(): boolean;
|
|
1485
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
1486
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1487
|
+
OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
1488
|
+
OnPropertyNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
1540
1489
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1541
1490
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1542
1491
|
SetAnnotation(name: string, value: unknown): void;
|
|
1543
1492
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
1493
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1544
1494
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
1545
1495
|
SetField(fieldName: string): void;
|
|
1546
1496
|
SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
|
|
@@ -1579,14 +1529,10 @@ export interface __ComplexProperty$views {
|
|
|
1579
1529
|
export type ComplexProperty = ComplexProperty$instance & __ComplexProperty$views;
|
|
1580
1530
|
|
|
1581
1531
|
|
|
1582
|
-
export
|
|
1583
|
-
protected AddRuntimeAnnotation2(name: string, annotation: Annotation): Annotation;
|
|
1584
|
-
}
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
export interface ComplexPropertyConfiguration$instance extends ComplexPropertyConfiguration$protected, AnnotatableBase {
|
|
1532
|
+
export interface ComplexPropertyConfiguration$instance extends AnnotatableBase {
|
|
1588
1533
|
readonly ClrType: Type;
|
|
1589
1534
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1535
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1590
1536
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1591
1537
|
AnnotationsToDebugString(indent?: int): string;
|
|
1592
1538
|
Apply(property: IMutableComplexProperty): void;
|
|
@@ -1628,17 +1574,8 @@ export const ComplexPropertySnapshot: {
|
|
|
1628
1574
|
|
|
1629
1575
|
export type ComplexPropertySnapshot = ComplexPropertySnapshot$instance;
|
|
1630
1576
|
|
|
1631
|
-
export
|
|
1632
|
-
|
|
1633
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
1634
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
1635
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
1636
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1637
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
export interface ComplexType$instance extends ComplexType$protected, TypeBase$instance {
|
|
1577
|
+
export interface ComplexType$instance extends TypeBase$instance {
|
|
1578
|
+
readonly BaseBuilder: InternalTypeBaseBuilder;
|
|
1642
1579
|
readonly ComplexProperty: ComplexProperty;
|
|
1643
1580
|
readonly DebugView: DebugView;
|
|
1644
1581
|
readonly IsInModel: boolean;
|
|
@@ -1646,6 +1583,7 @@ export interface ComplexType$instance extends ComplexType$protected, TypeBase$in
|
|
|
1646
1583
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1647
1584
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
1648
1585
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1586
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1649
1587
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1650
1588
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
1651
1589
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
@@ -1662,7 +1600,7 @@ export interface ComplexType$instance extends ComplexType$protected, TypeBase$in
|
|
|
1662
1600
|
AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
|
|
1663
1601
|
AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
|
|
1664
1602
|
AddIgnored(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
1665
|
-
AddIgnored(memberName: string): string;
|
|
1603
|
+
AddIgnored(memberName: string): string | undefined;
|
|
1666
1604
|
AddIgnored(memberName: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1667
1605
|
AddProperty(name: string, propertyType: Type, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
|
|
1668
1606
|
AddProperty(memberInfo: MemberInfo, configurationSource: ConfigurationSource): Property | undefined;
|
|
@@ -1678,6 +1616,7 @@ export interface ComplexType$instance extends ComplexType$protected, TypeBase$in
|
|
|
1678
1616
|
AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
|
|
1679
1617
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1680
1618
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1619
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1681
1620
|
AnnotationsToDebugString(indent?: int): string;
|
|
1682
1621
|
CalculateCounts(): PropertyCounts;
|
|
1683
1622
|
DisplayName(): string;
|
|
@@ -1740,6 +1679,8 @@ export interface ComplexType$instance extends ComplexType$protected, TypeBase$in
|
|
|
1740
1679
|
IsAssignableFrom(derivedType: TypeBase): boolean;
|
|
1741
1680
|
IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
1742
1681
|
IsIgnored(name: string): boolean;
|
|
1682
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
1683
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1743
1684
|
OnTypeMemberIgnored(name: string): string | undefined;
|
|
1744
1685
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
1745
1686
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
@@ -1756,6 +1697,7 @@ export interface ComplexType$instance extends ComplexType$protected, TypeBase$in
|
|
|
1756
1697
|
RemoveProperty(property: IReadOnlyProperty): IConventionProperty | undefined;
|
|
1757
1698
|
SetAnnotation(name: string, value: unknown): void;
|
|
1758
1699
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
1700
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1759
1701
|
SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
|
|
1760
1702
|
SetBaseType(structuralType: IConventionTypeBase, fromDataAnnotation?: boolean): IConventionTypeBase | undefined;
|
|
1761
1703
|
SetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable<ChangeTrackingStrategy>;
|
|
@@ -1859,14 +1801,7 @@ export interface ConventionAnnotation$instance extends Microsoft_EntityFramework
|
|
|
1859
1801
|
export type ConventionAnnotation = ConventionAnnotation$instance & __ConventionAnnotation$views;
|
|
1860
1802
|
|
|
1861
1803
|
|
|
1862
|
-
export
|
|
1863
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
1864
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1865
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1866
|
-
}
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
export interface DbFunction$instance extends DbFunction$protected, ConventionAnnotatable {
|
|
1804
|
+
export interface DbFunction$instance extends ConventionAnnotatable {
|
|
1870
1805
|
readonly DebugView: DebugView;
|
|
1871
1806
|
readonly IsAggregate: boolean;
|
|
1872
1807
|
IsBuiltIn: boolean;
|
|
@@ -1880,21 +1815,26 @@ export interface DbFunction$instance extends DbFunction$protected, ConventionAnn
|
|
|
1880
1815
|
Name: string;
|
|
1881
1816
|
readonly Parameters: IReadOnlyList<DbFunctionParameter>;
|
|
1882
1817
|
readonly ReturnType: Type;
|
|
1883
|
-
Schema: string;
|
|
1818
|
+
get Schema(): string | undefined;
|
|
1819
|
+
set Schema(value: string | undefined);
|
|
1884
1820
|
readonly StoreFunction: IStoreFunction;
|
|
1885
|
-
StoreType: string;
|
|
1821
|
+
get StoreType(): string | undefined;
|
|
1822
|
+
set StoreType(value: string | undefined);
|
|
1886
1823
|
get Translation(): Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined;
|
|
1887
|
-
set Translation(value: Func<IReadOnlyList<SqlExpression>, SqlExpression>);
|
|
1888
|
-
TypeMapping: RelationalTypeMapping;
|
|
1824
|
+
set Translation(value: Func<IReadOnlyList<SqlExpression>, SqlExpression> | undefined);
|
|
1825
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
1826
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
1889
1827
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
1890
1828
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1891
1829
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1892
1830
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1831
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1893
1832
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1894
1833
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
1895
1834
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1896
1835
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1897
1836
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1837
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1898
1838
|
AnnotationsToDebugString(indent?: int): string;
|
|
1899
1839
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
1900
1840
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -1919,9 +1859,10 @@ export interface DbFunction$instance extends DbFunction$protected, ConventionAnn
|
|
|
1919
1859
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1920
1860
|
SetAnnotation(name: string, value: unknown): void;
|
|
1921
1861
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
1862
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1922
1863
|
SetIsBuiltIn(builtIn: boolean, configurationSource: ConfigurationSource): boolean;
|
|
1923
1864
|
SetIsNullable(nullable: boolean, configurationSource: ConfigurationSource): boolean;
|
|
1924
|
-
SetName(name: string, configurationSource: ConfigurationSource): string;
|
|
1865
|
+
SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
1925
1866
|
SetRemovedFromModel(): void;
|
|
1926
1867
|
SetSchema(schema: string, configurationSource: ConfigurationSource): string | undefined;
|
|
1927
1868
|
SetStoreType(storeType: string, configurationSource: ConfigurationSource): string | undefined;
|
|
@@ -1960,14 +1901,7 @@ export interface __DbFunction$views {
|
|
|
1960
1901
|
export type DbFunction = DbFunction$instance & __DbFunction$views;
|
|
1961
1902
|
|
|
1962
1903
|
|
|
1963
|
-
export
|
|
1964
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
1965
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
1966
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
1967
|
-
}
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
export interface DbFunctionParameter$instance extends DbFunctionParameter$protected, ConventionAnnotatable {
|
|
1904
|
+
export interface DbFunctionParameter$instance extends ConventionAnnotatable {
|
|
1971
1905
|
readonly ClrType: Type;
|
|
1972
1906
|
readonly Function: DbFunction;
|
|
1973
1907
|
readonly IsInModel: boolean;
|
|
@@ -1975,16 +1909,19 @@ export interface DbFunctionParameter$instance extends DbFunctionParameter$protec
|
|
|
1975
1909
|
readonly Name: string;
|
|
1976
1910
|
PropagatesNullability: boolean;
|
|
1977
1911
|
StoreType: string;
|
|
1978
|
-
TypeMapping: RelationalTypeMapping;
|
|
1912
|
+
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
1913
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
1979
1914
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
1980
1915
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
1981
1916
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
1982
1917
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1918
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1983
1919
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
1984
1920
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
1985
1921
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
1986
1922
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
1987
1923
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1924
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1988
1925
|
AnnotationsToDebugString(indent?: int): string;
|
|
1989
1926
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
1990
1927
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -2004,6 +1941,7 @@ export interface DbFunctionParameter$instance extends DbFunctionParameter$protec
|
|
|
2004
1941
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2005
1942
|
SetAnnotation(name: string, value: unknown): void;
|
|
2006
1943
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
1944
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2007
1945
|
SetPropagatesNullability(propagatesNullability: boolean, configurationSource: ConfigurationSource): boolean;
|
|
2008
1946
|
SetRemovedFromModel(): void;
|
|
2009
1947
|
SetStoreType(storeType: string, configurationSource: ConfigurationSource): string | undefined;
|
|
@@ -2050,33 +1988,26 @@ export interface DesignTimeModel$instance extends Microsoft_EntityFrameworkCore_
|
|
|
2050
1988
|
export type DesignTimeModel = DesignTimeModel$instance & __DesignTimeModel$views;
|
|
2051
1989
|
|
|
2052
1990
|
|
|
2053
|
-
export
|
|
2054
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
2055
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2056
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2057
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2058
|
-
protected OnElementTypeNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
2059
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2060
|
-
}
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
export interface ElementType$instance extends ElementType$protected, ConventionAnnotatable {
|
|
1991
|
+
export interface ElementType$instance extends ConventionAnnotatable {
|
|
2064
1992
|
readonly ClrType: Type;
|
|
2065
1993
|
readonly CollectionProperty: Property;
|
|
2066
1994
|
readonly DebugView: DebugView;
|
|
2067
1995
|
readonly IsInModel: boolean;
|
|
2068
1996
|
IsNullable: boolean;
|
|
2069
1997
|
readonly IsReadOnly: boolean;
|
|
2070
|
-
TypeMapping: CoreTypeMapping;
|
|
1998
|
+
get TypeMapping(): CoreTypeMapping | undefined;
|
|
1999
|
+
set TypeMapping(value: CoreTypeMapping | undefined);
|
|
2071
2000
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
2072
2001
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
2073
2002
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2074
2003
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2004
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2075
2005
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2076
2006
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
2077
2007
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2078
2008
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2079
2009
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2010
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2080
2011
|
AnnotationsToDebugString(indent?: int): string;
|
|
2081
2012
|
CheckValueComparer(comparer: ValueComparer): string | undefined;
|
|
2082
2013
|
CheckValueConverter(converter: ValueConverter): string | undefined;
|
|
@@ -2109,10 +2040,14 @@ export interface ElementType$instance extends ElementType$protected, ConventionA
|
|
|
2109
2040
|
GetValueConverter(): ValueConverter | undefined;
|
|
2110
2041
|
GetValueConverterConfigurationSource(): Nullable<ConfigurationSource>;
|
|
2111
2042
|
IsUnicode(): Nullable<System_Internal.Boolean>;
|
|
2043
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2044
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2045
|
+
OnElementTypeNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
2112
2046
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2113
2047
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2114
2048
|
SetAnnotation(name: string, value: unknown): void;
|
|
2115
2049
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
2050
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2116
2051
|
SetConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
2117
2052
|
SetIsNullable(nullable: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable<System_Internal.Boolean>;
|
|
2118
2053
|
SetIsUnicode(unicode: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable<System_Internal.Boolean>;
|
|
@@ -2151,17 +2086,8 @@ export interface __ElementType$views {
|
|
|
2151
2086
|
export type ElementType = ElementType$instance & __ElementType$views;
|
|
2152
2087
|
|
|
2153
2088
|
|
|
2154
|
-
export
|
|
2155
|
-
|
|
2156
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
2157
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
2158
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2159
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2160
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2161
|
-
}
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
export interface EntityType$instance extends EntityType$protected, TypeBase$instance {
|
|
2089
|
+
export interface EntityType$instance extends TypeBase$instance {
|
|
2090
|
+
readonly BaseBuilder: InternalTypeBaseBuilder;
|
|
2165
2091
|
readonly DebugView: DebugView;
|
|
2166
2092
|
readonly ForeignKeyProperties: IReadOnlyList<IProperty>;
|
|
2167
2093
|
readonly IsImplicitlyCreatedJoinEntityType: boolean;
|
|
@@ -2173,6 +2099,7 @@ export interface EntityType$instance extends EntityType$protected, TypeBase$inst
|
|
|
2173
2099
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2174
2100
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
2175
2101
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2102
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2176
2103
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2177
2104
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
2178
2105
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
@@ -2192,7 +2119,7 @@ export interface EntityType$instance extends EntityType$protected, TypeBase$inst
|
|
|
2192
2119
|
AddForeignKey(property: Property, principalKey: Key, principalEntityType: EntityType, componentConfigurationSource: Nullable<ConfigurationSource>, configurationSource: ConfigurationSource): ForeignKey | undefined;
|
|
2193
2120
|
AddForeignKey(properties: IReadOnlyList<Property>, principalKey: Key, principalEntityType: EntityType, componentConfigurationSource: Nullable<ConfigurationSource>, configurationSource: ConfigurationSource): ForeignKey | undefined;
|
|
2194
2121
|
AddIgnored(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
2195
|
-
AddIgnored(memberName: string): string;
|
|
2122
|
+
AddIgnored(memberName: string): string | undefined;
|
|
2196
2123
|
AddIgnored(memberName: string, fromDataAnnotation?: boolean): string | undefined;
|
|
2197
2124
|
AddIndex(property: Property, configurationSource: ConfigurationSource): Index | undefined;
|
|
2198
2125
|
AddIndex(property: Property, name: string, configurationSource: ConfigurationSource): Index | undefined;
|
|
@@ -2217,6 +2144,7 @@ export interface EntityType$instance extends EntityType$protected, TypeBase$inst
|
|
|
2217
2144
|
AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
|
|
2218
2145
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2219
2146
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2147
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2220
2148
|
AddServiceProperty(memberInfo: MemberInfo, serviceType: Type, configurationSource: ConfigurationSource): ServiceProperty;
|
|
2221
2149
|
AddSkipNavigation(name: string, navigationType: Type, memberInfo: MemberInfo, targetEntityType: EntityType, collection: boolean, onDependent: boolean, configurationSource: ConfigurationSource): SkipNavigation | undefined;
|
|
2222
2150
|
AddTrigger(modelName: string, configurationSource: ConfigurationSource): Trigger | undefined;
|
|
@@ -2366,6 +2294,8 @@ export interface EntityType$instance extends EntityType$protected, TypeBase$inst
|
|
|
2366
2294
|
IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
2367
2295
|
IsIgnored(name: string): boolean;
|
|
2368
2296
|
IsOwned(): boolean;
|
|
2297
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2298
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2369
2299
|
OnForeignKeyUpdated(foreignKey: ForeignKey): void;
|
|
2370
2300
|
OnForeignKeyUpdating(foreignKey: ForeignKey): void;
|
|
2371
2301
|
OnTypeMemberIgnored(name: string): string | undefined;
|
|
@@ -2397,6 +2327,7 @@ export interface EntityType$instance extends EntityType$protected, TypeBase$inst
|
|
|
2397
2327
|
RemoveTrigger(modelName: string): Trigger | undefined;
|
|
2398
2328
|
SetAnnotation(name: string, value: unknown): void;
|
|
2399
2329
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
2330
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2400
2331
|
SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
|
|
2401
2332
|
SetBaseType(structuralType: IConventionTypeBase, fromDataAnnotation?: boolean): IConventionTypeBase | undefined;
|
|
2402
2333
|
SetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable<ChangeTrackingStrategy>;
|
|
@@ -2456,14 +2387,7 @@ export const EntityType_Snapshot: {
|
|
|
2456
2387
|
|
|
2457
2388
|
export type EntityType_Snapshot = EntityType_Snapshot$instance;
|
|
2458
2389
|
|
|
2459
|
-
export
|
|
2460
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
2461
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2462
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
export interface EntityTypeMappingFragment$instance extends EntityTypeMappingFragment$protected, ConventionAnnotatable {
|
|
2390
|
+
export interface EntityTypeMappingFragment$instance extends ConventionAnnotatable {
|
|
2467
2391
|
readonly DebugView: DebugView;
|
|
2468
2392
|
readonly EntityType: IReadOnlyEntityType;
|
|
2469
2393
|
readonly IsInModel: boolean;
|
|
@@ -2474,11 +2398,13 @@ export interface EntityTypeMappingFragment$instance extends EntityTypeMappingFra
|
|
|
2474
2398
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
2475
2399
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2476
2400
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2401
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2477
2402
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2478
2403
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
2479
2404
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2480
2405
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2481
2406
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2407
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2482
2408
|
AnnotationsToDebugString(indent?: int): string;
|
|
2483
2409
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
2484
2410
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -2496,6 +2422,7 @@ export interface EntityTypeMappingFragment$instance extends EntityTypeMappingFra
|
|
|
2496
2422
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2497
2423
|
SetAnnotation(name: string, value: unknown): void;
|
|
2498
2424
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
2425
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2499
2426
|
SetIsTableExcludedFromMigrations(excluded: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable<System_Internal.Boolean>;
|
|
2500
2427
|
SetRemovedFromModel(): void;
|
|
2501
2428
|
ToString(): string;
|
|
@@ -2548,23 +2475,14 @@ export interface __EntityTypeParameterBindingFactory$views {
|
|
|
2548
2475
|
export type EntityTypeParameterBindingFactory = EntityTypeParameterBindingFactory$instance & __EntityTypeParameterBindingFactory$views;
|
|
2549
2476
|
|
|
2550
2477
|
|
|
2551
|
-
export
|
|
2552
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
2553
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2554
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2555
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2556
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2557
|
-
}
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
export interface ForeignKey$instance extends ForeignKey$protected, ConventionAnnotatable {
|
|
2478
|
+
export interface ForeignKey$instance extends ConventionAnnotatable {
|
|
2561
2479
|
readonly DebugView: DebugView;
|
|
2562
2480
|
readonly DeclaringEntityType: EntityType;
|
|
2563
2481
|
DeleteBehavior: DeleteBehavior;
|
|
2564
2482
|
DependentKeyValueFactory: IDependentKeyValueFactory;
|
|
2565
2483
|
DependentsMapFactory: Func<IDependentsMap>;
|
|
2566
2484
|
get DependentToPrincipal(): Navigation | undefined;
|
|
2567
|
-
set DependentToPrincipal(value: Navigation);
|
|
2485
|
+
set DependentToPrincipal(value: Navigation | undefined);
|
|
2568
2486
|
readonly IsInModel: boolean;
|
|
2569
2487
|
IsOwnership: boolean;
|
|
2570
2488
|
readonly IsReadOnly: boolean;
|
|
@@ -2574,19 +2492,21 @@ export interface ForeignKey$instance extends ForeignKey$protected, ConventionAnn
|
|
|
2574
2492
|
readonly PrincipalEntityType: EntityType;
|
|
2575
2493
|
PrincipalKey: Key;
|
|
2576
2494
|
get PrincipalToDependent(): Navigation | undefined;
|
|
2577
|
-
set PrincipalToDependent(value: Navigation);
|
|
2495
|
+
set PrincipalToDependent(value: Navigation | undefined);
|
|
2578
2496
|
Properties: IReadOnlyList<Property>;
|
|
2579
2497
|
get ReferencingSkipNavigations(): ISet<SkipNavigation> | undefined;
|
|
2580
|
-
set ReferencingSkipNavigations(value: ISet<SkipNavigation>);
|
|
2498
|
+
set ReferencingSkipNavigations(value: ISet<SkipNavigation> | undefined);
|
|
2581
2499
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
2582
2500
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
2583
2501
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2584
2502
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2503
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2585
2504
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2586
2505
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
2587
2506
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2588
2507
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2589
2508
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2509
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2590
2510
|
AnnotationsToDebugString(indent?: int): string;
|
|
2591
2511
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
2592
2512
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -2612,11 +2532,14 @@ export interface ForeignKey$instance extends ForeignKey$protected, ConventionAnn
|
|
|
2612
2532
|
GetPropertiesConfigurationSource(): Nullable<ConfigurationSource>;
|
|
2613
2533
|
GetReferencingSkipNavigations(): IEnumerable__System_Collections_Generic<SkipNavigation>;
|
|
2614
2534
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
2535
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2536
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2615
2537
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2616
2538
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2617
2539
|
ResolveOtherEntityType(entityType: EntityType): EntityType;
|
|
2618
2540
|
SetAnnotation(name: string, value: unknown): void;
|
|
2619
2541
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
2542
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2620
2543
|
SetDeleteBehavior(deleteBehavior: Nullable<DeleteBehavior>, configurationSource: ConfigurationSource): Nullable<DeleteBehavior>;
|
|
2621
2544
|
SetDependentToPrincipal(name: string, configurationSource: ConfigurationSource): Navigation | undefined;
|
|
2622
2545
|
SetDependentToPrincipal(property: MemberInfo, configurationSource: ConfigurationSource): Navigation | undefined;
|
|
@@ -2669,14 +2592,7 @@ export interface __ForeignKey$views {
|
|
|
2669
2592
|
export type ForeignKey = ForeignKey$instance & __ForeignKey$views;
|
|
2670
2593
|
|
|
2671
2594
|
|
|
2672
|
-
export
|
|
2673
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
2674
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
2675
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2676
|
-
}
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
export interface ForeignKeyConstraint$instance extends ForeignKeyConstraint$protected, Annotatable {
|
|
2595
|
+
export interface ForeignKeyConstraint$instance extends Annotatable {
|
|
2680
2596
|
readonly Columns: IReadOnlyList<Column>;
|
|
2681
2597
|
readonly IsReadOnly: boolean;
|
|
2682
2598
|
readonly MappedForeignKeys: SortedSet<IForeignKey>;
|
|
@@ -2688,10 +2604,12 @@ export interface ForeignKeyConstraint$instance extends ForeignKeyConstraint$prot
|
|
|
2688
2604
|
readonly Table: Table;
|
|
2689
2605
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2690
2606
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2607
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2691
2608
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2692
2609
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2693
2610
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2694
2611
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2612
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2695
2613
|
AnnotationsToDebugString(indent?: int): string;
|
|
2696
2614
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
2697
2615
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -2705,6 +2623,7 @@ export interface ForeignKeyConstraint$instance extends ForeignKeyConstraint$prot
|
|
|
2705
2623
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2706
2624
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2707
2625
|
SetAnnotation(name: string, value: unknown): void;
|
|
2626
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2708
2627
|
SetRowForeignKeyValueFactory(factory: IRowForeignKeyValueFactory): void;
|
|
2709
2628
|
ToString(): string;
|
|
2710
2629
|
}
|
|
@@ -2733,28 +2652,22 @@ export interface ForeignKeyConstraintComparer$instance {
|
|
|
2733
2652
|
|
|
2734
2653
|
|
|
2735
2654
|
export const ForeignKeyConstraintComparer: {
|
|
2736
|
-
new(): ForeignKeyConstraintComparer;
|
|
2737
2655
|
readonly Instance: ForeignKeyConstraintComparer;
|
|
2738
2656
|
};
|
|
2739
2657
|
|
|
2740
2658
|
|
|
2741
2659
|
export type ForeignKeyConstraintComparer = ForeignKeyConstraintComparer$instance;
|
|
2742
2660
|
|
|
2743
|
-
export
|
|
2744
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2745
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2746
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2747
|
-
}
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
export interface FunctionColumn$instance extends FunctionColumn$protected, ColumnBase_1$instance<FunctionColumnMapping> {
|
|
2661
|
+
export interface FunctionColumn$instance extends ColumnBase_1$instance<FunctionColumnMapping> {
|
|
2751
2662
|
readonly Function: StoreFunction;
|
|
2752
2663
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2753
2664
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2665
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2754
2666
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2755
2667
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2756
2668
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2757
2669
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2670
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2758
2671
|
AnnotationsToDebugString(indent?: int): string;
|
|
2759
2672
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
2760
2673
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -2768,6 +2681,7 @@ export interface FunctionColumn$instance extends FunctionColumn$protected, Colum
|
|
|
2768
2681
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2769
2682
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2770
2683
|
SetAnnotation(name: string, value: unknown): void;
|
|
2684
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2771
2685
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
2772
2686
|
ToString(): string;
|
|
2773
2687
|
}
|
|
@@ -2789,22 +2703,16 @@ export interface __FunctionColumn$views {
|
|
|
2789
2703
|
export type FunctionColumn = FunctionColumn$instance & __FunctionColumn$views;
|
|
2790
2704
|
|
|
2791
2705
|
|
|
2792
|
-
export
|
|
2793
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2794
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2795
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
2796
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2797
|
-
}
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
export interface FunctionColumnMapping$instance extends FunctionColumnMapping$protected, ColumnMappingBase$instance {
|
|
2706
|
+
export interface FunctionColumnMapping$instance extends ColumnMappingBase$instance {
|
|
2801
2707
|
readonly FunctionMapping: IFunctionMapping;
|
|
2802
2708
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2803
2709
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2710
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2804
2711
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2805
2712
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2806
2713
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2807
2714
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2715
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2808
2716
|
AnnotationsToDebugString(indent?: int): string;
|
|
2809
2717
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
2810
2718
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -2814,9 +2722,11 @@ export interface FunctionColumnMapping$instance extends FunctionColumnMapping$pr
|
|
|
2814
2722
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
2815
2723
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
2816
2724
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
2725
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
2817
2726
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2818
2727
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2819
2728
|
SetAnnotation(name: string, value: unknown): void;
|
|
2729
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2820
2730
|
ToString(): string;
|
|
2821
2731
|
}
|
|
2822
2732
|
|
|
@@ -2837,23 +2747,18 @@ export interface __FunctionColumnMapping$views {
|
|
|
2837
2747
|
export type FunctionColumnMapping = FunctionColumnMapping$instance & __FunctionColumnMapping$views;
|
|
2838
2748
|
|
|
2839
2749
|
|
|
2840
|
-
export
|
|
2841
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2842
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2843
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2844
|
-
}
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
export interface FunctionMapping$instance extends FunctionMapping$protected, TableMappingBase_1$instance<FunctionColumnMapping> {
|
|
2750
|
+
export interface FunctionMapping$instance extends TableMappingBase_1$instance<FunctionColumnMapping> {
|
|
2848
2751
|
readonly DbFunction: IDbFunction;
|
|
2849
2752
|
IsDefaultFunctionMapping: boolean;
|
|
2850
2753
|
readonly StoreFunction: IStoreFunction;
|
|
2851
2754
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2852
2755
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2756
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2853
2757
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2854
2758
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2855
2759
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2856
2760
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2761
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2857
2762
|
AnnotationsToDebugString(indent?: int): string;
|
|
2858
2763
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
2859
2764
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -2866,6 +2771,7 @@ export interface FunctionMapping$instance extends FunctionMapping$protected, Tab
|
|
|
2866
2771
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2867
2772
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2868
2773
|
SetAnnotation(name: string, value: unknown): void;
|
|
2774
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2869
2775
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
2870
2776
|
ToString(): string;
|
|
2871
2777
|
}
|
|
@@ -2887,33 +2793,27 @@ export interface __FunctionMapping$views {
|
|
|
2887
2793
|
export type FunctionMapping = FunctionMapping$instance & __FunctionMapping$views;
|
|
2888
2794
|
|
|
2889
2795
|
|
|
2890
|
-
export
|
|
2891
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
2892
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
2893
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2894
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2895
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2896
|
-
}
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
export interface Index$instance extends Index$protected, ConventionAnnotatable {
|
|
2796
|
+
export interface Index$instance extends ConventionAnnotatable {
|
|
2900
2797
|
readonly DebugView: DebugView;
|
|
2901
2798
|
readonly DeclaringEntityType: EntityType;
|
|
2902
|
-
IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
2799
|
+
get IsDescending(): IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
2800
|
+
set IsDescending(value: IReadOnlyList<System_Internal.Boolean> | undefined);
|
|
2903
2801
|
readonly IsInModel: boolean;
|
|
2904
2802
|
readonly IsReadOnly: boolean;
|
|
2905
2803
|
IsUnique: boolean;
|
|
2906
|
-
readonly Name: string;
|
|
2804
|
+
readonly Name: string | undefined;
|
|
2907
2805
|
readonly Properties: IReadOnlyList<Property>;
|
|
2908
2806
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
2909
2807
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
2910
2808
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2911
2809
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
2810
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2912
2811
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
2913
2812
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
2914
2813
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
2915
2814
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
2916
2815
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
2816
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
2917
2817
|
AnnotationsToDebugString(indent?: int): string;
|
|
2918
2818
|
DisplayName(): string;
|
|
2919
2819
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
@@ -2930,10 +2830,13 @@ export interface Index$instance extends Index$protected, ConventionAnnotatable {
|
|
|
2930
2830
|
GetNullableValueFactory<TKey>(): IDependentKeyValueFactory_1<TKey>;
|
|
2931
2831
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
2932
2832
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
2833
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
2834
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2933
2835
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
2934
2836
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
2935
2837
|
SetAnnotation(name: string, value: unknown): void;
|
|
2936
2838
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
2839
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
2937
2840
|
SetIsDescending(descending: IReadOnlyList<System_Internal.Boolean>, configurationSource: ConfigurationSource): IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
2938
2841
|
SetIsUnique(unique: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable<System_Internal.Boolean>;
|
|
2939
2842
|
SetRemovedFromModel(): void;
|
|
@@ -2991,12 +2894,7 @@ export interface __InternalCheckConstraintBuilder$views {
|
|
|
2991
2894
|
export type InternalCheckConstraintBuilder = InternalCheckConstraintBuilder$instance & __InternalCheckConstraintBuilder$views;
|
|
2992
2895
|
|
|
2993
2896
|
|
|
2994
|
-
export
|
|
2995
|
-
protected readonly This: InternalComplexPropertyBuilder;
|
|
2996
|
-
}
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
export interface InternalComplexPropertyBuilder$instance extends InternalComplexPropertyBuilder$protected, InternalPropertyBaseBuilder_2$instance<IConventionComplexPropertyBuilder, ComplexProperty> {
|
|
2897
|
+
export interface InternalComplexPropertyBuilder$instance extends InternalPropertyBaseBuilder_2$instance<IConventionComplexPropertyBuilder, ComplexProperty> {
|
|
3000
2898
|
readonly ComplexTypeBuilder: InternalComplexTypeBuilder;
|
|
3001
2899
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3002
2900
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3032,21 +2930,16 @@ export interface __InternalComplexPropertyBuilder$views {
|
|
|
3032
2930
|
export type InternalComplexPropertyBuilder = InternalComplexPropertyBuilder$instance & __InternalComplexPropertyBuilder$views;
|
|
3033
2931
|
|
|
3034
2932
|
|
|
3035
|
-
export
|
|
3036
|
-
protected CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
|
|
3037
|
-
protected CanIgnore2(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
3038
|
-
protected Property5(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3039
|
-
}
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
export interface InternalComplexTypeBuilder$instance extends InternalComplexTypeBuilder$protected, InternalTypeBaseBuilder$instance {
|
|
2933
|
+
export interface InternalComplexTypeBuilder$instance extends InternalTypeBaseBuilder$instance {
|
|
3043
2934
|
CanAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
|
|
2935
|
+
CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
|
|
3044
2936
|
CanHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3045
2937
|
CanHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
3046
2938
|
CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
3047
2939
|
CanHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, checkClrProperty?: boolean): boolean;
|
|
3048
2940
|
CanHaveProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): boolean;
|
|
3049
2941
|
CanHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
2942
|
+
CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
3050
2943
|
CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3051
2944
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3052
2945
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3102,6 +2995,7 @@ export interface InternalComplexTypeBuilder$instance extends InternalComplexType
|
|
|
3102
2995
|
Property(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3103
2996
|
Property(propertyName: string, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
3104
2997
|
Property(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
2998
|
+
Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3105
2999
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
3106
3000
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
3107
3001
|
RemoveUnusedImplicitProperties(properties: IReadOnlyList<IConventionProperty>): InternalTypeBaseBuilder;
|
|
@@ -3194,12 +3088,8 @@ export interface __InternalDbFunctionParameterBuilder$views {
|
|
|
3194
3088
|
export type InternalDbFunctionParameterBuilder = InternalDbFunctionParameterBuilder$instance & __InternalDbFunctionParameterBuilder$views;
|
|
3195
3089
|
|
|
3196
3090
|
|
|
3197
|
-
export
|
|
3198
|
-
|
|
3199
|
-
}
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
export interface InternalElementTypeBuilder$instance extends InternalElementTypeBuilder$protected, AnnotatableBuilder_2<ElementType, InternalModelBuilder> {
|
|
3091
|
+
export interface InternalElementTypeBuilder$instance extends AnnotatableBuilder_2<ElementType, InternalModelBuilder> {
|
|
3092
|
+
readonly This: IConventionElementTypeBuilder;
|
|
3203
3093
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3204
3094
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3205
3095
|
CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3246,16 +3136,10 @@ export interface __InternalElementTypeBuilder$views {
|
|
|
3246
3136
|
export type InternalElementTypeBuilder = InternalElementTypeBuilder$instance & __InternalElementTypeBuilder$views;
|
|
3247
3137
|
|
|
3248
3138
|
|
|
3249
|
-
export
|
|
3250
|
-
protected CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
|
|
3251
|
-
protected CanIgnore2(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
3252
|
-
protected Property5(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
export interface InternalEntityTypeBuilder$instance extends InternalEntityTypeBuilder$protected, InternalTypeBaseBuilder$instance {
|
|
3139
|
+
export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuilder$instance {
|
|
3257
3140
|
CanAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
|
|
3258
3141
|
CanAddNavigation(navigationName: string, type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3142
|
+
CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
|
|
3259
3143
|
CanHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3260
3144
|
CanHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
3261
3145
|
CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
@@ -3266,6 +3150,7 @@ export interface InternalEntityTypeBuilder$instance extends InternalEntityTypeBu
|
|
|
3266
3150
|
CanHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
3267
3151
|
CanHaveServiceProperty(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3268
3152
|
CanHaveSkipNavigation(skipNavigationName: string, type: Type, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3153
|
+
CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
3269
3154
|
CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3270
3155
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3271
3156
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3387,6 +3272,7 @@ export interface InternalEntityTypeBuilder$instance extends InternalEntityTypeBu
|
|
|
3387
3272
|
Property(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3388
3273
|
Property(propertyName: string, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
3389
3274
|
Property(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
3275
|
+
Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3390
3276
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
3391
3277
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
3392
3278
|
RemoveMembersInHierarchy(propertyName: string, configurationSource: ConfigurationSource): void;
|
|
@@ -3626,12 +3512,7 @@ export interface __InternalModelBuilder$views {
|
|
|
3626
3512
|
export type InternalModelBuilder = InternalModelBuilder$instance & __InternalModelBuilder$views;
|
|
3627
3513
|
|
|
3628
3514
|
|
|
3629
|
-
export
|
|
3630
|
-
protected readonly This: IConventionNavigationBuilder;
|
|
3631
|
-
}
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
export interface InternalNavigationBuilder$instance extends InternalNavigationBuilder$protected, InternalPropertyBaseBuilder_2$instance<IConventionNavigationBuilder, Navigation> {
|
|
3515
|
+
export interface InternalNavigationBuilder$instance extends InternalPropertyBaseBuilder_2$instance<IConventionNavigationBuilder, Navigation> {
|
|
3635
3516
|
AutoInclude(autoInclude: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
|
|
3636
3517
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3637
3518
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3681,12 +3562,8 @@ export const InternalOwnedEntityTypeBuilder: {
|
|
|
3681
3562
|
|
|
3682
3563
|
export type InternalOwnedEntityTypeBuilder = InternalOwnedEntityTypeBuilder$instance;
|
|
3683
3564
|
|
|
3684
|
-
export
|
|
3685
|
-
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
export interface InternalPropertyBaseBuilder_2$instance<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>, TPropertyBase extends PropertyBase> extends InternalPropertyBaseBuilder_2$protected<TBuilder, TPropertyBase>, AnnotatableBuilder_2<TPropertyBase, InternalModelBuilder> {
|
|
3565
|
+
export interface InternalPropertyBaseBuilder_2$instance<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>, TPropertyBase extends PropertyBase> extends AnnotatableBuilder_2<TPropertyBase, InternalModelBuilder> {
|
|
3566
|
+
readonly This: IConventionServicePropertyBuilder | TBuilder;
|
|
3690
3567
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3691
3568
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3692
3569
|
CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3704,8 +3581,7 @@ export interface InternalPropertyBaseBuilder_2$instance<TBuilder extends IConven
|
|
|
3704
3581
|
}
|
|
3705
3582
|
|
|
3706
3583
|
|
|
3707
|
-
export const InternalPropertyBaseBuilder_2: {
|
|
3708
|
-
new<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>, TPropertyBase extends PropertyBase>(metadata: TPropertyBase, modelBuilder: InternalModelBuilder): InternalPropertyBaseBuilder_2<TBuilder, TPropertyBase>;
|
|
3584
|
+
export const InternalPropertyBaseBuilder_2: (abstract new<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>, TPropertyBase extends PropertyBase>(metadata: TPropertyBase, modelBuilder: InternalModelBuilder) => InternalPropertyBaseBuilder_2<TBuilder, TPropertyBase>) & {
|
|
3709
3585
|
};
|
|
3710
3586
|
|
|
3711
3587
|
|
|
@@ -3716,12 +3592,7 @@ export interface __InternalPropertyBaseBuilder_2$views<TBuilder extends IConvent
|
|
|
3716
3592
|
export type InternalPropertyBaseBuilder_2<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>, TPropertyBase extends PropertyBase> = InternalPropertyBaseBuilder_2$instance<TBuilder, TPropertyBase> & __InternalPropertyBaseBuilder_2$views<TBuilder, TPropertyBase>;
|
|
3717
3593
|
|
|
3718
3594
|
|
|
3719
|
-
export
|
|
3720
|
-
protected readonly This: IConventionPropertyBuilder;
|
|
3721
|
-
}
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
export interface InternalPropertyBuilder$instance extends InternalPropertyBuilder$protected, InternalPropertyBaseBuilder_2$instance<IConventionPropertyBuilder, Property> {
|
|
3595
|
+
export interface InternalPropertyBuilder$instance extends InternalPropertyBaseBuilder_2$instance<IConventionPropertyBuilder, Property> {
|
|
3725
3596
|
AfterSave(behavior: Nullable<PropertySaveBehavior>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
|
|
3726
3597
|
Attach(typeBaseBuilder: InternalTypeBaseBuilder): InternalPropertyBuilder | undefined;
|
|
3727
3598
|
BeforeSave(behavior: Nullable<PropertySaveBehavior>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
|
|
@@ -3862,12 +3733,7 @@ export interface __InternalSequenceBuilder$views {
|
|
|
3862
3733
|
export type InternalSequenceBuilder = InternalSequenceBuilder$instance & __InternalSequenceBuilder$views;
|
|
3863
3734
|
|
|
3864
3735
|
|
|
3865
|
-
export
|
|
3866
|
-
protected readonly This: IConventionServicePropertyBuilder;
|
|
3867
|
-
}
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
export interface InternalServicePropertyBuilder$instance extends InternalServicePropertyBuilder$protected, InternalPropertyBaseBuilder_2$instance<IConventionServicePropertyBuilder, ServiceProperty> {
|
|
3736
|
+
export interface InternalServicePropertyBuilder$instance extends InternalPropertyBaseBuilder_2$instance<IConventionServicePropertyBuilder, ServiceProperty> {
|
|
3871
3737
|
Attach(entityTypeBuilder: InternalEntityTypeBuilder): InternalServicePropertyBuilder | undefined;
|
|
3872
3738
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3873
3739
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3903,12 +3769,7 @@ export interface __InternalServicePropertyBuilder$views {
|
|
|
3903
3769
|
export type InternalServicePropertyBuilder = InternalServicePropertyBuilder$instance & __InternalServicePropertyBuilder$views;
|
|
3904
3770
|
|
|
3905
3771
|
|
|
3906
|
-
export
|
|
3907
|
-
protected readonly This: InternalSkipNavigationBuilder;
|
|
3908
|
-
}
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
export interface InternalSkipNavigationBuilder$instance extends InternalSkipNavigationBuilder$protected, InternalPropertyBaseBuilder_2$instance<IConventionSkipNavigationBuilder, SkipNavigation> {
|
|
3772
|
+
export interface InternalSkipNavigationBuilder$instance extends InternalPropertyBaseBuilder_2$instance<IConventionSkipNavigationBuilder, SkipNavigation> {
|
|
3912
3773
|
Attach(entityTypeBuilder?: InternalEntityTypeBuilder, targetEntityType?: EntityType, inverseBuilder?: InternalSkipNavigationBuilder): InternalSkipNavigationBuilder | undefined;
|
|
3913
3774
|
AutoInclude(autoInclude: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalSkipNavigationBuilder | undefined;
|
|
3914
3775
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -3970,7 +3831,7 @@ export interface InternalStoredProcedureBuilder$instance extends AnnotatableBuil
|
|
|
3970
3831
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
3971
3832
|
HasOriginalValueParameter(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
|
|
3972
3833
|
HasOriginalValueParameter<TDerivedEntity, TProperty>(propertyExpression: Expression<Func<TDerivedEntity, TProperty>>, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
|
|
3973
|
-
HasParameter(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder;
|
|
3834
|
+
HasParameter(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
|
|
3974
3835
|
HasParameter<TDerivedEntity, TProperty>(propertyExpression: Expression<Func<TDerivedEntity, TProperty>>, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
|
|
3975
3836
|
HasResultColumn(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureResultColumnBuilder | undefined;
|
|
3976
3837
|
HasResultColumn<TDerivedEntity, TProperty>(propertyExpression: Expression<Func<TDerivedEntity, TProperty>>, configurationSource: ConfigurationSource): InternalStoredProcedureResultColumnBuilder | undefined;
|
|
@@ -4078,22 +3939,13 @@ export interface __InternalTriggerBuilder$views {
|
|
|
4078
3939
|
export type InternalTriggerBuilder = InternalTriggerBuilder$instance & __InternalTriggerBuilder$views;
|
|
4079
3940
|
|
|
4080
3941
|
|
|
4081
|
-
export
|
|
4082
|
-
protected abstract CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty?: boolean, skipTypeCheck?: boolean): boolean;
|
|
4083
|
-
protected abstract CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
4084
|
-
protected GetOrCreateDiscriminatorProperty(type: Type, name: string, memberInfo: MemberInfo, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
|
|
4085
|
-
protected PrimitiveCollection(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
4086
|
-
protected Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
4087
|
-
protected RemoveIncompatibleDiscriminatorValues(structuralType: TypeBase, newDiscriminatorProperty: Property, configurationSource: ConfigurationSource): void;
|
|
4088
|
-
protected RemovePropertyIfUnused(property: Property, configurationSource: ConfigurationSource): void;
|
|
4089
|
-
}
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
export interface InternalTypeBaseBuilder$instance extends InternalTypeBaseBuilder$protected, AnnotatableBuilder_2<TypeBase, InternalModelBuilder> {
|
|
3942
|
+
export interface InternalTypeBaseBuilder$instance extends AnnotatableBuilder_2<TypeBase, InternalModelBuilder> {
|
|
4093
3943
|
CanAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
|
|
3944
|
+
CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty?: boolean, skipTypeCheck?: boolean): boolean;
|
|
4094
3945
|
CanHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
4095
3946
|
CanHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, checkClrProperty?: boolean): boolean;
|
|
4096
3947
|
CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3948
|
+
CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
|
|
4097
3949
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
4098
3950
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
4099
3951
|
CanRemoveComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): boolean;
|
|
@@ -4114,6 +3966,7 @@ export interface InternalTypeBaseBuilder$instance extends InternalTypeBaseBuilde
|
|
|
4114
3966
|
CreateUniqueProperties(principalProperties: IReadOnlyList<Property>, isRequired: boolean, baseName: string, checkTypes?: boolean): IReadOnlyList<Property> | undefined;
|
|
4115
3967
|
CreateUniqueProperty(propertyType: Type, propertyName: string, required: boolean, checkType?: boolean): InternalPropertyBuilder | undefined;
|
|
4116
3968
|
GetActualProperties(properties: IReadOnlyList<Property>, configurationSource: Nullable<ConfigurationSource>): IReadOnlyList<Property> | undefined;
|
|
3969
|
+
GetOrCreateDiscriminatorProperty(type: Type, name: string, memberInfo: MemberInfo, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
|
|
4117
3970
|
GetOrCreateProperties(propertyNames: IReadOnlyList<System_Internal.String>, configurationSource: Nullable<ConfigurationSource>, referencedProperties?: IReadOnlyList<Property>, required?: boolean, useDefaultType?: boolean): IReadOnlyList<Property> | undefined;
|
|
4118
3971
|
GetOrCreateProperties(clrMembers: IEnumerable__System_Collections_Generic<MemberInfo>, configurationSource: Nullable<ConfigurationSource>): IReadOnlyList<Property> | undefined;
|
|
4119
3972
|
HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TypeBase, InternalModelBuilder>;
|
|
@@ -4130,20 +3983,23 @@ export interface InternalTypeBaseBuilder$instance extends InternalTypeBaseBuilde
|
|
|
4130
3983
|
PrimitiveCollection(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
4131
3984
|
PrimitiveCollection(propertyName: string, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
4132
3985
|
PrimitiveCollection(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
3986
|
+
PrimitiveCollection(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
4133
3987
|
Property(propertyType: Type, propertyName: string, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
4134
3988
|
Property(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
4135
3989
|
Property(propertyName: string, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
4136
3990
|
Property(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): InternalPropertyBuilder | undefined;
|
|
3991
|
+
Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
|
|
3992
|
+
RemoveIncompatibleDiscriminatorValues(structuralType: TypeBase, newDiscriminatorProperty: Property, configurationSource: ConfigurationSource): void;
|
|
4137
3993
|
RemoveMembersInHierarchy(propertyName: string, configurationSource: ConfigurationSource): void;
|
|
4138
3994
|
RemoveProperty(property: Property, configurationSource: ConfigurationSource, canOverrideSameSource?: boolean): Nullable<ConfigurationSource>;
|
|
3995
|
+
RemovePropertyIfUnused(property: Property, configurationSource: ConfigurationSource): void;
|
|
4139
3996
|
RemoveUnusedImplicitProperties(properties: IReadOnlyList<IConventionProperty>): InternalTypeBaseBuilder;
|
|
4140
3997
|
TryCreateUniqueProperties(propertyCount: int, currentProperties: IReadOnlyList<Property>, principalPropertyTypes: IEnumerable__System_Collections_Generic<Type>, principalPropertyNames: IEnumerable__System_Collections_Generic<System_Internal.String>, isRequired: boolean, baseName: string, checkTypes?: boolean): ValueTuple<System_Internal.Boolean, IReadOnlyList<Property>>;
|
|
4141
3998
|
UsePropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
|
|
4142
3999
|
}
|
|
4143
4000
|
|
|
4144
4001
|
|
|
4145
|
-
export const InternalTypeBaseBuilder: {
|
|
4146
|
-
new(metadata: TypeBase, modelBuilder: InternalModelBuilder): InternalTypeBaseBuilder;
|
|
4002
|
+
export const InternalTypeBaseBuilder: (abstract new(metadata: TypeBase, modelBuilder: InternalModelBuilder) => InternalTypeBaseBuilder) & {
|
|
4147
4003
|
DetachProperties(propertiesToDetach: IReadOnlyList<ComplexProperty>): List<ComplexPropertySnapshot> | undefined;
|
|
4148
4004
|
DetachProperties(propertiesToDetach: IReadOnlyList<Property>): PropertiesSnapshot | undefined;
|
|
4149
4005
|
IsCompatible(newMemberInfo: MemberInfo, existingProperty: PropertyBase): boolean;
|
|
@@ -4158,21 +4014,15 @@ export interface __InternalTypeBaseBuilder$views {
|
|
|
4158
4014
|
export type InternalTypeBaseBuilder = InternalTypeBaseBuilder$instance & __InternalTypeBaseBuilder$views;
|
|
4159
4015
|
|
|
4160
4016
|
|
|
4161
|
-
export
|
|
4162
|
-
protected AddAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4163
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4164
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4165
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4166
|
-
}
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
export interface JsonColumn$instance extends JsonColumn$protected, Column$instance {
|
|
4017
|
+
export interface JsonColumn$instance extends Column$instance {
|
|
4170
4018
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4171
4019
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4020
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4172
4021
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4173
4022
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4174
4023
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4175
4024
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4025
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4176
4026
|
AnnotationsToDebugString(indent?: int): string;
|
|
4177
4027
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
4178
4028
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -4182,11 +4032,13 @@ export interface JsonColumn$instance extends JsonColumn$protected, Column$instan
|
|
|
4182
4032
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
4183
4033
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
4184
4034
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4035
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4185
4036
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
4186
4037
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4187
4038
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4188
4039
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4189
4040
|
SetAnnotation(name: string, value: unknown): void;
|
|
4041
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4190
4042
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
4191
4043
|
TryGetDefaultValue(defaultValue: unknown): boolean;
|
|
4192
4044
|
}
|
|
@@ -4208,21 +4060,15 @@ export interface __JsonColumn$views {
|
|
|
4208
4060
|
export type JsonColumn = JsonColumn$instance & __JsonColumn$views;
|
|
4209
4061
|
|
|
4210
4062
|
|
|
4211
|
-
export
|
|
4212
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
4213
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
4214
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4215
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4216
|
-
}
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
export interface JsonColumnBase$instance extends JsonColumnBase$protected, ColumnBase_1$instance<ColumnMappingBase> {
|
|
4063
|
+
export interface JsonColumnBase$instance extends ColumnBase_1$instance<ColumnMappingBase> {
|
|
4220
4064
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4221
4065
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4066
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4222
4067
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4223
4068
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4224
4069
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4225
4070
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4071
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4226
4072
|
AnnotationsToDebugString(indent?: int): string;
|
|
4227
4073
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
4228
4074
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -4231,11 +4077,13 @@ export interface JsonColumnBase$instance extends JsonColumnBase$protected, Colum
|
|
|
4231
4077
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
4232
4078
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
4233
4079
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4080
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4234
4081
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
4235
4082
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4236
4083
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4237
4084
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4238
4085
|
SetAnnotation(name: string, value: unknown): void;
|
|
4086
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4239
4087
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
4240
4088
|
}
|
|
4241
4089
|
|
|
@@ -4255,21 +4103,15 @@ export interface __JsonColumnBase$views {
|
|
|
4255
4103
|
export type JsonColumnBase = JsonColumnBase$instance & __JsonColumnBase$views;
|
|
4256
4104
|
|
|
4257
4105
|
|
|
4258
|
-
export
|
|
4259
|
-
protected AddAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4260
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4261
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4262
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4263
|
-
}
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
export interface JsonViewColumn$instance extends JsonViewColumn$protected, ViewColumn$instance {
|
|
4106
|
+
export interface JsonViewColumn$instance extends ViewColumn$instance {
|
|
4267
4107
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4268
4108
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4109
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4269
4110
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4270
4111
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4271
4112
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4272
4113
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4114
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4273
4115
|
AnnotationsToDebugString(indent?: int): string;
|
|
4274
4116
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
4275
4117
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -4279,11 +4121,13 @@ export interface JsonViewColumn$instance extends JsonViewColumn$protected, ViewC
|
|
|
4279
4121
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
4280
4122
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
4281
4123
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4124
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
4282
4125
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
4283
4126
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4284
4127
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4285
4128
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4286
4129
|
SetAnnotation(name: string, value: unknown): void;
|
|
4130
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4287
4131
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
4288
4132
|
}
|
|
4289
4133
|
|
|
@@ -4304,16 +4148,7 @@ export interface __JsonViewColumn$views {
|
|
|
4304
4148
|
export type JsonViewColumn = JsonViewColumn$instance & __JsonViewColumn$views;
|
|
4305
4149
|
|
|
4306
4150
|
|
|
4307
|
-
export
|
|
4308
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
4309
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
4310
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4311
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4312
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4313
|
-
}
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
export interface Key$instance extends Key$protected, ConventionAnnotatable {
|
|
4151
|
+
export interface Key$instance extends ConventionAnnotatable {
|
|
4317
4152
|
readonly DebugView: DebugView;
|
|
4318
4153
|
readonly DeclaringEntityType: EntityType;
|
|
4319
4154
|
readonly IdentityMapFactory: Func<System_Internal.Boolean, IIdentityMap>;
|
|
@@ -4321,16 +4156,18 @@ export interface Key$instance extends Key$protected, ConventionAnnotatable {
|
|
|
4321
4156
|
readonly IsReadOnly: boolean;
|
|
4322
4157
|
readonly Properties: IReadOnlyList<Property>;
|
|
4323
4158
|
get ReferencingForeignKeys(): ISet<ForeignKey> | undefined;
|
|
4324
|
-
set ReferencingForeignKeys(value: ISet<ForeignKey>);
|
|
4159
|
+
set ReferencingForeignKeys(value: ISet<ForeignKey> | undefined);
|
|
4325
4160
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
4326
4161
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
4327
4162
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4328
4163
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4164
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4329
4165
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4330
4166
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4331
4167
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4332
4168
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4333
4169
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4170
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4334
4171
|
AnnotationsToDebugString(indent?: int): string;
|
|
4335
4172
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
4336
4173
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -4344,10 +4181,13 @@ export interface Key$instance extends Key$protected, ConventionAnnotatable {
|
|
|
4344
4181
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
4345
4182
|
GetReferencingForeignKeys(): IEnumerable__System_Collections_Generic<ForeignKey>;
|
|
4346
4183
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4184
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4185
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4347
4186
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4348
4187
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4349
4188
|
SetAnnotation(name: string, value: unknown): void;
|
|
4350
4189
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4190
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4351
4191
|
SetRemovedFromModel(): void;
|
|
4352
4192
|
ToString(): string;
|
|
4353
4193
|
UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
@@ -4398,29 +4238,21 @@ export interface MemberClassifier$instance extends IMemberClassifier$instance {}
|
|
|
4398
4238
|
export type MemberClassifier = MemberClassifier$instance & __MemberClassifier$views;
|
|
4399
4239
|
|
|
4400
4240
|
|
|
4401
|
-
export
|
|
4402
|
-
|
|
4403
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
4404
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4405
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4406
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4407
|
-
}
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
export interface Model$instance extends Model$protected, ConventionAnnotatable {
|
|
4411
|
-
readonly Configuration: ModelConfiguration;
|
|
4241
|
+
export interface Model$instance extends ConventionAnnotatable {
|
|
4242
|
+
readonly Configuration: ModelConfiguration | undefined;
|
|
4412
4243
|
readonly ConventionDispatcher: ConventionDispatcher;
|
|
4413
4244
|
readonly DebugView: DebugView;
|
|
4414
4245
|
readonly IsReadOnly: boolean;
|
|
4415
4246
|
ModelId: Guid;
|
|
4416
4247
|
readonly RelationalModel: unknown | undefined;
|
|
4417
4248
|
get ScopedModelDependencies(): ModelDependencies | undefined;
|
|
4418
|
-
set ScopedModelDependencies(value: ModelDependencies);
|
|
4249
|
+
set ScopedModelDependencies(value: ModelDependencies | undefined);
|
|
4419
4250
|
SkipDetectChanges: boolean;
|
|
4420
4251
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
4421
4252
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
4422
4253
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4423
4254
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4255
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4424
4256
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4425
4257
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4426
4258
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
@@ -4438,6 +4270,7 @@ export interface Model$instance extends Model$protected, ConventionAnnotatable {
|
|
|
4438
4270
|
AddProperty(property: Property): void;
|
|
4439
4271
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4440
4272
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4273
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4441
4274
|
AddShared(type: Type, configurationSource: ConfigurationSource): void;
|
|
4442
4275
|
AnnotationsToDebugString(indent?: int): string;
|
|
4443
4276
|
DelayConventions(): IConventionBatch;
|
|
@@ -4484,6 +4317,8 @@ export interface Model$instance extends Model$protected, ConventionAnnotatable {
|
|
|
4484
4317
|
IsIndexerMethod(methodInfo: MethodInfo): boolean;
|
|
4485
4318
|
IsOwned(type: Type): boolean;
|
|
4486
4319
|
IsShared(type: Type): boolean;
|
|
4320
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4321
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4487
4322
|
OnModelFinalized(): IModel;
|
|
4488
4323
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4489
4324
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
@@ -4500,6 +4335,7 @@ export interface Model$instance extends Model$protected, ConventionAnnotatable {
|
|
|
4500
4335
|
RemoveShared(type: Type): Type | undefined;
|
|
4501
4336
|
SetAnnotation(name: string, value: unknown): void;
|
|
4502
4337
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4338
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4503
4339
|
SetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable<ChangeTrackingStrategy>;
|
|
4504
4340
|
SetEmbeddedDiscriminatorName(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
4505
4341
|
SetPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable<PropertyAccessMode>;
|
|
@@ -4569,23 +4405,13 @@ export interface NamedListComparer$instance {
|
|
|
4569
4405
|
|
|
4570
4406
|
|
|
4571
4407
|
export const NamedListComparer: {
|
|
4572
|
-
new(): NamedListComparer;
|
|
4573
4408
|
readonly Instance: NamedListComparer;
|
|
4574
4409
|
};
|
|
4575
4410
|
|
|
4576
4411
|
|
|
4577
4412
|
export type NamedListComparer = NamedListComparer$instance;
|
|
4578
4413
|
|
|
4579
|
-
export
|
|
4580
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
4581
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4582
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4583
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4584
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4585
|
-
}
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
export interface Navigation$instance extends Navigation$protected, PropertyBase$instance {
|
|
4414
|
+
export interface Navigation$instance extends PropertyBase$instance {
|
|
4589
4415
|
readonly ClrType: Type;
|
|
4590
4416
|
readonly CollectionAccessor: IClrCollectionAccessor | undefined;
|
|
4591
4417
|
readonly DebugView: DebugView;
|
|
@@ -4602,11 +4428,13 @@ export interface Navigation$instance extends Navigation$protected, PropertyBase$
|
|
|
4602
4428
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4603
4429
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
4604
4430
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4431
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4605
4432
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4606
4433
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4607
4434
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4608
4435
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4609
4436
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4437
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4610
4438
|
AnnotationsToDebugString(indent?: int): string;
|
|
4611
4439
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
4612
4440
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -4632,10 +4460,13 @@ export interface Navigation$instance extends Navigation$protected, PropertyBase$
|
|
|
4632
4460
|
GetSetter(): IClrPropertySetter;
|
|
4633
4461
|
GetShadowIndex(): int;
|
|
4634
4462
|
IsShadowProperty(): boolean;
|
|
4463
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4464
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4635
4465
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4636
4466
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4637
4467
|
SetAnnotation(name: string, value: unknown): void;
|
|
4638
4468
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4469
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4639
4470
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
4640
4471
|
SetField(fieldName: string): void;
|
|
4641
4472
|
SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
|
|
@@ -4713,46 +4544,39 @@ export const PropertiesSnapshot: {
|
|
|
4713
4544
|
|
|
4714
4545
|
export type PropertiesSnapshot = PropertiesSnapshot$instance;
|
|
4715
4546
|
|
|
4716
|
-
export
|
|
4717
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
4718
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
4719
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4720
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4721
|
-
protected OnElementTypeSet(newElementType: IElementType, oldElementType: IElementType): IElementType | undefined;
|
|
4722
|
-
protected OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
4723
|
-
protected OnPropertyNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
4724
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4725
|
-
}
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
export interface Property$instance extends Property$protected, PropertyBase$instance {
|
|
4547
|
+
export interface Property$instance extends PropertyBase$instance {
|
|
4729
4548
|
readonly ClrType: Type;
|
|
4730
4549
|
readonly DebugView: DebugView;
|
|
4731
4550
|
readonly DeclaringType: TypeBase;
|
|
4732
|
-
ForeignKeys: List<ForeignKey
|
|
4733
|
-
|
|
4551
|
+
get ForeignKeys(): List<ForeignKey> | undefined;
|
|
4552
|
+
set ForeignKeys(value: List<ForeignKey> | undefined);
|
|
4553
|
+
get Indexes(): List<Index> | undefined;
|
|
4554
|
+
set Indexes(value: List<Index> | undefined);
|
|
4734
4555
|
readonly IsCollection: boolean;
|
|
4735
4556
|
IsConcurrencyToken: boolean;
|
|
4736
4557
|
readonly IsInModel: boolean;
|
|
4737
4558
|
IsNullable: boolean;
|
|
4738
4559
|
readonly IsPrimitiveCollection: boolean;
|
|
4739
4560
|
get Keys(): List<Key> | undefined;
|
|
4740
|
-
set Keys(value: List<Key>);
|
|
4561
|
+
set Keys(value: List<Key> | undefined);
|
|
4741
4562
|
get PrimaryKey(): IReadOnlyKey | undefined;
|
|
4742
|
-
set PrimaryKey(value: IReadOnlyKey);
|
|
4563
|
+
set PrimaryKey(value: IReadOnlyKey | undefined);
|
|
4743
4564
|
get Sentinel(): unknown | undefined;
|
|
4744
|
-
set Sentinel(value: unknown);
|
|
4745
|
-
TypeMapping: CoreTypeMapping;
|
|
4565
|
+
set Sentinel(value: unknown | undefined);
|
|
4566
|
+
get TypeMapping(): CoreTypeMapping | undefined;
|
|
4567
|
+
set TypeMapping(value: CoreTypeMapping | undefined);
|
|
4746
4568
|
ValueGenerated: ValueGenerated;
|
|
4747
4569
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
4748
4570
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4749
4571
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
4750
4572
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4573
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4751
4574
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4752
4575
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4753
4576
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4754
4577
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4755
4578
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4579
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4756
4580
|
AnnotationsToDebugString(indent?: int): string;
|
|
4757
4581
|
CheckAfterSaveBehavior(behavior: PropertySaveBehavior): string | undefined;
|
|
4758
4582
|
CheckValueComparer(comparer: ValueComparer): string | undefined;
|
|
@@ -4788,7 +4612,7 @@ export interface Property$instance extends Property$protected, PropertyBase$inst
|
|
|
4788
4612
|
GetIsUnicodeConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4789
4613
|
GetJsonValueReaderWriter(): JsonValueReaderWriter | undefined;
|
|
4790
4614
|
GetJsonValueReaderWriterTypeConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4791
|
-
GetKeyValueComparer(): ValueComparer;
|
|
4615
|
+
GetKeyValueComparer(): ValueComparer | undefined;
|
|
4792
4616
|
GetMaxLength(): Nullable<System_Internal.Int32>;
|
|
4793
4617
|
GetMaxLengthConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4794
4618
|
GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
|
|
@@ -4820,11 +4644,17 @@ export interface Property$instance extends Property$protected, PropertyBase$inst
|
|
|
4820
4644
|
IsKey(): boolean;
|
|
4821
4645
|
IsShadowProperty(): boolean;
|
|
4822
4646
|
IsUnicode(): Nullable<System_Internal.Boolean>;
|
|
4647
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
4648
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4649
|
+
OnElementTypeSet(newElementType: IElementType, oldElementType: IElementType): IElementType | undefined;
|
|
4650
|
+
OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
4651
|
+
OnPropertyNullableChanged(): Nullable<System_Internal.Boolean>;
|
|
4823
4652
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4824
4653
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4825
4654
|
SetAfterSaveBehavior(afterSaveBehavior: Nullable<PropertySaveBehavior>, configurationSource: ConfigurationSource): Nullable<PropertySaveBehavior>;
|
|
4826
4655
|
SetAnnotation(name: string, value: unknown): void;
|
|
4827
4656
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4657
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4828
4658
|
SetBeforeSaveBehavior(beforeSaveBehavior: Nullable<PropertySaveBehavior>, configurationSource: ConfigurationSource): Nullable<PropertySaveBehavior>;
|
|
4829
4659
|
SetElementType(elementType: Type, configurationSource: ConfigurationSource): ElementType | undefined;
|
|
4830
4660
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
@@ -4888,7 +4718,7 @@ export type Property = Property$instance & __Property$views;
|
|
|
4888
4718
|
|
|
4889
4719
|
export interface PropertyAccessors$instance {
|
|
4890
4720
|
readonly CurrentValueGetter: Function;
|
|
4891
|
-
readonly OriginalValueGetter: Function;
|
|
4721
|
+
readonly OriginalValueGetter: Function | undefined;
|
|
4892
4722
|
readonly PreStoreGeneratedCurrentValueGetter: Function;
|
|
4893
4723
|
readonly Property: IPropertyBase;
|
|
4894
4724
|
readonly RelationshipSnapshotGetter: Function;
|
|
@@ -4913,7 +4743,6 @@ export interface PropertyAccessorsFactory$instance {
|
|
|
4913
4743
|
|
|
4914
4744
|
|
|
4915
4745
|
export const PropertyAccessorsFactory: {
|
|
4916
|
-
new(): PropertyAccessorsFactory;
|
|
4917
4746
|
readonly Instance: PropertyAccessorsFactory;
|
|
4918
4747
|
readonly GetOrdinalsMethod: MethodInfo;
|
|
4919
4748
|
readonly ContainsKeyMethod: MethodInfo;
|
|
@@ -4925,20 +4754,12 @@ export const PropertyAccessorsFactory: {
|
|
|
4925
4754
|
|
|
4926
4755
|
export type PropertyAccessorsFactory = PropertyAccessorsFactory$instance;
|
|
4927
4756
|
|
|
4928
|
-
export
|
|
4929
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
4930
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
4931
|
-
protected OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
4932
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4933
|
-
}
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
export interface PropertyBase$instance extends PropertyBase$protected, ConventionAnnotatable {
|
|
4757
|
+
export interface PropertyBase$instance extends ConventionAnnotatable {
|
|
4937
4758
|
readonly Accessors: PropertyAccessors;
|
|
4938
4759
|
readonly ClrType: Type;
|
|
4939
4760
|
readonly DeclaringType: TypeBase;
|
|
4940
4761
|
get FieldInfo(): FieldInfo | undefined;
|
|
4941
|
-
set FieldInfo(value: FieldInfo);
|
|
4762
|
+
set FieldInfo(value: FieldInfo | undefined);
|
|
4942
4763
|
readonly Getter: IClrPropertyGetter;
|
|
4943
4764
|
readonly IsCollection: boolean;
|
|
4944
4765
|
readonly IsReadOnly: boolean;
|
|
@@ -4950,11 +4771,13 @@ export interface PropertyBase$instance extends PropertyBase$protected, Conventio
|
|
|
4950
4771
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
4951
4772
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
4952
4773
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
4774
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4953
4775
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4954
4776
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4955
4777
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4956
4778
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4957
4779
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4780
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
4958
4781
|
AnnotationsToDebugString(indent?: int): string;
|
|
4959
4782
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
4960
4783
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -4973,10 +4796,12 @@ export interface PropertyBase$instance extends PropertyBase$protected, Conventio
|
|
|
4973
4796
|
GetPropertyAccessModeConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4974
4797
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4975
4798
|
GetSetter(): IClrPropertySetter;
|
|
4799
|
+
OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
|
|
4976
4800
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
4977
4801
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
4978
4802
|
SetAnnotation(name: string, value: unknown): void;
|
|
4979
4803
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4804
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
4980
4805
|
SetConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
4981
4806
|
SetCurrentValueComparer(comparer: IComparer<IUpdateEntry>): void;
|
|
4982
4807
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
@@ -4986,8 +4811,7 @@ export interface PropertyBase$instance extends PropertyBase$protected, Conventio
|
|
|
4986
4811
|
}
|
|
4987
4812
|
|
|
4988
4813
|
|
|
4989
|
-
export const PropertyBase: {
|
|
4990
|
-
new(name: string, propertyInfo: PropertyInfo, fieldInfo: FieldInfo, configurationSource: ConfigurationSource): PropertyBase;
|
|
4814
|
+
export const PropertyBase: (abstract new(name: string, propertyInfo: PropertyInfo, fieldInfo: FieldInfo, configurationSource: ConfigurationSource) => PropertyBase) & {
|
|
4991
4815
|
GetFieldInfo(fieldName: string, type: TypeBase, propertyName: string, shouldThrow: boolean): FieldInfo | undefined;
|
|
4992
4816
|
IsCompatible(fieldInfo: FieldInfo, propertyType: Type, entityType: Type, propertyName: string, shouldThrow: boolean): boolean;
|
|
4993
4817
|
};
|
|
@@ -5007,14 +4831,10 @@ export interface __PropertyBase$views {
|
|
|
5007
4831
|
export type PropertyBase = PropertyBase$instance & __PropertyBase$views;
|
|
5008
4832
|
|
|
5009
4833
|
|
|
5010
|
-
export
|
|
5011
|
-
protected AddRuntimeAnnotation2(name: string, annotation: Annotation): Annotation;
|
|
5012
|
-
}
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
export interface PropertyConfiguration$instance extends PropertyConfiguration$protected, AnnotatableBase {
|
|
4834
|
+
export interface PropertyConfiguration$instance extends AnnotatableBase {
|
|
5016
4835
|
readonly ClrType: Type;
|
|
5017
4836
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4837
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5018
4838
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5019
4839
|
AnnotationsToDebugString(indent?: int): string;
|
|
5020
4840
|
Apply(property: IMutableProperty): void;
|
|
@@ -5101,7 +4921,6 @@ export interface PropertyListComparer$instance {
|
|
|
5101
4921
|
|
|
5102
4922
|
|
|
5103
4923
|
export const PropertyListComparer: {
|
|
5104
|
-
new(): PropertyListComparer;
|
|
5105
4924
|
readonly Instance: PropertyListComparer;
|
|
5106
4925
|
};
|
|
5107
4926
|
|
|
@@ -5143,7 +4962,7 @@ export type PropertyParameterBindingFactory = PropertyParameterBindingFactory$in
|
|
|
5143
4962
|
export interface QueryFilter$instance {
|
|
5144
4963
|
ConfigurationSource: Nullable<ConfigurationSource>;
|
|
5145
4964
|
readonly Expression: LambdaExpression;
|
|
5146
|
-
readonly Key: string;
|
|
4965
|
+
readonly Key: string | undefined;
|
|
5147
4966
|
}
|
|
5148
4967
|
|
|
5149
4968
|
|
|
@@ -5168,7 +4987,7 @@ export type QueryFilter = QueryFilter$instance & __QueryFilter$views;
|
|
|
5168
4987
|
|
|
5169
4988
|
export interface QueryFilterCollection$instance {
|
|
5170
4989
|
readonly Count: int;
|
|
5171
|
-
readonly
|
|
4990
|
+
readonly [filterKey: string]: IQueryFilter | undefined;
|
|
5172
4991
|
GetEnumerator(): IEnumerator<IQueryFilter>;
|
|
5173
4992
|
Set(filter: IQueryFilter): IQueryFilter | undefined;
|
|
5174
4993
|
SetRange(newFilters: IEnumerable__System_Collections_Generic<IQueryFilter>): void;
|
|
@@ -5203,14 +5022,7 @@ export interface __Reference_1$views<T> {
|
|
|
5203
5022
|
export type Reference_1<T> = Reference_1$instance<T> & __Reference_1$views<T>;
|
|
5204
5023
|
|
|
5205
5024
|
|
|
5206
|
-
export
|
|
5207
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
5208
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
5209
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5210
|
-
}
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
export interface RelationalModel$instance extends RelationalModel$protected, Annotatable {
|
|
5025
|
+
export interface RelationalModel$instance extends Annotatable {
|
|
5214
5026
|
readonly DebugView: DebugView;
|
|
5215
5027
|
readonly DefaultTables: Dictionary<System_Internal.String, TableBase>;
|
|
5216
5028
|
readonly Functions: Dictionary<ValueTuple<System_Internal.String, System_Internal.String, IReadOnlyList<System_Internal.String>>, StoreFunction>;
|
|
@@ -5222,10 +5034,12 @@ export interface RelationalModel$instance extends RelationalModel$protected, Ann
|
|
|
5222
5034
|
readonly Views: Dictionary<ValueTuple<System_Internal.String, System_Internal.String>, View>;
|
|
5223
5035
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5224
5036
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5037
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5225
5038
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5226
5039
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5227
5040
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5228
5041
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5042
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5229
5043
|
AnnotationsToDebugString(indent?: int): string;
|
|
5230
5044
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5231
5045
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5245,6 +5059,7 @@ export interface RelationalModel$instance extends RelationalModel$protected, Ann
|
|
|
5245
5059
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5246
5060
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5247
5061
|
SetAnnotation(name: string, value: unknown): void;
|
|
5062
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5248
5063
|
}
|
|
5249
5064
|
|
|
5250
5065
|
|
|
@@ -5279,15 +5094,9 @@ export interface __RelationalModel$views {
|
|
|
5279
5094
|
export type RelationalModel = RelationalModel$instance & __RelationalModel$views;
|
|
5280
5095
|
|
|
5281
5096
|
|
|
5282
|
-
export
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5286
|
-
}
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
export interface RelationalPropertyOverrides$instance extends RelationalPropertyOverrides$protected, ConventionAnnotatable {
|
|
5290
|
-
ColumnName: string;
|
|
5097
|
+
export interface RelationalPropertyOverrides$instance extends ConventionAnnotatable {
|
|
5098
|
+
get ColumnName(): string | undefined;
|
|
5099
|
+
set ColumnName(value: string | undefined);
|
|
5291
5100
|
readonly DebugView: DebugView;
|
|
5292
5101
|
readonly IsColumnNameOverridden: boolean;
|
|
5293
5102
|
readonly IsInModel: boolean;
|
|
@@ -5298,11 +5107,13 @@ export interface RelationalPropertyOverrides$instance extends RelationalProperty
|
|
|
5298
5107
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
5299
5108
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5300
5109
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5110
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5301
5111
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5302
5112
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
5303
5113
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5304
5114
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5305
5115
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5116
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5306
5117
|
AnnotationsToDebugString(indent?: int): string;
|
|
5307
5118
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
5308
5119
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -5320,6 +5131,7 @@ export interface RelationalPropertyOverrides$instance extends RelationalProperty
|
|
|
5320
5131
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5321
5132
|
SetAnnotation(name: string, value: unknown): void;
|
|
5322
5133
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5134
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5323
5135
|
SetColumnName(columnName: string, configurationSource: ConfigurationSource): string | undefined;
|
|
5324
5136
|
SetRemovedFromModel(): void;
|
|
5325
5137
|
ToString(): string;
|
|
@@ -5370,7 +5182,7 @@ export type RelationshipSnapshot = RelationshipSnapshot$instance;
|
|
|
5370
5182
|
|
|
5371
5183
|
export interface RuntimeQueryFilter$instance {
|
|
5372
5184
|
readonly Expression: LambdaExpression;
|
|
5373
|
-
readonly Key: string;
|
|
5185
|
+
readonly Key: string | undefined;
|
|
5374
5186
|
}
|
|
5375
5187
|
|
|
5376
5188
|
|
|
@@ -5388,15 +5200,11 @@ export interface RuntimeQueryFilter$instance extends Microsoft_EntityFrameworkCo
|
|
|
5388
5200
|
export type RuntimeQueryFilter = RuntimeQueryFilter$instance & __RuntimeQueryFilter$views;
|
|
5389
5201
|
|
|
5390
5202
|
|
|
5391
|
-
export
|
|
5392
|
-
protected AddRuntimeAnnotation2(name: string, annotation: Annotation): Annotation;
|
|
5393
|
-
}
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
export interface RuntimeStoredProcedureParameter$instance extends RuntimeStoredProcedureParameter$protected, AnnotatableBase {
|
|
5203
|
+
export interface RuntimeStoredProcedureParameter$instance extends AnnotatableBase {
|
|
5397
5204
|
readonly DebugView: DebugView;
|
|
5398
5205
|
readonly StoredProcedure: RuntimeStoredProcedure;
|
|
5399
5206
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5207
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5400
5208
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5401
5209
|
AnnotationsToDebugString(indent?: int): string;
|
|
5402
5210
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5426,15 +5234,11 @@ export interface __RuntimeStoredProcedureParameter$views {
|
|
|
5426
5234
|
export type RuntimeStoredProcedureParameter = RuntimeStoredProcedureParameter$instance & __RuntimeStoredProcedureParameter$views;
|
|
5427
5235
|
|
|
5428
5236
|
|
|
5429
|
-
export
|
|
5430
|
-
protected AddRuntimeAnnotation2(name: string, annotation: Annotation): Annotation;
|
|
5431
|
-
}
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
export interface RuntimeStoredProcedureResultColumn$instance extends RuntimeStoredProcedureResultColumn$protected, AnnotatableBase {
|
|
5237
|
+
export interface RuntimeStoredProcedureResultColumn$instance extends AnnotatableBase {
|
|
5435
5238
|
readonly DebugView: DebugView;
|
|
5436
5239
|
readonly StoredProcedure: RuntimeStoredProcedure;
|
|
5437
5240
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5241
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5438
5242
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5439
5243
|
AnnotationsToDebugString(indent?: int): string;
|
|
5440
5244
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5464,14 +5268,7 @@ export interface __RuntimeStoredProcedureResultColumn$views {
|
|
|
5464
5268
|
export type RuntimeStoredProcedureResultColumn = RuntimeStoredProcedureResultColumn$instance & __RuntimeStoredProcedureResultColumn$views;
|
|
5465
5269
|
|
|
5466
5270
|
|
|
5467
|
-
export
|
|
5468
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
5469
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5470
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5471
|
-
}
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
export interface Sequence$instance extends Sequence$protected, ConventionAnnotatable {
|
|
5271
|
+
export interface Sequence$instance extends ConventionAnnotatable {
|
|
5475
5272
|
IncrementBy: int;
|
|
5476
5273
|
IsCyclic: boolean;
|
|
5477
5274
|
readonly IsInModel: boolean;
|
|
@@ -5481,18 +5278,20 @@ export interface Sequence$instance extends Sequence$protected, ConventionAnnotat
|
|
|
5481
5278
|
readonly Model: IReadOnlyModel;
|
|
5482
5279
|
readonly ModelSchema: string | undefined;
|
|
5483
5280
|
Name: string;
|
|
5484
|
-
readonly Schema: string;
|
|
5281
|
+
readonly Schema: string | undefined;
|
|
5485
5282
|
StartValue: long;
|
|
5486
5283
|
Type: Type;
|
|
5487
5284
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
5488
5285
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
5489
5286
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5490
5287
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5288
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5491
5289
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5492
5290
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
5493
5291
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5494
5292
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5495
5293
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5294
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5496
5295
|
AnnotationsToDebugString(indent?: int): string;
|
|
5497
5296
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
5498
5297
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -5515,6 +5314,7 @@ export interface Sequence$instance extends Sequence$protected, ConventionAnnotat
|
|
|
5515
5314
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5516
5315
|
SetAnnotation(name: string, value: unknown): void;
|
|
5517
5316
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5317
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5518
5318
|
SetIncrementBy(incrementBy: Nullable<System_Internal.Int32>, configurationSource: ConfigurationSource): Nullable<System_Internal.Int32>;
|
|
5519
5319
|
SetIsCyclic(cyclic: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable<System_Internal.Boolean>;
|
|
5520
5320
|
SetMaxValue(maxValue: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): Nullable<System_Internal.Int64>;
|
|
@@ -5559,14 +5359,7 @@ export interface __Sequence$views {
|
|
|
5559
5359
|
export type Sequence = Sequence$instance & __Sequence$views;
|
|
5560
5360
|
|
|
5561
5361
|
|
|
5562
|
-
export
|
|
5563
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
5564
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
5565
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5566
|
-
}
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
export interface ServiceProperty$instance extends ServiceProperty$protected, PropertyBase$instance {
|
|
5362
|
+
export interface ServiceProperty$instance extends PropertyBase$instance {
|
|
5570
5363
|
readonly ClrType: Type;
|
|
5571
5364
|
readonly DebugView: DebugView;
|
|
5572
5365
|
readonly DeclaringEntityType: EntityType;
|
|
@@ -5579,11 +5372,13 @@ export interface ServiceProperty$instance extends ServiceProperty$protected, Pro
|
|
|
5579
5372
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5580
5373
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
5581
5374
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5375
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5582
5376
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5583
5377
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
5584
5378
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5585
5379
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5586
5380
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5381
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5587
5382
|
AnnotationsToDebugString(indent?: int): string;
|
|
5588
5383
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
5589
5384
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -5613,6 +5408,7 @@ export interface ServiceProperty$instance extends ServiceProperty$protected, Pro
|
|
|
5613
5408
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5614
5409
|
SetAnnotation(name: string, value: unknown): void;
|
|
5615
5410
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5411
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5616
5412
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
5617
5413
|
SetField(fieldName: string): void;
|
|
5618
5414
|
SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
|
|
@@ -5651,16 +5447,7 @@ export interface __ServiceProperty$views {
|
|
|
5651
5447
|
export type ServiceProperty = ServiceProperty$instance & __ServiceProperty$views;
|
|
5652
5448
|
|
|
5653
5449
|
|
|
5654
|
-
export
|
|
5655
|
-
protected AddAnnotation16(name: string, annotation: Annotation): Annotation;
|
|
5656
|
-
protected AddRuntimeAnnotation9(name: string, annotation: Annotation): Annotation;
|
|
5657
|
-
protected OnAnnotationSet2(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
5658
|
-
protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5659
|
-
protected SetAnnotation7(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5660
|
-
}
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
export interface SkipNavigation$instance extends SkipNavigation$protected, PropertyBase$instance {
|
|
5450
|
+
export interface SkipNavigation$instance extends PropertyBase$instance {
|
|
5664
5451
|
readonly ClrType: Type;
|
|
5665
5452
|
readonly CollectionAccessor: IClrCollectionAccessor | undefined;
|
|
5666
5453
|
readonly DebugView: DebugView;
|
|
@@ -5679,11 +5466,13 @@ export interface SkipNavigation$instance extends SkipNavigation$protected, Prope
|
|
|
5679
5466
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5680
5467
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
5681
5468
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5469
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5682
5470
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5683
5471
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
5684
5472
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5685
5473
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5686
5474
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5475
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5687
5476
|
AnnotationsToDebugString(indent?: int): string;
|
|
5688
5477
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
5689
5478
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -5710,10 +5499,13 @@ export interface SkipNavigation$instance extends SkipNavigation$protected, Prope
|
|
|
5710
5499
|
GetSetter(): IClrPropertySetter;
|
|
5711
5500
|
GetShadowIndex(): int;
|
|
5712
5501
|
IsShadowProperty(): boolean;
|
|
5502
|
+
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
5503
|
+
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5713
5504
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5714
5505
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5715
5506
|
SetAnnotation(name: string, value: unknown): void;
|
|
5716
5507
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5508
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5717
5509
|
SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
|
|
5718
5510
|
SetField(fieldName: string): void;
|
|
5719
5511
|
SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
|
|
@@ -5765,28 +5557,22 @@ export interface SkipNavigationComparer$instance {
|
|
|
5765
5557
|
|
|
5766
5558
|
|
|
5767
5559
|
export const SkipNavigationComparer: {
|
|
5768
|
-
new(): SkipNavigationComparer;
|
|
5769
5560
|
readonly Instance: SkipNavigationComparer;
|
|
5770
5561
|
};
|
|
5771
5562
|
|
|
5772
5563
|
|
|
5773
5564
|
export type SkipNavigationComparer = SkipNavigationComparer$instance;
|
|
5774
5565
|
|
|
5775
|
-
export
|
|
5776
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5777
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5778
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5779
|
-
}
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
export interface SqlQuery$instance extends SqlQuery$protected, TableBase$instance {
|
|
5566
|
+
export interface SqlQuery$instance extends TableBase$instance {
|
|
5783
5567
|
Sql: string;
|
|
5784
5568
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5785
5569
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5570
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5786
5571
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5787
5572
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5788
5573
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5789
5574
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5575
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5790
5576
|
AnnotationsToDebugString(indent?: int): string;
|
|
5791
5577
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5792
5578
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5804,6 +5590,7 @@ export interface SqlQuery$instance extends SqlQuery$protected, TableBase$instanc
|
|
|
5804
5590
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5805
5591
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5806
5592
|
SetAnnotation(name: string, value: unknown): void;
|
|
5593
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5807
5594
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
5808
5595
|
ToString(): string;
|
|
5809
5596
|
}
|
|
@@ -5825,21 +5612,16 @@ export interface __SqlQuery$views {
|
|
|
5825
5612
|
export type SqlQuery = SqlQuery$instance & __SqlQuery$views;
|
|
5826
5613
|
|
|
5827
5614
|
|
|
5828
|
-
export
|
|
5829
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5830
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5831
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5832
|
-
}
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
export interface SqlQueryColumn$instance extends SqlQueryColumn$protected, ColumnBase_1$instance<SqlQueryColumnMapping> {
|
|
5615
|
+
export interface SqlQueryColumn$instance extends ColumnBase_1$instance<SqlQueryColumnMapping> {
|
|
5836
5616
|
readonly SqlQuery: SqlQuery;
|
|
5837
5617
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5838
5618
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5619
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5839
5620
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5840
5621
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5841
5622
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5842
5623
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5624
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5843
5625
|
AnnotationsToDebugString(indent?: int): string;
|
|
5844
5626
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5845
5627
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5853,6 +5635,7 @@ export interface SqlQueryColumn$instance extends SqlQueryColumn$protected, Colum
|
|
|
5853
5635
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5854
5636
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5855
5637
|
SetAnnotation(name: string, value: unknown): void;
|
|
5638
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5856
5639
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
5857
5640
|
ToString(): string;
|
|
5858
5641
|
}
|
|
@@ -5874,22 +5657,16 @@ export interface __SqlQueryColumn$views {
|
|
|
5874
5657
|
export type SqlQueryColumn = SqlQueryColumn$instance & __SqlQueryColumn$views;
|
|
5875
5658
|
|
|
5876
5659
|
|
|
5877
|
-
export
|
|
5878
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5879
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5880
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
5881
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5882
|
-
}
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
export interface SqlQueryColumnMapping$instance extends SqlQueryColumnMapping$protected, ColumnMappingBase$instance {
|
|
5660
|
+
export interface SqlQueryColumnMapping$instance extends ColumnMappingBase$instance {
|
|
5886
5661
|
readonly SqlQueryMapping: ISqlQueryMapping;
|
|
5887
5662
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5888
5663
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5664
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5889
5665
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5890
5666
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5891
5667
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5892
5668
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5669
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5893
5670
|
AnnotationsToDebugString(indent?: int): string;
|
|
5894
5671
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5895
5672
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5899,9 +5676,11 @@ export interface SqlQueryColumnMapping$instance extends SqlQueryColumnMapping$pr
|
|
|
5899
5676
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
5900
5677
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
5901
5678
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
5679
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
5902
5680
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5903
5681
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5904
5682
|
SetAnnotation(name: string, value: unknown): void;
|
|
5683
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5905
5684
|
ToString(): string;
|
|
5906
5685
|
}
|
|
5907
5686
|
|
|
@@ -5922,22 +5701,17 @@ export interface __SqlQueryColumnMapping$views {
|
|
|
5922
5701
|
export type SqlQueryColumnMapping = SqlQueryColumnMapping$instance & __SqlQueryColumnMapping$views;
|
|
5923
5702
|
|
|
5924
5703
|
|
|
5925
|
-
export
|
|
5926
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5927
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5928
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5929
|
-
}
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
export interface SqlQueryMapping$instance extends SqlQueryMapping$protected, TableMappingBase_1$instance<SqlQueryColumnMapping> {
|
|
5704
|
+
export interface SqlQueryMapping$instance extends TableMappingBase_1$instance<SqlQueryColumnMapping> {
|
|
5933
5705
|
IsDefaultSqlQueryMapping: boolean;
|
|
5934
5706
|
readonly SqlQuery: ISqlQuery;
|
|
5935
5707
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5936
5708
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5709
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5937
5710
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5938
5711
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
5939
5712
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5940
5713
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5714
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5941
5715
|
AnnotationsToDebugString(indent?: int): string;
|
|
5942
5716
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
5943
5717
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -5950,6 +5724,7 @@ export interface SqlQueryMapping$instance extends SqlQueryMapping$protected, Tab
|
|
|
5950
5724
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
5951
5725
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
5952
5726
|
SetAnnotation(name: string, value: unknown): void;
|
|
5727
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5953
5728
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
5954
5729
|
ToString(): string;
|
|
5955
5730
|
}
|
|
@@ -5971,14 +5746,7 @@ export interface __SqlQueryMapping$views {
|
|
|
5971
5746
|
export type SqlQueryMapping = SqlQueryMapping$instance & __SqlQueryMapping$views;
|
|
5972
5747
|
|
|
5973
5748
|
|
|
5974
|
-
export
|
|
5975
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
5976
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
5977
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
5978
|
-
}
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
export interface StoredProcedure$instance extends StoredProcedure$protected, ConventionAnnotatable {
|
|
5749
|
+
export interface StoredProcedure$instance extends ConventionAnnotatable {
|
|
5982
5750
|
readonly DebugView: DebugView;
|
|
5983
5751
|
EntityType: IMutableEntityType;
|
|
5984
5752
|
readonly IsInModel: boolean;
|
|
@@ -5987,11 +5755,13 @@ export interface StoredProcedure$instance extends StoredProcedure$protected, Con
|
|
|
5987
5755
|
Name: string;
|
|
5988
5756
|
readonly Parameters: IReadOnlyList<StoredProcedureParameter>;
|
|
5989
5757
|
readonly ResultColumns: IReadOnlyList<StoredProcedureResultColumn>;
|
|
5990
|
-
Schema: string;
|
|
5758
|
+
get Schema(): string | undefined;
|
|
5759
|
+
set Schema(value: string | undefined);
|
|
5991
5760
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
5992
5761
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
5993
5762
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
5994
5763
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5764
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
5995
5765
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
5996
5766
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
5997
5767
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
@@ -6002,6 +5772,7 @@ export interface StoredProcedure$instance extends StoredProcedure$protected, Con
|
|
|
6002
5772
|
AddRowsAffectedResultColumn(): StoredProcedureResultColumn;
|
|
6003
5773
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6004
5774
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5775
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6005
5776
|
AnnotationsToDebugString(indent?: int): string;
|
|
6006
5777
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
6007
5778
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -6025,8 +5796,9 @@ export interface StoredProcedure$instance extends StoredProcedure$protected, Con
|
|
|
6025
5796
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6026
5797
|
SetAnnotation(name: string, value: unknown): void;
|
|
6027
5798
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5799
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6028
5800
|
SetIsRowsAffectedReturned(rowsAffectedReturned: boolean): boolean;
|
|
6029
|
-
SetName(name: string, configurationSource: ConfigurationSource): string;
|
|
5801
|
+
SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
6030
5802
|
SetName(name: string, schema: string, configurationSource: ConfigurationSource, skipOverrides?: boolean): void;
|
|
6031
5803
|
SetRemovedFromModel(): void;
|
|
6032
5804
|
SetSchema(schema: string, configurationSource: ConfigurationSource): string | undefined;
|
|
@@ -6071,34 +5843,28 @@ export interface StoredProcedureComparer$instance {
|
|
|
6071
5843
|
|
|
6072
5844
|
|
|
6073
5845
|
export const StoredProcedureComparer: {
|
|
6074
|
-
new(): StoredProcedureComparer;
|
|
6075
5846
|
readonly Instance: StoredProcedureComparer;
|
|
6076
5847
|
};
|
|
6077
5848
|
|
|
6078
5849
|
|
|
6079
5850
|
export type StoredProcedureComparer = StoredProcedureComparer$instance;
|
|
6080
5851
|
|
|
6081
|
-
export
|
|
6082
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6083
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6084
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6085
|
-
}
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
export interface StoredProcedureMapping$instance extends StoredProcedureMapping$protected, TableMappingBase_1$instance<IStoredProcedureResultColumnMapping> {
|
|
5852
|
+
export interface StoredProcedureMapping$instance extends TableMappingBase_1$instance<IStoredProcedureResultColumnMapping> {
|
|
6089
5853
|
readonly DebugView: DebugView;
|
|
6090
5854
|
readonly ParameterMappings: List<IStoredProcedureParameterMapping>;
|
|
6091
5855
|
readonly StoredProcedure: IStoredProcedure;
|
|
6092
5856
|
readonly StoredProcedureIdentifier: StoreObjectIdentifier;
|
|
6093
5857
|
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
6094
|
-
readonly TableMapping: ITableMapping;
|
|
5858
|
+
readonly TableMapping: ITableMapping | undefined;
|
|
6095
5859
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6096
5860
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5861
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6097
5862
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6098
5863
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6099
5864
|
AddParameterMapping(parameterMapping: IStoredProcedureParameterMapping): boolean;
|
|
6100
5865
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6101
5866
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5867
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6102
5868
|
AnnotationsToDebugString(indent?: int): string;
|
|
6103
5869
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6104
5870
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6111,6 +5877,7 @@ export interface StoredProcedureMapping$instance extends StoredProcedureMapping$
|
|
|
6111
5877
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6112
5878
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6113
5879
|
SetAnnotation(name: string, value: unknown): void;
|
|
5880
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6114
5881
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6115
5882
|
ToString(): string;
|
|
6116
5883
|
}
|
|
@@ -6132,14 +5899,7 @@ export interface __StoredProcedureMapping$views {
|
|
|
6132
5899
|
export type StoredProcedureMapping = StoredProcedureMapping$instance & __StoredProcedureMapping$views;
|
|
6133
5900
|
|
|
6134
5901
|
|
|
6135
|
-
export
|
|
6136
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
6137
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6138
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6139
|
-
}
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
export interface StoredProcedureParameter$instance extends StoredProcedureParameter$protected, ConventionAnnotatable {
|
|
5902
|
+
export interface StoredProcedureParameter$instance extends ConventionAnnotatable {
|
|
6143
5903
|
readonly DebugView: DebugView;
|
|
6144
5904
|
Direction: ParameterDirection;
|
|
6145
5905
|
readonly ForOriginalValue: Nullable<System_Internal.Boolean>;
|
|
@@ -6147,18 +5907,20 @@ export interface StoredProcedureParameter$instance extends StoredProcedureParame
|
|
|
6147
5907
|
readonly IsInModel: boolean;
|
|
6148
5908
|
readonly IsReadOnly: boolean;
|
|
6149
5909
|
Name: string;
|
|
6150
|
-
readonly PropertyName: string;
|
|
5910
|
+
readonly PropertyName: string | undefined;
|
|
6151
5911
|
readonly StoredProcedure: StoredProcedure;
|
|
6152
5912
|
StoreParameter: IStoreStoredProcedureParameter;
|
|
6153
5913
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
6154
5914
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
6155
5915
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6156
5916
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5917
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6157
5918
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6158
5919
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
6159
5920
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6160
5921
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6161
5922
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5923
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6162
5924
|
AnnotationsToDebugString(indent?: int): string;
|
|
6163
5925
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
6164
5926
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -6177,6 +5939,7 @@ export interface StoredProcedureParameter$instance extends StoredProcedureParame
|
|
|
6177
5939
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6178
5940
|
SetAnnotation(name: string, value: unknown): void;
|
|
6179
5941
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
5942
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6180
5943
|
SetDirection(direction: ParameterDirection, configurationSource: ConfigurationSource): ParameterDirection;
|
|
6181
5944
|
SetName(name: string, configurationSource: ConfigurationSource): string;
|
|
6182
5945
|
SetRemovedFromModel(): void;
|
|
@@ -6203,24 +5966,18 @@ export interface __StoredProcedureParameter$views {
|
|
|
6203
5966
|
export type StoredProcedureParameter = StoredProcedureParameter$instance & __StoredProcedureParameter$views;
|
|
6204
5967
|
|
|
6205
5968
|
|
|
6206
|
-
export
|
|
6207
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6208
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6209
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
6210
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6211
|
-
}
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
export interface StoredProcedureParameterMapping$instance extends StoredProcedureParameterMapping$protected, ColumnMappingBase$instance {
|
|
5969
|
+
export interface StoredProcedureParameterMapping$instance extends ColumnMappingBase$instance {
|
|
6215
5970
|
readonly DebugView: DebugView;
|
|
6216
5971
|
readonly Parameter: IStoredProcedureParameter;
|
|
6217
5972
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
6218
5973
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6219
5974
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
5975
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6220
5976
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6221
5977
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6222
5978
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6223
5979
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5980
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6224
5981
|
AnnotationsToDebugString(indent?: int): string;
|
|
6225
5982
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6226
5983
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6230,9 +5987,11 @@ export interface StoredProcedureParameterMapping$instance extends StoredProcedur
|
|
|
6230
5987
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6231
5988
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6232
5989
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
5990
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
6233
5991
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6234
5992
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6235
5993
|
SetAnnotation(name: string, value: unknown): void;
|
|
5994
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6236
5995
|
ToString(): string;
|
|
6237
5996
|
}
|
|
6238
5997
|
|
|
@@ -6253,31 +6012,26 @@ export interface __StoredProcedureParameterMapping$views {
|
|
|
6253
6012
|
export type StoredProcedureParameterMapping = StoredProcedureParameterMapping$instance & __StoredProcedureParameterMapping$views;
|
|
6254
6013
|
|
|
6255
6014
|
|
|
6256
|
-
export
|
|
6257
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
6258
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6259
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6260
|
-
}
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
export interface StoredProcedureResultColumn$instance extends StoredProcedureResultColumn$protected, ConventionAnnotatable {
|
|
6015
|
+
export interface StoredProcedureResultColumn$instance extends ConventionAnnotatable {
|
|
6264
6016
|
readonly DebugView: DebugView;
|
|
6265
6017
|
readonly ForRowsAffected: boolean;
|
|
6266
6018
|
readonly IsInModel: boolean;
|
|
6267
6019
|
readonly IsReadOnly: boolean;
|
|
6268
6020
|
Name: string;
|
|
6269
|
-
readonly PropertyName: string;
|
|
6021
|
+
readonly PropertyName: string | undefined;
|
|
6270
6022
|
readonly StoredProcedure: StoredProcedure;
|
|
6271
6023
|
StoreResultColumn: IStoreStoredProcedureResultColumn;
|
|
6272
6024
|
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
6273
6025
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
6274
6026
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6275
6027
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6028
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6276
6029
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6277
6030
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
6278
6031
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6279
6032
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6280
6033
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6034
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6281
6035
|
AnnotationsToDebugString(indent?: int): string;
|
|
6282
6036
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
6283
6037
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -6294,7 +6048,8 @@ export interface StoredProcedureResultColumn$instance extends StoredProcedureRes
|
|
|
6294
6048
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6295
6049
|
SetAnnotation(name: string, value: unknown): void;
|
|
6296
6050
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
6297
|
-
|
|
6051
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6052
|
+
SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
6298
6053
|
SetRemovedFromModel(): void;
|
|
6299
6054
|
ToString(): string;
|
|
6300
6055
|
}
|
|
@@ -6319,24 +6074,18 @@ export interface __StoredProcedureResultColumn$views {
|
|
|
6319
6074
|
export type StoredProcedureResultColumn = StoredProcedureResultColumn$instance & __StoredProcedureResultColumn$views;
|
|
6320
6075
|
|
|
6321
6076
|
|
|
6322
|
-
export
|
|
6323
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6324
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6325
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
6326
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6327
|
-
}
|
|
6328
|
-
|
|
6329
|
-
|
|
6330
|
-
export interface StoredProcedureResultColumnMapping$instance extends StoredProcedureResultColumnMapping$protected, ColumnMappingBase$instance {
|
|
6077
|
+
export interface StoredProcedureResultColumnMapping$instance extends ColumnMappingBase$instance {
|
|
6331
6078
|
readonly DebugView: DebugView;
|
|
6332
6079
|
readonly ResultColumn: IStoredProcedureResultColumn;
|
|
6333
6080
|
readonly StoredProcedureMapping: IStoredProcedureMapping;
|
|
6334
6081
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6335
6082
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6083
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6336
6084
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6337
6085
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6338
6086
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6339
6087
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6088
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6340
6089
|
AnnotationsToDebugString(indent?: int): string;
|
|
6341
6090
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6342
6091
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6346,9 +6095,11 @@ export interface StoredProcedureResultColumnMapping$instance extends StoredProce
|
|
|
6346
6095
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6347
6096
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6348
6097
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6098
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
6349
6099
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6350
6100
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6351
6101
|
SetAnnotation(name: string, value: unknown): void;
|
|
6102
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6352
6103
|
ToString(): string;
|
|
6353
6104
|
}
|
|
6354
6105
|
|
|
@@ -6369,25 +6120,20 @@ export interface __StoredProcedureResultColumnMapping$views {
|
|
|
6369
6120
|
export type StoredProcedureResultColumnMapping = StoredProcedureResultColumnMapping$instance & __StoredProcedureResultColumnMapping$views;
|
|
6370
6121
|
|
|
6371
6122
|
|
|
6372
|
-
export
|
|
6373
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6374
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6375
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6376
|
-
}
|
|
6377
|
-
|
|
6378
|
-
|
|
6379
|
-
export interface StoreFunction$instance extends StoreFunction$protected, TableBase$instance {
|
|
6123
|
+
export interface StoreFunction$instance extends TableBase$instance {
|
|
6380
6124
|
readonly DbFunctions: SortedDictionary<System_Internal.String, IDbFunction>;
|
|
6381
6125
|
readonly IsBuiltIn: boolean;
|
|
6382
6126
|
readonly Parameters: StoreFunctionParameter[];
|
|
6383
|
-
readonly ReturnType: string;
|
|
6127
|
+
readonly ReturnType: string | undefined;
|
|
6384
6128
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6385
6129
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6130
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6386
6131
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6387
6132
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6388
6133
|
AddDbFunction(dbFunction: IRuntimeDbFunction): void;
|
|
6389
6134
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6390
6135
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6136
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6391
6137
|
AnnotationsToDebugString(indent?: int): string;
|
|
6392
6138
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6393
6139
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6406,6 +6152,7 @@ export interface StoreFunction$instance extends StoreFunction$protected, TableBa
|
|
|
6406
6152
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6407
6153
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6408
6154
|
SetAnnotation(name: string, value: unknown): void;
|
|
6155
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6409
6156
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6410
6157
|
ToString(): string;
|
|
6411
6158
|
}
|
|
@@ -6427,14 +6174,7 @@ export interface __StoreFunction$views {
|
|
|
6427
6174
|
export type StoreFunction = StoreFunction$instance & __StoreFunction$views;
|
|
6428
6175
|
|
|
6429
6176
|
|
|
6430
|
-
export
|
|
6431
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6432
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6433
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6434
|
-
}
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
export interface StoreFunctionParameter$instance extends StoreFunctionParameter$protected, Annotatable {
|
|
6177
|
+
export interface StoreFunctionParameter$instance extends Annotatable {
|
|
6438
6178
|
readonly DbFunctionParameters: List<IDbFunctionParameter>;
|
|
6439
6179
|
readonly Function: StoreFunction;
|
|
6440
6180
|
readonly IsReadOnly: boolean;
|
|
@@ -6442,10 +6182,12 @@ export interface StoreFunctionParameter$instance extends StoreFunctionParameter$
|
|
|
6442
6182
|
readonly StoreType: string;
|
|
6443
6183
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6444
6184
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6185
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6445
6186
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6446
6187
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6447
6188
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6448
6189
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6190
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6449
6191
|
AnnotationsToDebugString(indent?: int): string;
|
|
6450
6192
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6451
6193
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6458,6 +6200,7 @@ export interface StoreFunctionParameter$instance extends StoreFunctionParameter$
|
|
|
6458
6200
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6459
6201
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6460
6202
|
SetAnnotation(name: string, value: unknown): void;
|
|
6203
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6461
6204
|
ToString(): string;
|
|
6462
6205
|
}
|
|
6463
6206
|
|
|
@@ -6477,28 +6220,23 @@ export interface __StoreFunctionParameter$views {
|
|
|
6477
6220
|
export type StoreFunctionParameter = StoreFunctionParameter$instance & __StoreFunctionParameter$views;
|
|
6478
6221
|
|
|
6479
6222
|
|
|
6480
|
-
export
|
|
6481
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6482
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6483
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6484
|
-
}
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
export interface StoreStoredProcedure$instance extends StoreStoredProcedure$protected, TableBase$instance {
|
|
6223
|
+
export interface StoreStoredProcedure$instance extends TableBase$instance {
|
|
6488
6224
|
readonly DebugView: DebugView;
|
|
6489
6225
|
Parameters: List<IStoreStoredProcedureParameter>;
|
|
6490
6226
|
ResultColumns: List<IStoreStoredProcedureResultColumn>;
|
|
6491
6227
|
get ReturnValue(): IStoreStoredProcedureReturnValue | undefined;
|
|
6492
|
-
set ReturnValue(value: IStoreStoredProcedureReturnValue);
|
|
6228
|
+
set ReturnValue(value: IStoreStoredProcedureReturnValue | undefined);
|
|
6493
6229
|
readonly StoredProcedures: SortedSet<IStoredProcedure>;
|
|
6494
6230
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6495
6231
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6232
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6496
6233
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6497
6234
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6498
6235
|
AddParameter(parameter: IStoreStoredProcedureParameter): void;
|
|
6499
6236
|
AddResultColumn(column: IStoreStoredProcedureResultColumn): void;
|
|
6500
6237
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6501
6238
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6239
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6502
6240
|
AddStoredProcedure(storedProcedure: IRuntimeStoredProcedure): void;
|
|
6503
6241
|
AnnotationsToDebugString(indent?: int): string;
|
|
6504
6242
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -6520,6 +6258,7 @@ export interface StoreStoredProcedure$instance extends StoreStoredProcedure$prot
|
|
|
6520
6258
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6521
6259
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6522
6260
|
SetAnnotation(name: string, value: unknown): void;
|
|
6261
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6523
6262
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6524
6263
|
ToString(): string;
|
|
6525
6264
|
}
|
|
@@ -6541,25 +6280,19 @@ export interface __StoreStoredProcedure$views {
|
|
|
6541
6280
|
export type StoreStoredProcedure = StoreStoredProcedure$instance & __StoreStoredProcedure$views;
|
|
6542
6281
|
|
|
6543
6282
|
|
|
6544
|
-
export
|
|
6545
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6546
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6547
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6548
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6549
|
-
}
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
export interface StoreStoredProcedureParameter$instance extends StoreStoredProcedureParameter$protected, ColumnBase_1$instance<StoredProcedureParameterMapping> {
|
|
6283
|
+
export interface StoreStoredProcedureParameter$instance extends ColumnBase_1$instance<StoredProcedureParameterMapping> {
|
|
6553
6284
|
readonly DebugView: DebugView;
|
|
6554
6285
|
readonly Direction: ParameterDirection;
|
|
6555
6286
|
readonly Position: int;
|
|
6556
6287
|
readonly StoredProcedure: StoreStoredProcedure;
|
|
6557
6288
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6558
6289
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6290
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6559
6291
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6560
6292
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6561
6293
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6562
6294
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6295
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6563
6296
|
AnnotationsToDebugString(indent?: int): string;
|
|
6564
6297
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6565
6298
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6568,11 +6301,13 @@ export interface StoreStoredProcedureParameter$instance extends StoreStoredProce
|
|
|
6568
6301
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
6569
6302
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
6570
6303
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6304
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6571
6305
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6572
6306
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6573
6307
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6574
6308
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6575
6309
|
SetAnnotation(name: string, value: unknown): void;
|
|
6310
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6576
6311
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6577
6312
|
ToString(): string;
|
|
6578
6313
|
}
|
|
@@ -6594,24 +6329,18 @@ export interface __StoreStoredProcedureParameter$views {
|
|
|
6594
6329
|
export type StoreStoredProcedureParameter = StoreStoredProcedureParameter$instance & __StoreStoredProcedureParameter$views;
|
|
6595
6330
|
|
|
6596
6331
|
|
|
6597
|
-
export
|
|
6598
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6599
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6600
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6601
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6602
|
-
}
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
export interface StoreStoredProcedureResultColumn$instance extends StoreStoredProcedureResultColumn$protected, ColumnBase_1$instance<StoredProcedureResultColumnMapping> {
|
|
6332
|
+
export interface StoreStoredProcedureResultColumn$instance extends ColumnBase_1$instance<StoredProcedureResultColumnMapping> {
|
|
6606
6333
|
readonly DebugView: DebugView;
|
|
6607
6334
|
readonly Position: int;
|
|
6608
6335
|
readonly StoredProcedure: StoreStoredProcedure;
|
|
6609
6336
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6610
6337
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6338
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6611
6339
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6612
6340
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6613
6341
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6614
6342
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6343
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6615
6344
|
AnnotationsToDebugString(indent?: int): string;
|
|
6616
6345
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6617
6346
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6620,11 +6349,13 @@ export interface StoreStoredProcedureResultColumn$instance extends StoreStoredPr
|
|
|
6620
6349
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
6621
6350
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
6622
6351
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6352
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6623
6353
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6624
6354
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6625
6355
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6626
6356
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6627
6357
|
SetAnnotation(name: string, value: unknown): void;
|
|
6358
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6628
6359
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6629
6360
|
ToString(): string;
|
|
6630
6361
|
}
|
|
@@ -6646,23 +6377,17 @@ export interface __StoreStoredProcedureResultColumn$views {
|
|
|
6646
6377
|
export type StoreStoredProcedureResultColumn = StoreStoredProcedureResultColumn$instance & __StoreStoredProcedureResultColumn$views;
|
|
6647
6378
|
|
|
6648
6379
|
|
|
6649
|
-
export
|
|
6650
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6651
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6652
|
-
protected GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6653
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6654
|
-
}
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
export interface StoreStoredProcedureReturnValue$instance extends StoreStoredProcedureReturnValue$protected, ColumnBase_1$instance<ColumnMappingBase> {
|
|
6380
|
+
export interface StoreStoredProcedureReturnValue$instance extends ColumnBase_1$instance<ColumnMappingBase> {
|
|
6658
6381
|
readonly DebugView: DebugView;
|
|
6659
6382
|
readonly StoredProcedure: StoreStoredProcedure;
|
|
6660
6383
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6661
6384
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6385
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6662
6386
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6663
6387
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6664
6388
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6665
6389
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6390
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6666
6391
|
AnnotationsToDebugString(indent?: int): string;
|
|
6667
6392
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6668
6393
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6671,11 +6396,13 @@ export interface StoreStoredProcedureReturnValue$instance extends StoreStoredPro
|
|
|
6671
6396
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
6672
6397
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
6673
6398
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6399
|
+
GetDefaultStoreTypeMapping(): RelationalTypeMapping;
|
|
6674
6400
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
6675
6401
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
6676
6402
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6677
6403
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6678
6404
|
SetAnnotation(name: string, value: unknown): void;
|
|
6405
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6679
6406
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6680
6407
|
ToString(): string;
|
|
6681
6408
|
}
|
|
@@ -6697,29 +6424,24 @@ export interface __StoreStoredProcedureReturnValue$views {
|
|
|
6697
6424
|
export type StoreStoredProcedureReturnValue = StoreStoredProcedureReturnValue$instance & __StoreStoredProcedureReturnValue$views;
|
|
6698
6425
|
|
|
6699
6426
|
|
|
6700
|
-
export
|
|
6701
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6702
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6703
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6704
|
-
}
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
export interface Table$instance extends Table$protected, TableBase$instance {
|
|
6427
|
+
export interface Table$instance extends TableBase$instance {
|
|
6708
6428
|
readonly CheckConstraints: SortedDictionary<System_Internal.String, CheckConstraint>;
|
|
6709
6429
|
readonly ForeignKeyConstraints: SortedSet<ForeignKeyConstraint>;
|
|
6710
6430
|
readonly Indexes: SortedDictionary<System_Internal.String, TableIndex>;
|
|
6711
6431
|
readonly IsExcludedFromMigrations: boolean;
|
|
6712
6432
|
get PrimaryKey(): UniqueConstraint | undefined;
|
|
6713
|
-
set PrimaryKey(value: UniqueConstraint);
|
|
6433
|
+
set PrimaryKey(value: UniqueConstraint | undefined);
|
|
6714
6434
|
readonly ReferencingForeignKeyConstraints: SortedSet<ForeignKeyConstraint>;
|
|
6715
6435
|
readonly Triggers: SortedDictionary<System_Internal.String, ITrigger>;
|
|
6716
6436
|
readonly UniqueConstraints: SortedDictionary<System_Internal.String, UniqueConstraint>;
|
|
6717
6437
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6718
6438
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6439
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6719
6440
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6720
6441
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6721
6442
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6722
6443
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6444
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6723
6445
|
AnnotationsToDebugString(indent?: int): string;
|
|
6724
6446
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6725
6447
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6738,6 +6460,7 @@ export interface Table$instance extends Table$protected, TableBase$instance {
|
|
|
6738
6460
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6739
6461
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6740
6462
|
SetAnnotation(name: string, value: unknown): void;
|
|
6463
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6741
6464
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6742
6465
|
ToString(): string;
|
|
6743
6466
|
}
|
|
@@ -6759,14 +6482,7 @@ export interface __Table$views {
|
|
|
6759
6482
|
export type Table = Table$instance & __Table$views;
|
|
6760
6483
|
|
|
6761
6484
|
|
|
6762
|
-
export
|
|
6763
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6764
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6765
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6766
|
-
}
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
export interface TableBase$instance extends TableBase$protected, Annotatable {
|
|
6485
|
+
export interface TableBase$instance extends Annotatable {
|
|
6770
6486
|
Columns: SortedDictionary<System_Internal.String, IColumnBase>;
|
|
6771
6487
|
readonly ComplexTypeMappings: SortedSet<ITableMappingBase>;
|
|
6772
6488
|
readonly EntityTypeMappings: SortedSet<ITableMappingBase>;
|
|
@@ -6775,19 +6491,21 @@ export interface TableBase$instance extends TableBase$protected, Annotatable {
|
|
|
6775
6491
|
readonly Model: RelationalModel;
|
|
6776
6492
|
readonly Name: string;
|
|
6777
6493
|
get OptionalTypes(): Dictionary<ITypeBase, System_Internal.Boolean> | undefined;
|
|
6778
|
-
set OptionalTypes(value: Dictionary<ITypeBase, System_Internal.Boolean>);
|
|
6494
|
+
set OptionalTypes(value: Dictionary<ITypeBase, System_Internal.Boolean> | undefined);
|
|
6779
6495
|
get ReferencingRowInternalForeignKeys(): SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>> | undefined;
|
|
6780
|
-
set ReferencingRowInternalForeignKeys(value: SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>>);
|
|
6496
|
+
set ReferencingRowInternalForeignKeys(value: SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>> | undefined);
|
|
6781
6497
|
get RowInternalForeignKeys(): SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>> | undefined;
|
|
6782
|
-
set RowInternalForeignKeys(value: SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>>);
|
|
6783
|
-
readonly Schema: string;
|
|
6498
|
+
set RowInternalForeignKeys(value: SortedDictionary<IEntityType, IEnumerable__System_Collections_Generic<IForeignKey>> | undefined);
|
|
6499
|
+
readonly Schema: string | undefined;
|
|
6784
6500
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6785
6501
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6502
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6786
6503
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6787
6504
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6788
6505
|
AddRowInternalForeignKey(entityType: IEntityType, foreignKey: IForeignKey): void;
|
|
6789
6506
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6790
6507
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6508
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6791
6509
|
AddTypeMapping(tableMapping: ITableMappingBase, optional: Nullable<System_Internal.Boolean>): void;
|
|
6792
6510
|
AnnotationsToDebugString(indent?: int): string;
|
|
6793
6511
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -6804,6 +6522,7 @@ export interface TableBase$instance extends TableBase$protected, Annotatable {
|
|
|
6804
6522
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6805
6523
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6806
6524
|
SetAnnotation(name: string, value: unknown): void;
|
|
6525
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6807
6526
|
ToString(): string;
|
|
6808
6527
|
}
|
|
6809
6528
|
|
|
@@ -6830,24 +6549,16 @@ export interface TableBaseIdentityComparer$instance {
|
|
|
6830
6549
|
|
|
6831
6550
|
|
|
6832
6551
|
export const TableBaseIdentityComparer: {
|
|
6833
|
-
new(): TableBaseIdentityComparer;
|
|
6834
6552
|
readonly Instance: TableBaseIdentityComparer;
|
|
6835
6553
|
};
|
|
6836
6554
|
|
|
6837
6555
|
|
|
6838
6556
|
export type TableBaseIdentityComparer = TableBaseIdentityComparer$instance;
|
|
6839
6557
|
|
|
6840
|
-
export
|
|
6841
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6842
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6843
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6844
|
-
}
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
export interface TableIndex$instance extends TableIndex$protected, Annotatable {
|
|
6558
|
+
export interface TableIndex$instance extends Annotatable {
|
|
6848
6559
|
readonly Columns: IReadOnlyList<Column>;
|
|
6849
6560
|
readonly Filter: string | undefined;
|
|
6850
|
-
readonly IsDescending: IReadOnlyList<System_Internal.Boolean
|
|
6561
|
+
readonly IsDescending: IReadOnlyList<System_Internal.Boolean> | undefined;
|
|
6851
6562
|
readonly IsReadOnly: boolean;
|
|
6852
6563
|
readonly IsUnique: boolean;
|
|
6853
6564
|
readonly MappedIndexes: SortedSet<IIndex>;
|
|
@@ -6855,10 +6566,12 @@ export interface TableIndex$instance extends TableIndex$protected, Annotatable {
|
|
|
6855
6566
|
readonly Table: Table;
|
|
6856
6567
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6857
6568
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6569
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6858
6570
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6859
6571
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6860
6572
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6861
6573
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6574
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6862
6575
|
AnnotationsToDebugString(indent?: int): string;
|
|
6863
6576
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6864
6577
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6872,6 +6585,7 @@ export interface TableIndex$instance extends TableIndex$protected, Annotatable {
|
|
|
6872
6585
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6873
6586
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6874
6587
|
SetAnnotation(name: string, value: unknown): void;
|
|
6588
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6875
6589
|
SetRowIndexValueFactory(factory: IRowIndexValueFactory): void;
|
|
6876
6590
|
ToString(): string;
|
|
6877
6591
|
}
|
|
@@ -6900,33 +6614,27 @@ export interface TableIndexComparer$instance {
|
|
|
6900
6614
|
|
|
6901
6615
|
|
|
6902
6616
|
export const TableIndexComparer: {
|
|
6903
|
-
new(): TableIndexComparer;
|
|
6904
6617
|
readonly Instance: TableIndexComparer;
|
|
6905
6618
|
};
|
|
6906
6619
|
|
|
6907
6620
|
|
|
6908
6621
|
export type TableIndexComparer = TableIndexComparer$instance;
|
|
6909
6622
|
|
|
6910
|
-
export
|
|
6911
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6912
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
6913
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6914
|
-
}
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
export interface TableMapping$instance extends TableMapping$protected, TableMappingBase_1$instance<ColumnMapping> {
|
|
6623
|
+
export interface TableMapping$instance extends TableMappingBase_1$instance<ColumnMapping> {
|
|
6918
6624
|
get DeleteStoredProcedureMapping(): IStoredProcedureMapping | undefined;
|
|
6919
|
-
set DeleteStoredProcedureMapping(value: IStoredProcedureMapping);
|
|
6625
|
+
set DeleteStoredProcedureMapping(value: IStoredProcedureMapping | undefined);
|
|
6920
6626
|
get InsertStoredProcedureMapping(): IStoredProcedureMapping | undefined;
|
|
6921
|
-
set InsertStoredProcedureMapping(value: IStoredProcedureMapping);
|
|
6627
|
+
set InsertStoredProcedureMapping(value: IStoredProcedureMapping | undefined);
|
|
6922
6628
|
get UpdateStoredProcedureMapping(): IStoredProcedureMapping | undefined;
|
|
6923
|
-
set UpdateStoredProcedureMapping(value: IStoredProcedureMapping);
|
|
6629
|
+
set UpdateStoredProcedureMapping(value: IStoredProcedureMapping | undefined);
|
|
6924
6630
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6925
6631
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6632
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6926
6633
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6927
6634
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6928
6635
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6929
6636
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6637
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6930
6638
|
AnnotationsToDebugString(indent?: int): string;
|
|
6931
6639
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6932
6640
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6939,6 +6647,7 @@ export interface TableMapping$instance extends TableMapping$protected, TableMapp
|
|
|
6939
6647
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6940
6648
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6941
6649
|
SetAnnotation(name: string, value: unknown): void;
|
|
6650
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6942
6651
|
SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
|
|
6943
6652
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
6944
6653
|
ToString(): string;
|
|
@@ -6961,15 +6670,8 @@ export interface __TableMapping$views {
|
|
|
6961
6670
|
export type TableMapping = TableMapping$instance & __TableMapping$views;
|
|
6962
6671
|
|
|
6963
6672
|
|
|
6964
|
-
export
|
|
6965
|
-
|
|
6966
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6967
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
6968
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6969
|
-
}
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappingBase> extends TableMappingBase_1$protected<TColumnMapping>, Annotatable {
|
|
6673
|
+
export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappingBase> extends Annotatable {
|
|
6674
|
+
readonly ColumnMappings: List<TColumnMapping>;
|
|
6973
6675
|
readonly IncludesDerivedTypes: Nullable<System_Internal.Boolean>;
|
|
6974
6676
|
readonly IsReadOnly: boolean;
|
|
6975
6677
|
IsSharedTablePrincipal: Nullable<System_Internal.Boolean>;
|
|
@@ -6978,11 +6680,13 @@ export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappi
|
|
|
6978
6680
|
readonly TypeBase: ITypeBase;
|
|
6979
6681
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
6980
6682
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6683
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6981
6684
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
6982
6685
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
6983
6686
|
AddColumnMapping(columnMapping: TColumnMapping): boolean;
|
|
6984
6687
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
6985
6688
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6689
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
6986
6690
|
AnnotationsToDebugString(indent?: int): string;
|
|
6987
6691
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
6988
6692
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -6995,6 +6699,7 @@ export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappi
|
|
|
6995
6699
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
6996
6700
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
6997
6701
|
SetAnnotation(name: string, value: unknown): void;
|
|
6702
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
6998
6703
|
SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
|
|
6999
6704
|
ToString(): string;
|
|
7000
6705
|
}
|
|
@@ -7023,21 +6728,13 @@ export interface TableMappingBaseComparer$instance {
|
|
|
7023
6728
|
|
|
7024
6729
|
|
|
7025
6730
|
export const TableMappingBaseComparer: {
|
|
7026
|
-
new(): TableMappingBaseComparer;
|
|
7027
6731
|
readonly Instance: TableMappingBaseComparer;
|
|
7028
6732
|
};
|
|
7029
6733
|
|
|
7030
6734
|
|
|
7031
6735
|
export type TableMappingBaseComparer = TableMappingBaseComparer$instance;
|
|
7032
6736
|
|
|
7033
|
-
export
|
|
7034
|
-
protected AddAnnotation11(name: string, annotation: Annotation): Annotation;
|
|
7035
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7036
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7037
|
-
}
|
|
7038
|
-
|
|
7039
|
-
|
|
7040
|
-
export interface Trigger$instance extends Trigger$protected, ConventionAnnotatable {
|
|
6737
|
+
export interface Trigger$instance extends ConventionAnnotatable {
|
|
7041
6738
|
readonly DebugView: DebugView;
|
|
7042
6739
|
readonly EntityType: EntityType;
|
|
7043
6740
|
readonly IsInModel: boolean;
|
|
@@ -7046,11 +6743,13 @@ export interface Trigger$instance extends Trigger$protected, ConventionAnnotatab
|
|
|
7046
6743
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
7047
6744
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7048
6745
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6746
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7049
6747
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7050
6748
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
7051
6749
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7052
6750
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7053
6751
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6752
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7054
6753
|
AnnotationsToDebugString(indent?: int): string;
|
|
7055
6754
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
7056
6755
|
FindAnnotation(name: string): IConventionAnnotation | undefined;
|
|
@@ -7067,6 +6766,7 @@ export interface Trigger$instance extends Trigger$protected, ConventionAnnotatab
|
|
|
7067
6766
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7068
6767
|
SetAnnotation(name: string, value: unknown): void;
|
|
7069
6768
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
6769
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7070
6770
|
SetRemovedFromModel(): void;
|
|
7071
6771
|
ToString(): string;
|
|
7072
6772
|
UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
@@ -7092,23 +6792,13 @@ export interface __Trigger$views {
|
|
|
7092
6792
|
export type Trigger = Trigger$instance & __Trigger$views;
|
|
7093
6793
|
|
|
7094
6794
|
|
|
7095
|
-
export
|
|
7096
|
-
|
|
7097
|
-
|
|
7098
|
-
|
|
7099
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7100
|
-
protected GetDerivedTypes<T extends TypeBase>(): IEnumerable__System_Collections_Generic<T>;
|
|
7101
|
-
protected SetAnnotation5(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7102
|
-
protected ValidateClrMember(name: string, memberInfo: MemberInfo, throwOnNameMismatch?: boolean): Type | undefined;
|
|
7103
|
-
}
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotatable {
|
|
7107
|
-
get BaseType(): ComplexType | undefined | TypeBase | undefined;
|
|
7108
|
-
set BaseType(value: TypeBase);
|
|
6795
|
+
export interface TypeBase$instance extends ConventionAnnotatable {
|
|
6796
|
+
readonly BaseBuilder: InternalTypeBaseBuilder;
|
|
6797
|
+
get BaseType(): EntityType | undefined | TypeBase | undefined;
|
|
6798
|
+
set BaseType(value: EntityType | undefined | TypeBase | undefined);
|
|
7109
6799
|
readonly ClrType: Type;
|
|
7110
6800
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
7111
|
-
set ConstructorBinding(value: InstantiationBinding);
|
|
6801
|
+
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
7112
6802
|
readonly DirectlyDerivedTypes: SortedSet<TypeBase>;
|
|
7113
6803
|
readonly EmptyShadowValuesFactory: Func<ISnapshot>;
|
|
7114
6804
|
readonly HasSharedClrType: boolean;
|
|
@@ -7118,8 +6808,9 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7118
6808
|
readonly Model: Model;
|
|
7119
6809
|
readonly Name: string;
|
|
7120
6810
|
readonly OriginalValuesFactory: Func<IInternalEntry, ISnapshot>;
|
|
6811
|
+
readonly Properties: SortedDictionary<System_Internal.String, Property>;
|
|
7121
6812
|
get ServiceOnlyConstructorBinding(): InstantiationBinding | undefined;
|
|
7122
|
-
set ServiceOnlyConstructorBinding(value: InstantiationBinding);
|
|
6813
|
+
set ServiceOnlyConstructorBinding(value: InstantiationBinding | undefined);
|
|
7123
6814
|
readonly ShadowValuesFactory: Func<IDictionary<System_Internal.String, unknown | undefined>, ISnapshot>;
|
|
7124
6815
|
readonly StoreGeneratedValuesFactory: Func<ISnapshot>;
|
|
7125
6816
|
readonly TemporaryValuesFactory: Func<IInternalEntry, ISnapshot>;
|
|
@@ -7127,6 +6818,7 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7127
6818
|
AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
7128
6819
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7129
6820
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6821
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7130
6822
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7131
6823
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
7132
6824
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
@@ -7141,6 +6833,7 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7141
6833
|
AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
|
|
7142
6834
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7143
6835
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6836
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7144
6837
|
AnnotationsToDebugString(indent?: int): string;
|
|
7145
6838
|
CalculateCounts(): PropertyCounts;
|
|
7146
6839
|
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
@@ -7179,6 +6872,7 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7179
6872
|
GetDerivedComplexProperties(): IEnumerable__System_Collections_Generic<ComplexProperty>;
|
|
7180
6873
|
GetDerivedProperties(): IEnumerable__System_Collections_Generic<Property>;
|
|
7181
6874
|
GetDerivedTypes(): IEnumerable__System_Collections_Generic<TypeBase>;
|
|
6875
|
+
GetDerivedTypes<T extends TypeBase>(): IEnumerable__System_Collections_Generic<T>;
|
|
7182
6876
|
GetDerivedTypesInclusive(): IEnumerable__System_Collections_Generic<TypeBase>;
|
|
7183
6877
|
GetDiscriminatorPropertyConfigurationSource(): Nullable<ConfigurationSource>;
|
|
7184
6878
|
GetDiscriminatorPropertyName(): string | undefined;
|
|
@@ -7211,6 +6905,7 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7211
6905
|
RemoveProperty(property: Property): Property | undefined;
|
|
7212
6906
|
SetAnnotation(name: string, value: unknown): void;
|
|
7213
6907
|
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
6908
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7214
6909
|
SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
|
|
7215
6910
|
SetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable<ChangeTrackingStrategy>;
|
|
7216
6911
|
SetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InstantiationBinding | undefined;
|
|
@@ -7218,12 +6913,11 @@ export interface TypeBase$instance extends TypeBase$protected, ConventionAnnotat
|
|
|
7218
6913
|
SetPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable<PropertyAccessMode>;
|
|
7219
6914
|
SetServiceOnlyConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InstantiationBinding | undefined;
|
|
7220
6915
|
UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
6916
|
+
ValidateClrMember(name: string, memberInfo: MemberInfo, throwOnNameMismatch?: boolean): Type | undefined;
|
|
7221
6917
|
}
|
|
7222
6918
|
|
|
7223
6919
|
|
|
7224
|
-
export const TypeBase: {
|
|
7225
|
-
new(type: Type, model: Model, configurationSource: ConfigurationSource): TypeBase;
|
|
7226
|
-
new(name: string, type: Type, model: Model, configurationSource: ConfigurationSource): TypeBase;
|
|
6920
|
+
export const TypeBase: (abstract new(type: Type, model: Model, configurationSource: ConfigurationSource) => TypeBase) & (abstract new(name: string, type: Type, model: Model, configurationSource: ConfigurationSource) => TypeBase) & {
|
|
7227
6921
|
CheckChangeTrackingStrategy(structuralType: IReadOnlyTypeBase, value: ChangeTrackingStrategy, requireFullNotifications: boolean): string | undefined;
|
|
7228
6922
|
ToEnumerable<T>(element: T): IEnumerable__System_Collections_Generic<T>;
|
|
7229
6923
|
};
|
|
@@ -7244,14 +6938,7 @@ export interface __TypeBase$views {
|
|
|
7244
6938
|
export type TypeBase = TypeBase$instance & __TypeBase$views;
|
|
7245
6939
|
|
|
7246
6940
|
|
|
7247
|
-
export
|
|
7248
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
7249
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
7250
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7251
|
-
}
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
export interface UniqueConstraint$instance extends UniqueConstraint$protected, Annotatable {
|
|
6941
|
+
export interface UniqueConstraint$instance extends Annotatable {
|
|
7255
6942
|
readonly Columns: IReadOnlyList<Column>;
|
|
7256
6943
|
readonly IsReadOnly: boolean;
|
|
7257
6944
|
readonly MappedKeys: SortedSet<IKey>;
|
|
@@ -7259,10 +6946,12 @@ export interface UniqueConstraint$instance extends UniqueConstraint$protected, A
|
|
|
7259
6946
|
readonly Table: Table;
|
|
7260
6947
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7261
6948
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
6949
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7262
6950
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7263
6951
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7264
6952
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7265
6953
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
6954
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7266
6955
|
AnnotationsToDebugString(indent?: int): string;
|
|
7267
6956
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
7268
6957
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -7276,6 +6965,7 @@ export interface UniqueConstraint$instance extends UniqueConstraint$protected, A
|
|
|
7276
6965
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
7277
6966
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7278
6967
|
SetAnnotation(name: string, value: unknown): void;
|
|
6968
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7279
6969
|
SetRowKeyValueFactory(factory: IRowKeyValueFactory): void;
|
|
7280
6970
|
ToString(): string;
|
|
7281
6971
|
}
|
|
@@ -7304,28 +6994,22 @@ export interface UniqueConstraintComparer$instance {
|
|
|
7304
6994
|
|
|
7305
6995
|
|
|
7306
6996
|
export const UniqueConstraintComparer: {
|
|
7307
|
-
new(): UniqueConstraintComparer;
|
|
7308
6997
|
readonly Instance: UniqueConstraintComparer;
|
|
7309
6998
|
};
|
|
7310
6999
|
|
|
7311
7000
|
|
|
7312
7001
|
export type UniqueConstraintComparer = UniqueConstraintComparer$instance;
|
|
7313
7002
|
|
|
7314
|
-
export
|
|
7315
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7316
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7317
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7318
|
-
}
|
|
7319
|
-
|
|
7320
|
-
|
|
7321
|
-
export interface View$instance extends View$protected, TableBase$instance {
|
|
7003
|
+
export interface View$instance extends TableBase$instance {
|
|
7322
7004
|
readonly ViewDefinitionSql: string | undefined;
|
|
7323
7005
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7324
7006
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
7007
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7325
7008
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7326
7009
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7327
7010
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7328
7011
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
7012
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7329
7013
|
AnnotationsToDebugString(indent?: int): string;
|
|
7330
7014
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
7331
7015
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -7343,6 +7027,7 @@ export interface View$instance extends View$protected, TableBase$instance {
|
|
|
7343
7027
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
7344
7028
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7345
7029
|
SetAnnotation(name: string, value: unknown): void;
|
|
7030
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7346
7031
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
7347
7032
|
ToString(): string;
|
|
7348
7033
|
}
|
|
@@ -7364,21 +7049,16 @@ export interface __View$views {
|
|
|
7364
7049
|
export type View = View$instance & __View$views;
|
|
7365
7050
|
|
|
7366
7051
|
|
|
7367
|
-
export
|
|
7368
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7369
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7370
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7371
|
-
}
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
export interface ViewColumn$instance extends ViewColumn$protected, ColumnBase_1$instance<ViewColumnMapping> {
|
|
7052
|
+
export interface ViewColumn$instance extends ColumnBase_1$instance<ViewColumnMapping> {
|
|
7375
7053
|
readonly View: View;
|
|
7376
7054
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7377
7055
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
7056
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7378
7057
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7379
7058
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7380
7059
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7381
7060
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
7061
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7382
7062
|
AnnotationsToDebugString(indent?: int): string;
|
|
7383
7063
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
7384
7064
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -7392,6 +7072,7 @@ export interface ViewColumn$instance extends ViewColumn$protected, ColumnBase_1$
|
|
|
7392
7072
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
7393
7073
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7394
7074
|
SetAnnotation(name: string, value: unknown): void;
|
|
7075
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7395
7076
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
7396
7077
|
ToString(): string;
|
|
7397
7078
|
}
|
|
@@ -7413,22 +7094,16 @@ export interface __ViewColumn$views {
|
|
|
7413
7094
|
export type ViewColumn = ViewColumn$instance & __ViewColumn$views;
|
|
7414
7095
|
|
|
7415
7096
|
|
|
7416
|
-
export
|
|
7417
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7418
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7419
|
-
protected GetTypeMapping(): RelationalTypeMapping;
|
|
7420
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7421
|
-
}
|
|
7422
|
-
|
|
7423
|
-
|
|
7424
|
-
export interface ViewColumnMapping$instance extends ViewColumnMapping$protected, ColumnMappingBase$instance {
|
|
7097
|
+
export interface ViewColumnMapping$instance extends ColumnMappingBase$instance {
|
|
7425
7098
|
readonly ViewMapping: IViewMapping;
|
|
7426
7099
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7427
7100
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
7101
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7428
7102
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7429
7103
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7430
7104
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7431
7105
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
7106
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7432
7107
|
AnnotationsToDebugString(indent?: int): string;
|
|
7433
7108
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
7434
7109
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -7438,9 +7113,11 @@ export interface ViewColumnMapping$instance extends ViewColumnMapping$protected,
|
|
|
7438
7113
|
GetAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
7439
7114
|
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
7440
7115
|
GetRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
7116
|
+
GetTypeMapping(): RelationalTypeMapping;
|
|
7441
7117
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
7442
7118
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7443
7119
|
SetAnnotation(name: string, value: unknown): void;
|
|
7120
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7444
7121
|
ToString(): string;
|
|
7445
7122
|
}
|
|
7446
7123
|
|
|
@@ -7461,21 +7138,16 @@ export interface __ViewColumnMapping$views {
|
|
|
7461
7138
|
export type ViewColumnMapping = ViewColumnMapping$instance & __ViewColumnMapping$views;
|
|
7462
7139
|
|
|
7463
7140
|
|
|
7464
|
-
export
|
|
7465
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7466
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
7467
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7468
|
-
}
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
export interface ViewMapping$instance extends ViewMapping$protected, TableMappingBase_1$instance<ViewColumnMapping> {
|
|
7141
|
+
export interface ViewMapping$instance extends TableMappingBase_1$instance<ViewColumnMapping> {
|
|
7472
7142
|
readonly View: IView;
|
|
7473
7143
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
7474
7144
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
7145
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7475
7146
|
AddAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
7476
7147
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
7477
7148
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
7478
7149
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
7150
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
7479
7151
|
AnnotationsToDebugString(indent?: int): string;
|
|
7480
7152
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
7481
7153
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -7488,6 +7160,7 @@ export interface ViewMapping$instance extends ViewMapping$protected, TableMappin
|
|
|
7488
7160
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
7489
7161
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
7490
7162
|
SetAnnotation(name: string, value: unknown): void;
|
|
7163
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
7491
7164
|
SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
|
|
7492
7165
|
ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
7493
7166
|
ToString(): string;
|