@tsonic/efcore 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/bindings.json +8 -8
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +14 -14
- package/Microsoft.EntityFrameworkCore/internal/metadata.json +4 -4
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +12 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/metadata.json +2 -2
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +80 -80
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +21 -21
- package/Microsoft.EntityFrameworkCore.Internal/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +145 -145
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +128 -128
- package/Microsoft.EntityFrameworkCore.Metadata/internal/metadata.json +72 -72
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +24 -24
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +5 -5
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +30 -30
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +116 -116
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/metadata.json +15 -15
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Migrations/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +71 -71
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +75 -75
- package/Microsoft.EntityFrameworkCore.Query/internal/metadata.json +33 -33
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +25 -25
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/metadata.json +6 -6
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +51 -51
- package/Microsoft.EntityFrameworkCore.Storage/internal/metadata.json +23 -23
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/metadata.json +2 -2
- package/__internal/extensions/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -45,7 +45,7 @@ export enum ConfigurationSource {
|
|
|
45
45
|
export enum PropertySaveBehavior {
|
|
46
46
|
save = 0,
|
|
47
47
|
ignore = 1,
|
|
48
|
-
|
|
48
|
+
throw = 2
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
|
|
@@ -53,7 +53,7 @@ export enum StoreObjectType {
|
|
|
53
53
|
table = 0,
|
|
54
54
|
view = 1,
|
|
55
55
|
sqlQuery = 2,
|
|
56
|
-
|
|
56
|
+
function = 3,
|
|
57
57
|
insertStoredProcedure = 4,
|
|
58
58
|
deleteStoredProcedure = 5,
|
|
59
59
|
updateStoredProcedure = 6
|
|
@@ -61,7 +61,7 @@ export enum StoreObjectType {
|
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
export enum ValueGenerated {
|
|
64
|
-
|
|
64
|
+
never = 0,
|
|
65
65
|
onAdd = 1,
|
|
66
66
|
onUpdate = 2,
|
|
67
67
|
onUpdateSometimes = 4,
|
|
@@ -111,8 +111,8 @@ export type IClrCollectionAccessor = IClrCollectionAccessor$instance;
|
|
|
111
111
|
|
|
112
112
|
export interface IClrIndexedCollectionAccessor$instance {
|
|
113
113
|
create(capacity: int): unknown;
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
get(entity: unknown, index: int): unknown | undefined;
|
|
115
|
+
set(entity: unknown, index: int, value: unknown, forMaterialization: boolean): void;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
|
|
@@ -321,7 +321,7 @@ export interface IComplexType$instance extends IReadOnlyComplexType, IReadOnlyTy
|
|
|
321
321
|
getRootType(): IReadOnlyTypeBase;
|
|
322
322
|
isAbstract(): boolean;
|
|
323
323
|
isAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
324
|
-
isContainedBy(
|
|
324
|
+
isContainedBy(type: Type): boolean;
|
|
325
325
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
326
326
|
findComplexProperty2(name: string): IComplexProperty | undefined;
|
|
327
327
|
findComplexProperty3(memberInfo: MemberInfo): IComplexProperty | undefined;
|
|
@@ -343,8 +343,8 @@ export interface IConstructorBindingFactory$instance {
|
|
|
343
343
|
getBindings(entityType: IMutableEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
344
344
|
getBindings(complexType: IReadOnlyComplexType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
345
345
|
getBindings(entityType: IReadOnlyEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
346
|
-
tryBindConstructor(entityType: IConventionEntityType,
|
|
347
|
-
tryBindConstructor(entityType: IMutableEntityType,
|
|
346
|
+
tryBindConstructor(entityType: IConventionEntityType, constructor: ConstructorInfo, binding: InstantiationBinding, unboundParameters: IEnumerable<ParameterInfo>): boolean;
|
|
347
|
+
tryBindConstructor(entityType: IMutableEntityType, constructor: ConstructorInfo, binding: InstantiationBinding, unboundParameters: IEnumerable<ParameterInfo>): boolean;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
|
|
@@ -502,7 +502,7 @@ export interface IConventionComplexType$instance extends IReadOnlyComplexType, I
|
|
|
502
502
|
getRootType(): IReadOnlyTypeBase;
|
|
503
503
|
isAbstract(): boolean;
|
|
504
504
|
isAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
505
|
-
isContainedBy(
|
|
505
|
+
isContainedBy(type: Type): boolean;
|
|
506
506
|
isIgnored(memberName: string): boolean;
|
|
507
507
|
removeComplexProperty(property: IConventionComplexProperty): IConventionComplexProperty | undefined;
|
|
508
508
|
removeIgnored(memberName: string): string | undefined;
|
|
@@ -567,7 +567,7 @@ export interface IConventionDbFunction$instance extends IReadOnlyDbFunction, IRe
|
|
|
567
567
|
export type IConventionDbFunction = IConventionDbFunction$instance;
|
|
568
568
|
|
|
569
569
|
export interface IConventionDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IConventionAnnotatable {
|
|
570
|
-
readonly
|
|
570
|
+
readonly function: IConventionDbFunction;
|
|
571
571
|
readonly builder: IConventionDbFunctionParameterBuilder;
|
|
572
572
|
readonly name: string;
|
|
573
573
|
readonly clrType: Type;
|
|
@@ -909,10 +909,10 @@ export interface IConventionModel$instance extends IReadOnlyModel, IReadOnlyAnno
|
|
|
909
909
|
addEntityType(name: string, fromDataAnnotation?: boolean): IConventionEntityType | undefined;
|
|
910
910
|
addEntityType(name: string, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityType | undefined;
|
|
911
911
|
addEntityType(name: string, clrType: Type, fromDataAnnotation?: boolean): IConventionEntityType | undefined;
|
|
912
|
-
addEntityType(
|
|
913
|
-
addEntityType(
|
|
914
|
-
addIgnored(
|
|
915
|
-
addShared(
|
|
912
|
+
addEntityType(type: Type, fromDataAnnotation?: boolean): IConventionEntityType | undefined;
|
|
913
|
+
addEntityType(type: Type, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityType | undefined;
|
|
914
|
+
addIgnored(type: Type, fromDataAnnotation?: boolean): string | undefined;
|
|
915
|
+
addShared(type: Type, fromDataAnnotation?: boolean): void;
|
|
916
916
|
annotationsToDebugString(indent?: int): string;
|
|
917
917
|
delayConventions(): IConventionBatch;
|
|
918
918
|
finalizeModel(): IModel;
|
|
@@ -920,18 +920,18 @@ export interface IConventionModel$instance extends IReadOnlyModel, IReadOnlyAnno
|
|
|
920
920
|
findAnnotation(name: string): IConventionAnnotation | undefined;
|
|
921
921
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IConventionEntityType): IConventionEntityType | undefined;
|
|
922
922
|
findEntityType(name: string): IConventionEntityType | undefined;
|
|
923
|
-
findEntityType(
|
|
924
|
-
findEntityType(
|
|
923
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IConventionEntityType): IConventionEntityType | undefined;
|
|
924
|
+
findEntityType(type: Type): IConventionEntityType | undefined;
|
|
925
925
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
926
926
|
findEntityType(name: string): IReadOnlyEntityType | undefined;
|
|
927
|
-
findEntityType(
|
|
928
|
-
findEntityType(
|
|
929
|
-
findEntityTypes(
|
|
930
|
-
findEntityTypes(
|
|
927
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
928
|
+
findEntityType(type: Type): IReadOnlyEntityType | undefined;
|
|
929
|
+
findEntityTypes(type: Type): IEnumerable<IConventionEntityType>;
|
|
930
|
+
findEntityTypes(type: Type): IEnumerable<IReadOnlyEntityType>;
|
|
931
931
|
findIgnoredConfigurationSource(typeName: string): Nullable<ConfigurationSource>;
|
|
932
|
-
findIsSharedConfigurationSource(
|
|
933
|
-
findLeastDerivedEntityTypes(
|
|
934
|
-
findLeastDerivedEntityTypes(
|
|
932
|
+
findIsSharedConfigurationSource(type: Type): Nullable<ConfigurationSource>;
|
|
933
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IConventionEntityType>;
|
|
934
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IReadOnlyEntityType>;
|
|
935
935
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
936
936
|
getEmbeddedDiscriminatorName(): string;
|
|
937
937
|
getEntityTypes(): IEnumerable<IConventionEntityType>;
|
|
@@ -939,18 +939,18 @@ export interface IConventionModel$instance extends IReadOnlyModel, IReadOnlyAnno
|
|
|
939
939
|
getPropertyAccessMode(): PropertyAccessMode;
|
|
940
940
|
getPropertyAccessModeConfigurationSource(): Nullable<ConfigurationSource>;
|
|
941
941
|
isIgnored(typeName: string): boolean;
|
|
942
|
-
isOwned(
|
|
942
|
+
isOwned(type: Type): boolean;
|
|
943
943
|
removeEntityType(entityType: IConventionEntityType): IConventionEntityType | undefined;
|
|
944
944
|
removeIgnored(typeName: string): string | undefined;
|
|
945
|
-
removeOwned(
|
|
946
|
-
removeShared(
|
|
945
|
+
removeOwned(type: Type): string | undefined;
|
|
946
|
+
removeShared(type: Type): Type | undefined;
|
|
947
947
|
setEmbeddedDiscriminatorName(name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
948
948
|
setPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable<PropertyAccessMode>;
|
|
949
949
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
950
950
|
findAnnotation2(name: string): IConventionAnnotation | undefined;
|
|
951
951
|
getAnnotations(): IEnumerable<IAnnotation>;
|
|
952
952
|
getAnnotations(): IEnumerable<IConventionAnnotation>;
|
|
953
|
-
isShared(
|
|
953
|
+
isShared(type: Type): boolean;
|
|
954
954
|
}
|
|
955
955
|
|
|
956
956
|
|
|
@@ -1175,7 +1175,7 @@ export interface IConventionSequence$instance extends IReadOnlySequence, IReadOn
|
|
|
1175
1175
|
readonly incrementBy: int;
|
|
1176
1176
|
readonly minValue: Nullable<System_Internal.Int64>;
|
|
1177
1177
|
readonly maxValue: Nullable<System_Internal.Int64>;
|
|
1178
|
-
readonly
|
|
1178
|
+
readonly type: Type;
|
|
1179
1179
|
readonly isCyclic: boolean;
|
|
1180
1180
|
readonly item: unknown | undefined;
|
|
1181
1181
|
readonly isInModel: boolean;
|
|
@@ -1189,7 +1189,7 @@ export interface IConventionSequence$instance extends IReadOnlySequence, IReadOn
|
|
|
1189
1189
|
getConfigurationSource(): ConfigurationSource;
|
|
1190
1190
|
getStartValueConfigurationSource(): Nullable<ConfigurationSource>;
|
|
1191
1191
|
setStartValue(startValue: Nullable<System_Internal.Int64>, fromDataAnnotation?: boolean): Nullable<System_Internal.Int64>;
|
|
1192
|
-
setType(
|
|
1192
|
+
setType(type: Type, fromDataAnnotation?: boolean): Type | undefined;
|
|
1193
1193
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
1194
1194
|
findAnnotation2(name: string): IConventionAnnotation | undefined;
|
|
1195
1195
|
}
|
|
@@ -1500,7 +1500,7 @@ export type IDbFunction = IDbFunction$instance;
|
|
|
1500
1500
|
|
|
1501
1501
|
export interface IDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
1502
1502
|
readonly storeType: string;
|
|
1503
|
-
readonly
|
|
1503
|
+
readonly function: IDbFunction;
|
|
1504
1504
|
readonly storeFunctionParameter: IStoreFunctionParameter;
|
|
1505
1505
|
readonly name: string;
|
|
1506
1506
|
readonly clrType: Type;
|
|
@@ -1740,7 +1740,7 @@ export interface IForeignKeyConstraint$instance extends IAnnotatable, IReadOnlyA
|
|
|
1740
1740
|
export type IForeignKeyConstraint = IForeignKeyConstraint$instance;
|
|
1741
1741
|
|
|
1742
1742
|
export interface IFunctionColumn$instance extends IColumnBase, IAnnotatable, IReadOnlyAnnotatable {
|
|
1743
|
-
readonly
|
|
1743
|
+
readonly function: IStoreFunction;
|
|
1744
1744
|
readonly propertyMappings: IReadOnlyList<IFunctionColumnMapping>;
|
|
1745
1745
|
readonly name: string;
|
|
1746
1746
|
readonly storeType: string;
|
|
@@ -1860,7 +1860,7 @@ export interface IKey$instance extends IReadOnlyKey, IReadOnlyAnnotatable, IAnno
|
|
|
1860
1860
|
export type IKey = IKey$instance;
|
|
1861
1861
|
|
|
1862
1862
|
export interface IMetadataReference_1$instance<T> extends IDisposable {
|
|
1863
|
-
readonly
|
|
1863
|
+
readonly object: T;
|
|
1864
1864
|
}
|
|
1865
1865
|
|
|
1866
1866
|
|
|
@@ -1876,17 +1876,17 @@ export interface IModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, I
|
|
|
1876
1876
|
findAnnotation(name: string): IAnnotation | undefined;
|
|
1877
1877
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IEntityType): IEntityType | undefined;
|
|
1878
1878
|
findEntityType(name: string): IEntityType | undefined;
|
|
1879
|
-
findEntityType(
|
|
1879
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IEntityType): IEntityType | undefined;
|
|
1880
1880
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
1881
1881
|
findEntityType(name: string): IReadOnlyEntityType | undefined;
|
|
1882
|
-
findEntityType(
|
|
1883
|
-
findEntityType(
|
|
1884
|
-
findEntityTypes(
|
|
1885
|
-
findEntityTypes(
|
|
1886
|
-
findLeastDerivedEntityTypes(
|
|
1887
|
-
findLeastDerivedEntityTypes(
|
|
1882
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
1883
|
+
findEntityType(type: Type): IReadOnlyEntityType | undefined;
|
|
1884
|
+
findEntityTypes(type: Type): IEnumerable<IEntityType>;
|
|
1885
|
+
findEntityTypes(type: Type): IEnumerable<IReadOnlyEntityType>;
|
|
1886
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IEntityType>;
|
|
1887
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IReadOnlyEntityType>;
|
|
1888
1888
|
findRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
1889
|
-
findRuntimeEntityType(
|
|
1889
|
+
findRuntimeEntityType(type: Type): IEntityType | undefined;
|
|
1890
1890
|
findTypeMappingConfiguration(scalarType: Type): ITypeMappingConfiguration | undefined;
|
|
1891
1891
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
1892
1892
|
getEmbeddedDiscriminatorName(): string;
|
|
@@ -1896,7 +1896,7 @@ export interface IModel$instance extends IReadOnlyModel, IReadOnlyAnnotatable, I
|
|
|
1896
1896
|
getOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1897
1897
|
getPropertyAccessMode(): PropertyAccessMode;
|
|
1898
1898
|
isIndexerMethod(methodInfo: MethodInfo): boolean;
|
|
1899
|
-
isShared(
|
|
1899
|
+
isShared(type: Type): boolean;
|
|
1900
1900
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
1901
1901
|
findRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
1902
1902
|
getAnnotations(): IEnumerable<IAnnotation>;
|
|
@@ -2025,7 +2025,7 @@ export interface IMutableComplexType$instance extends IReadOnlyComplexType, IRea
|
|
|
2025
2025
|
getRootType(): IReadOnlyTypeBase;
|
|
2026
2026
|
isAbstract(): boolean;
|
|
2027
2027
|
isAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
2028
|
-
isContainedBy(
|
|
2028
|
+
isContainedBy(type: Type): boolean;
|
|
2029
2029
|
isIgnored(memberName: string): boolean;
|
|
2030
2030
|
removeComplexProperty(property: IReadOnlyComplexProperty): IMutableComplexProperty | undefined;
|
|
2031
2031
|
removeDiscriminatorValue(): void;
|
|
@@ -2078,7 +2078,7 @@ export interface IMutableDbFunction$instance extends IReadOnlyDbFunction, IReadO
|
|
|
2078
2078
|
export type IMutableDbFunction = IMutableDbFunction$instance;
|
|
2079
2079
|
|
|
2080
2080
|
export interface IMutableDbFunctionParameter$instance extends IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IMutableAnnotatable {
|
|
2081
|
-
readonly
|
|
2081
|
+
readonly function: IMutableDbFunction;
|
|
2082
2082
|
storeType: string;
|
|
2083
2083
|
typeMapping: RelationalTypeMapping;
|
|
2084
2084
|
readonly name: string;
|
|
@@ -2365,40 +2365,40 @@ export interface IMutableModel$instance extends IReadOnlyModel, IReadOnlyAnnotat
|
|
|
2365
2365
|
addAnnotation(name: string, value: unknown): IAnnotation;
|
|
2366
2366
|
addAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
2367
2367
|
addEntityType(name: string, definingNavigationName: string, definingEntityType: IMutableEntityType): IMutableEntityType;
|
|
2368
|
-
addEntityType(name: string,
|
|
2368
|
+
addEntityType(name: string, type: Type): IMutableEntityType;
|
|
2369
2369
|
addEntityType(name: string): IMutableEntityType;
|
|
2370
|
-
addEntityType(
|
|
2371
|
-
addEntityType(
|
|
2370
|
+
addEntityType(type: Type, definingNavigationName: string, definingEntityType: IMutableEntityType): IMutableEntityType;
|
|
2371
|
+
addEntityType(type: Type): IMutableEntityType;
|
|
2372
2372
|
addIgnored(typeName: string): string;
|
|
2373
|
-
addShared(
|
|
2373
|
+
addShared(type: Type): void;
|
|
2374
2374
|
annotationsToDebugString(indent?: int): string;
|
|
2375
2375
|
delayConventions(): IConventionBatch;
|
|
2376
2376
|
finalizeModel(): IModel;
|
|
2377
2377
|
findAnnotation(name: string): IAnnotation | undefined;
|
|
2378
2378
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
2379
2379
|
findEntityType(name: string): IReadOnlyEntityType | undefined;
|
|
2380
|
-
findEntityType(
|
|
2381
|
-
findEntityType(
|
|
2382
|
-
findEntityTypes(
|
|
2383
|
-
findEntityTypes(
|
|
2384
|
-
findLeastDerivedEntityTypes(
|
|
2385
|
-
findLeastDerivedEntityTypes(
|
|
2380
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
2381
|
+
findEntityType(type: Type): IReadOnlyEntityType | undefined;
|
|
2382
|
+
findEntityTypes(type: Type): IEnumerable<IMutableEntityType>;
|
|
2383
|
+
findEntityTypes(type: Type): IEnumerable<IReadOnlyEntityType>;
|
|
2384
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IMutableEntityType>;
|
|
2385
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IReadOnlyEntityType>;
|
|
2386
2386
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
2387
2387
|
getEmbeddedDiscriminatorName(): string;
|
|
2388
2388
|
getEntityTypes(): IEnumerable<IMutableEntityType>;
|
|
2389
2389
|
getEntityTypes(): IEnumerable<IReadOnlyEntityType>;
|
|
2390
2390
|
getPropertyAccessMode(): PropertyAccessMode;
|
|
2391
2391
|
isIgnored(typeName: string): boolean;
|
|
2392
|
-
isOwned(
|
|
2392
|
+
isOwned(type: Type): boolean;
|
|
2393
2393
|
removeEntityType(entityType: IMutableEntityType): IMutableEntityType | undefined;
|
|
2394
|
-
removeOwned(
|
|
2395
|
-
removeShared(
|
|
2394
|
+
removeOwned(type: Type): string | undefined;
|
|
2395
|
+
removeShared(type: Type): Type | undefined;
|
|
2396
2396
|
setAnnotation(name: string, value: unknown): void;
|
|
2397
2397
|
setEmbeddedDiscriminatorName(name: string): void;
|
|
2398
2398
|
setPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>): void;
|
|
2399
2399
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
2400
2400
|
getAnnotations(): IEnumerable<IAnnotation>;
|
|
2401
|
-
isShared(
|
|
2401
|
+
isShared(type: Type): boolean;
|
|
2402
2402
|
removeAnnotation(name: string): IAnnotation | undefined;
|
|
2403
2403
|
}
|
|
2404
2404
|
|
|
@@ -2585,7 +2585,7 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
|
|
|
2585
2585
|
incrementBy: int;
|
|
2586
2586
|
minValue: Nullable<System_Internal.Int64>;
|
|
2587
2587
|
maxValue: Nullable<System_Internal.Int64>;
|
|
2588
|
-
|
|
2588
|
+
type: Type;
|
|
2589
2589
|
isCyclic: boolean;
|
|
2590
2590
|
readonly name: string;
|
|
2591
2591
|
readonly modelSchema: string | undefined;
|
|
@@ -3115,7 +3115,7 @@ export interface IReadOnlyComplexType$instance extends IReadOnlyTypeBase, IReadO
|
|
|
3115
3115
|
getRootType(): IReadOnlyTypeBase;
|
|
3116
3116
|
isAbstract(): boolean;
|
|
3117
3117
|
isAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
3118
|
-
isContainedBy(
|
|
3118
|
+
isContainedBy(type: Type): boolean;
|
|
3119
3119
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
3120
3120
|
getAnnotations(): IEnumerable<IAnnotation>;
|
|
3121
3121
|
}
|
|
@@ -3151,7 +3151,7 @@ export interface IReadOnlyDbFunction$instance extends Microsoft_EntityFrameworkC
|
|
|
3151
3151
|
export type IReadOnlyDbFunction = IReadOnlyDbFunction$instance;
|
|
3152
3152
|
|
|
3153
3153
|
export interface IReadOnlyDbFunctionParameter$instance extends IReadOnlyAnnotatable {
|
|
3154
|
-
readonly
|
|
3154
|
+
readonly function: IReadOnlyDbFunction;
|
|
3155
3155
|
readonly name: string;
|
|
3156
3156
|
readonly clrType: Type;
|
|
3157
3157
|
readonly storeType: string;
|
|
@@ -3342,15 +3342,15 @@ export interface IReadOnlyModel$instance extends IReadOnlyAnnotatable {
|
|
|
3342
3342
|
findAnnotation(name: string): IAnnotation | undefined;
|
|
3343
3343
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
3344
3344
|
findEntityType(name: string): IReadOnlyEntityType | undefined;
|
|
3345
|
-
findEntityType(
|
|
3346
|
-
findEntityType(
|
|
3347
|
-
findEntityTypes(
|
|
3348
|
-
findLeastDerivedEntityTypes(
|
|
3345
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
3346
|
+
findEntityType(type: Type): IReadOnlyEntityType | undefined;
|
|
3347
|
+
findEntityTypes(type: Type): IEnumerable<IReadOnlyEntityType>;
|
|
3348
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable<IReadOnlyEntityType>;
|
|
3349
3349
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
3350
3350
|
getEmbeddedDiscriminatorName(): string;
|
|
3351
3351
|
getEntityTypes(): IEnumerable<IReadOnlyEntityType>;
|
|
3352
3352
|
getPropertyAccessMode(): PropertyAccessMode;
|
|
3353
|
-
isShared(
|
|
3353
|
+
isShared(type: Type): boolean;
|
|
3354
3354
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
3355
3355
|
getAnnotations(): IEnumerable<IAnnotation>;
|
|
3356
3356
|
}
|
|
@@ -3501,7 +3501,7 @@ export interface IReadOnlySequence$instance extends IReadOnlyAnnotatable {
|
|
|
3501
3501
|
readonly incrementBy: int;
|
|
3502
3502
|
readonly minValue: Nullable<System_Internal.Int64>;
|
|
3503
3503
|
readonly maxValue: Nullable<System_Internal.Int64>;
|
|
3504
|
-
readonly
|
|
3504
|
+
readonly type: Type;
|
|
3505
3505
|
readonly isCyclic: boolean;
|
|
3506
3506
|
readonly item: unknown | undefined;
|
|
3507
3507
|
annotationsToDebugString(indent?: int): string;
|
|
@@ -3690,25 +3690,25 @@ export interface IReadOnlyTypeBase$instance extends Microsoft_EntityFrameworkCor
|
|
|
3690
3690
|
export type IReadOnlyTypeBase = IReadOnlyTypeBase$instance;
|
|
3691
3691
|
|
|
3692
3692
|
export interface IRelationalAnnotationProvider$instance {
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3693
|
+
for(checkConstraint: ICheckConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3694
|
+
for(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3695
|
+
for(foreignKey: IForeignKeyConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3696
|
+
for(column: IFunctionColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3697
|
+
for(model: IRelationalModel, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3698
|
+
for(sequence: ISequence, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3699
|
+
for(sqlQuery: ISqlQuery, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3700
|
+
for(column: ISqlQueryColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3701
|
+
for(function_: IStoreFunction, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3702
|
+
for(parameter: IStoreFunctionParameter, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3703
|
+
for(storedProcedure: IStoreStoredProcedure, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3704
|
+
for(parameter: IStoreStoredProcedureParameter, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3705
|
+
for(column: IStoreStoredProcedureResultColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3706
|
+
for(table: ITable, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3707
|
+
for(index: ITableIndex, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3708
|
+
for(trigger: ITrigger, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3709
|
+
for(constraint: IUniqueConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3710
|
+
for(view: IView, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3711
|
+
for(column: IViewColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
3712
3712
|
}
|
|
3713
3713
|
|
|
3714
3714
|
|
|
@@ -3774,7 +3774,7 @@ export interface ISequence$instance extends IReadOnlySequence, IReadOnlyAnnotata
|
|
|
3774
3774
|
readonly incrementBy: int;
|
|
3775
3775
|
readonly minValue: Nullable<System_Internal.Int64>;
|
|
3776
3776
|
readonly maxValue: Nullable<System_Internal.Int64>;
|
|
3777
|
-
readonly
|
|
3777
|
+
readonly type: Type;
|
|
3778
3778
|
readonly isCyclic: boolean;
|
|
3779
3779
|
readonly item: unknown | undefined;
|
|
3780
3780
|
addRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
@@ -4154,11 +4154,11 @@ export interface IStoreFunction$instance extends ITableBase, IAnnotatable, IRead
|
|
|
4154
4154
|
export type IStoreFunction = IStoreFunction$instance;
|
|
4155
4155
|
|
|
4156
4156
|
export interface IStoreFunctionParameter$instance extends IAnnotatable, IReadOnlyAnnotatable {
|
|
4157
|
-
readonly
|
|
4157
|
+
readonly function: IStoreFunction;
|
|
4158
4158
|
readonly dbFunctionParameters: IEnumerable<IDbFunctionParameter>;
|
|
4159
4159
|
readonly name: string;
|
|
4160
4160
|
readonly storeType: string;
|
|
4161
|
-
readonly
|
|
4161
|
+
readonly type: string;
|
|
4162
4162
|
readonly item: unknown | undefined;
|
|
4163
4163
|
addRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4164
4164
|
annotationsToDebugString(indent?: int): string;
|
|
@@ -4694,7 +4694,7 @@ export interface StoreObjectIdentifier$instance {
|
|
|
4694
4694
|
|
|
4695
4695
|
export const StoreObjectIdentifier: {
|
|
4696
4696
|
new(): StoreObjectIdentifier;
|
|
4697
|
-
create(typeBase: IReadOnlyTypeBase,
|
|
4697
|
+
create(typeBase: IReadOnlyTypeBase, type: StoreObjectType): Nullable<StoreObjectIdentifier>;
|
|
4698
4698
|
dbFunction(modelName: string): StoreObjectIdentifier;
|
|
4699
4699
|
deleteStoredProcedure(name: string, schema?: string): StoreObjectIdentifier;
|
|
4700
4700
|
insertStoredProcedure(name: string, schema?: string): StoreObjectIdentifier;
|
|
@@ -4747,15 +4747,15 @@ export const AdHocMapperDependencies: {
|
|
|
4747
4747
|
export type AdHocMapperDependencies = AdHocMapperDependencies$instance;
|
|
4748
4748
|
|
|
4749
4749
|
export interface ConstructorBinding$instance extends InstantiationBinding {
|
|
4750
|
-
readonly
|
|
4750
|
+
readonly constructor: ConstructorInfo;
|
|
4751
4751
|
readonly runtimeType: Type;
|
|
4752
4752
|
createConstructorExpression(bindingInfo: ParameterBindingInfo): Expression;
|
|
4753
|
-
|
|
4753
|
+
with(parameterBindings: IReadOnlyList<ParameterBinding>): InstantiationBinding;
|
|
4754
4754
|
}
|
|
4755
4755
|
|
|
4756
4756
|
|
|
4757
4757
|
export const ConstructorBinding: {
|
|
4758
|
-
new(
|
|
4758
|
+
new(constructor: ConstructorInfo, parameterBindings: IReadOnlyList<ParameterBinding>): ConstructorBinding;
|
|
4759
4759
|
};
|
|
4760
4760
|
|
|
4761
4761
|
|
|
@@ -4764,7 +4764,7 @@ export type ConstructorBinding = ConstructorBinding$instance;
|
|
|
4764
4764
|
export interface ContextParameterBinding$instance extends ServiceParameterBinding {
|
|
4765
4765
|
bindToParameter(materializationExpression: Expression, bindingInfoExpression: Expression): Expression;
|
|
4766
4766
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4767
|
-
|
|
4767
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4768
4768
|
}
|
|
4769
4769
|
|
|
4770
4770
|
|
|
@@ -4778,7 +4778,7 @@ export type ContextParameterBinding = ContextParameterBinding$instance;
|
|
|
4778
4778
|
export interface DefaultValueBinding$instance extends InstantiationBinding {
|
|
4779
4779
|
readonly runtimeType: Type;
|
|
4780
4780
|
createConstructorExpression(bindingInfo: ParameterBindingInfo): Expression;
|
|
4781
|
-
|
|
4781
|
+
with(parameterBindings: IReadOnlyList<ParameterBinding>): InstantiationBinding;
|
|
4782
4782
|
}
|
|
4783
4783
|
|
|
4784
4784
|
|
|
@@ -4794,7 +4794,7 @@ export interface DependencyInjectionMethodParameterBinding$instance extends Depe
|
|
|
4794
4794
|
readonly serviceDelegate: Func<MaterializationContext, IEntityType, unknown, unknown | undefined>;
|
|
4795
4795
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4796
4796
|
bindToParameter(materializationExpression: Expression, bindingInfoExpression: Expression): Expression;
|
|
4797
|
-
|
|
4797
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4798
4798
|
}
|
|
4799
4799
|
|
|
4800
4800
|
|
|
@@ -4809,7 +4809,7 @@ export interface DependencyInjectionParameterBinding$instance extends ServicePar
|
|
|
4809
4809
|
readonly serviceDelegate: Func<MaterializationContext, IEntityType, unknown, unknown | undefined>;
|
|
4810
4810
|
bindToParameter(materializationExpression: Expression, bindingInfoExpression: Expression): Expression;
|
|
4811
4811
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4812
|
-
|
|
4812
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4813
4813
|
}
|
|
4814
4814
|
|
|
4815
4815
|
|
|
@@ -4838,7 +4838,7 @@ export type EntityTypeFullNameComparer = EntityTypeFullNameComparer$instance;
|
|
|
4838
4838
|
export interface EntityTypeParameterBinding$instance extends ServiceParameterBinding {
|
|
4839
4839
|
bindToParameter(materializationExpression: Expression, bindingInfoExpression: Expression): Expression;
|
|
4840
4840
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4841
|
-
|
|
4841
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4842
4842
|
}
|
|
4843
4843
|
|
|
4844
4844
|
|
|
@@ -4852,7 +4852,7 @@ export type EntityTypeParameterBinding = EntityTypeParameterBinding$instance;
|
|
|
4852
4852
|
export interface FactoryMethodBinding$instance extends InstantiationBinding {
|
|
4853
4853
|
readonly runtimeType: Type;
|
|
4854
4854
|
createConstructorExpression(bindingInfo: ParameterBindingInfo): Expression;
|
|
4855
|
-
|
|
4855
|
+
with(parameterBindings: IReadOnlyList<ParameterBinding>): InstantiationBinding;
|
|
4856
4856
|
}
|
|
4857
4857
|
|
|
4858
4858
|
|
|
@@ -4898,7 +4898,7 @@ export interface InstantiationBinding$instance {
|
|
|
4898
4898
|
readonly parameterBindings: IReadOnlyList<ParameterBinding>;
|
|
4899
4899
|
readonly runtimeType: Type;
|
|
4900
4900
|
createConstructorExpression(bindingInfo: ParameterBindingInfo): Expression;
|
|
4901
|
-
|
|
4901
|
+
with(parameterBindings: IReadOnlyList<ParameterBinding>): InstantiationBinding;
|
|
4902
4902
|
}
|
|
4903
4903
|
|
|
4904
4904
|
|
|
@@ -4961,7 +4961,7 @@ export type LazyLoaderParameterBindingFactoryDependencies = LazyLoaderParameterB
|
|
|
4961
4961
|
|
|
4962
4962
|
export interface ObjectArrayParameterBinding$instance extends ParameterBinding {
|
|
4963
4963
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4964
|
-
|
|
4964
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4965
4965
|
}
|
|
4966
4966
|
|
|
4967
4967
|
|
|
@@ -4976,7 +4976,7 @@ export interface ParameterBinding$instance {
|
|
|
4976
4976
|
readonly consumedProperties: IReadOnlyList<IPropertyBase>;
|
|
4977
4977
|
readonly parameterType: Type;
|
|
4978
4978
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4979
|
-
|
|
4979
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4980
4980
|
}
|
|
4981
4981
|
|
|
4982
4982
|
|
|
@@ -4988,7 +4988,7 @@ export type ParameterBinding = ParameterBinding$instance;
|
|
|
4988
4988
|
|
|
4989
4989
|
export interface PropertyParameterBinding$instance extends ParameterBinding {
|
|
4990
4990
|
bindToParameter(bindingInfo: ParameterBindingInfo): Expression;
|
|
4991
|
-
|
|
4991
|
+
with(consumedProperties: IPropertyBase[]): ParameterBinding;
|
|
4992
4992
|
}
|
|
4993
4993
|
|
|
4994
4994
|
|
|
@@ -5034,25 +5034,25 @@ export const RelationalAdHocMapperDependencies: {
|
|
|
5034
5034
|
export type RelationalAdHocMapperDependencies = RelationalAdHocMapperDependencies$instance;
|
|
5035
5035
|
|
|
5036
5036
|
export interface RelationalAnnotationProvider$instance {
|
|
5037
|
-
|
|
5038
|
-
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5037
|
+
for(model: IRelationalModel, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5038
|
+
for(table: ITable, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5039
|
+
for(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5040
|
+
for(view: IView, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5041
|
+
for(column: IViewColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5042
|
+
for(sqlQuery: ISqlQuery, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5043
|
+
for(column: ISqlQueryColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5044
|
+
for(function_: IStoreFunction, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5045
|
+
for(parameter: IStoreFunctionParameter, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5046
|
+
for(column: IFunctionColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5047
|
+
for(storedProcedure: IStoreStoredProcedure, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5048
|
+
for(parameter: IStoreStoredProcedureParameter, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5049
|
+
for(column: IStoreStoredProcedureResultColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5050
|
+
for(foreignKey: IForeignKeyConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5051
|
+
for(index: ITableIndex, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5052
|
+
for(constraint: IUniqueConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5053
|
+
for(sequence: ISequence, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5054
|
+
for(checkConstraint: ICheckConstraint, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5055
|
+
for(trigger: ITrigger, designTime: boolean): IEnumerable<IAnnotation>;
|
|
5056
5056
|
}
|
|
5057
5057
|
|
|
5058
5058
|
|
|
@@ -5192,7 +5192,7 @@ export interface RuntimeComplexType$instance extends RuntimeTypeBase$instance {
|
|
|
5192
5192
|
|
|
5193
5193
|
|
|
5194
5194
|
export const RuntimeComplexType: {
|
|
5195
|
-
new(name: string,
|
|
5195
|
+
new(name: string, type: Type, complexProperty: RuntimeComplexProperty, changeTrackingStrategy: ChangeTrackingStrategy, indexerPropertyInfo: PropertyInfo, propertyBag: boolean, discriminatorProperty: string, discriminatorValue: unknown, propertyCount: int, complexPropertyCount: int): RuntimeComplexType;
|
|
5196
5196
|
};
|
|
5197
5197
|
|
|
5198
5198
|
|
|
@@ -5248,7 +5248,7 @@ export type RuntimeDbFunction = RuntimeDbFunction$instance & __RuntimeDbFunction
|
|
|
5248
5248
|
|
|
5249
5249
|
export interface RuntimeDbFunctionParameter$instance extends AnnotatableBase {
|
|
5250
5250
|
readonly debugView: DebugView;
|
|
5251
|
-
readonly
|
|
5251
|
+
readonly function: RuntimeDbFunction;
|
|
5252
5252
|
readonly name: string;
|
|
5253
5253
|
typeMapping: RelationalTypeMapping;
|
|
5254
5254
|
addRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
@@ -5415,7 +5415,7 @@ export interface RuntimeEntityType$instance extends RuntimeTypeBase$instance {
|
|
|
5415
5415
|
|
|
5416
5416
|
|
|
5417
5417
|
export const RuntimeEntityType: {
|
|
5418
|
-
new(name: string,
|
|
5418
|
+
new(name: string, type: Type, sharedClrType: boolean, model: RuntimeModel, baseType: RuntimeEntityType, changeTrackingStrategy: ChangeTrackingStrategy, indexerPropertyInfo: PropertyInfo, propertyBag: boolean, discriminatorProperty: string, discriminatorValue: unknown, derivedTypesCount: int, propertyCount: int, complexPropertyCount: int, foreignKeyCount: int, navigationCount: int, skipNavigationCount: int, servicePropertyCount: int, unnamedIndexCount: int, namedIndexCount: int, keyCount: int, triggerCount: int): RuntimeEntityType;
|
|
5419
5419
|
};
|
|
5420
5420
|
|
|
5421
5421
|
|
|
@@ -5585,7 +5585,7 @@ export type RuntimeKey = RuntimeKey$instance & __RuntimeKey$views;
|
|
|
5585
5585
|
export interface RuntimeModel$instance extends RuntimeAnnotatableBase {
|
|
5586
5586
|
readonly debugView: DebugView;
|
|
5587
5587
|
modelId: Guid;
|
|
5588
|
-
addEntityType(name: string,
|
|
5588
|
+
addEntityType(name: string, type: Type, baseType?: RuntimeEntityType, sharedClrType?: boolean, changeTrackingStrategy?: ChangeTrackingStrategy, indexerPropertyInfo?: PropertyInfo, propertyBag?: boolean, discriminatorProperty?: string, discriminatorValue?: unknown, derivedTypesCount?: int, propertyCount?: int, complexPropertyCount?: int, navigationCount?: int, skipNavigationCount?: int, servicePropertyCount?: int, foreignKeyCount?: int, unnamedIndexCount?: int, namedIndexCount?: int, keyCount?: int, triggerCount?: int): RuntimeEntityType;
|
|
5589
5589
|
addRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
5590
5590
|
addRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
5591
5591
|
addTypeMappingConfiguration(clrType: Type, maxLength?: Nullable<System_Internal.Int32>, unicode?: Nullable<System_Internal.Boolean>, precision?: Nullable<System_Internal.Int32>, scale?: Nullable<System_Internal.Int32>, providerPropertyType?: Type, valueConverter?: ValueConverter): RuntimeTypeMappingConfiguration;
|
|
@@ -5765,7 +5765,7 @@ export interface RuntimePropertyBase$instance extends RuntimeAnnotatableBase {
|
|
|
5765
5765
|
setCurrentValueComparer(comparer: IComparer<IUpdateEntry>): void;
|
|
5766
5766
|
setGetter<TEntity, TValue>(getClrValue: Func<TEntity, TValue>, hasSentinel: Func<TEntity, System_Internal.Boolean>): void;
|
|
5767
5767
|
setGetter<TEntity, TStructural, TValue>(getClrValueUsingContainingEntity: Func<TEntity, IReadOnlyList<System_Internal.Int32>, TValue>, hasSentinelUsingContainingEntity: Func<TEntity, IReadOnlyList<System_Internal.Int32>, System_Internal.Boolean>, getClrValue: Func<TStructural, TValue>, hasSentinel: Func<TStructural, System_Internal.Boolean>): void;
|
|
5768
|
-
setIndexedCollectionAccessor<TEntity, TCollection extends IList<TElement>, TElement>(
|
|
5768
|
+
setIndexedCollectionAccessor<TEntity, TCollection extends IList<TElement>, TElement>(get: Func<TEntity, System_Internal.Int32, TElement>, set: Action<TEntity, System_Internal.Int32, TElement>, setForMaterialization: Action<TEntity, System_Internal.Int32, TElement>, createCollection: Func<System_Internal.Int32, TCollection>): void;
|
|
5769
5769
|
setMaterializationSetter<TEntity, TStructural, TValue>(setClrValueUsingContainingEntity: Action<TEntity, IReadOnlyList<System_Internal.Int32>, TValue>, setClrValue: Func<TStructural, TValue, TStructural>): void;
|
|
5770
5770
|
setMaterializationSetter<TEntity, TValue>(setClrValue: Func<TEntity, TValue, TEntity>): void;
|
|
5771
5771
|
setPropertyIndexes(index: int, originalValueIndex: int, shadowIndex: int, relationshipIndex: int, storeGenerationIndex: int): void;
|
|
@@ -5845,7 +5845,7 @@ export interface RuntimeSequence$instance extends AnnotatableBase {
|
|
|
5845
5845
|
|
|
5846
5846
|
|
|
5847
5847
|
export const RuntimeSequence: {
|
|
5848
|
-
new(name: string, model: RuntimeModel,
|
|
5848
|
+
new(name: string, model: RuntimeModel, type: Type, schema: string, startValue: long, incrementBy: int, cyclic: boolean, minValue: Nullable<System_Internal.Int64>, maxValue: Nullable<System_Internal.Int64>, modelSchemaIsNull: boolean): RuntimeSequence;
|
|
5849
5849
|
};
|
|
5850
5850
|
|
|
5851
5851
|
|
|
@@ -6092,7 +6092,7 @@ export interface RuntimeTypeBase$instance extends RuntimeAnnotatableBase {
|
|
|
6092
6092
|
|
|
6093
6093
|
|
|
6094
6094
|
export const RuntimeTypeBase: {
|
|
6095
|
-
findIndexerProperty(
|
|
6095
|
+
findIndexerProperty(type: Type): PropertyInfo | undefined;
|
|
6096
6096
|
};
|
|
6097
6097
|
|
|
6098
6098
|
|