@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
|
@@ -67,7 +67,7 @@ export type IMemberClassifier = IMemberClassifier$instance;
|
|
|
67
67
|
|
|
68
68
|
export interface IReferenceRoot_1$instance<T> {
|
|
69
69
|
release(reference: Reference_1<T>): void;
|
|
70
|
-
track(
|
|
70
|
+
track(object: T): Reference_1<T>;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
|
|
@@ -175,7 +175,7 @@ export interface IRuntimeComplexType$instance extends IComplexType, IReadOnlyCom
|
|
|
175
175
|
getRootType(): IReadOnlyTypeBase;
|
|
176
176
|
isAbstract(): boolean;
|
|
177
177
|
isAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
|
|
178
|
-
isContainedBy(
|
|
178
|
+
isContainedBy(type: Type): boolean;
|
|
179
179
|
setCounts(value: PropertyCounts): void;
|
|
180
180
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
181
181
|
findComplexProperty2(name: string): IComplexProperty | undefined;
|
|
@@ -227,7 +227,7 @@ export type IRuntimeDbFunction = IRuntimeDbFunction$instance;
|
|
|
227
227
|
export interface IRuntimeDbFunctionParameter$instance extends IDbFunctionParameter, IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
228
228
|
storeFunctionParameter: IStoreFunctionParameter;
|
|
229
229
|
readonly storeType: string;
|
|
230
|
-
readonly
|
|
230
|
+
readonly function: IDbFunction;
|
|
231
231
|
readonly name: string;
|
|
232
232
|
readonly clrType: Type;
|
|
233
233
|
readonly propagatesNullability: boolean;
|
|
@@ -467,17 +467,17 @@ export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnl
|
|
|
467
467
|
findAnnotation(name: string): IAnnotation | undefined;
|
|
468
468
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IEntityType): IEntityType | undefined;
|
|
469
469
|
findEntityType(name: string): IEntityType | undefined;
|
|
470
|
-
findEntityType(
|
|
470
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IEntityType): IEntityType | undefined;
|
|
471
471
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
472
472
|
findEntityType(name: string): IReadOnlyEntityType | undefined;
|
|
473
|
-
findEntityType(
|
|
474
|
-
findEntityType(
|
|
475
|
-
findEntityTypes(
|
|
476
|
-
findEntityTypes(
|
|
477
|
-
findLeastDerivedEntityTypes(
|
|
478
|
-
findLeastDerivedEntityTypes(
|
|
473
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: IReadOnlyEntityType): IReadOnlyEntityType | undefined;
|
|
474
|
+
findEntityType(type: Type): IReadOnlyEntityType | undefined;
|
|
475
|
+
findEntityTypes(type: Type): IEnumerable__System_Collections_Generic<IEntityType>;
|
|
476
|
+
findEntityTypes(type: Type): IEnumerable__System_Collections_Generic<IReadOnlyEntityType>;
|
|
477
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable__System_Collections_Generic<IEntityType>;
|
|
478
|
+
findLeastDerivedEntityTypes(type: Type, condition?: Func<IReadOnlyEntityType, System_Internal.Boolean>): IEnumerable__System_Collections_Generic<IReadOnlyEntityType>;
|
|
479
479
|
findRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
480
|
-
findRuntimeEntityType(
|
|
480
|
+
findRuntimeEntityType(type: Type): IEntityType | undefined;
|
|
481
481
|
findTypeMappingConfiguration(scalarType: Type): ITypeMappingConfiguration | undefined;
|
|
482
482
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
483
483
|
getEmbeddedDiscriminatorName(): string;
|
|
@@ -488,7 +488,7 @@ export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnl
|
|
|
488
488
|
getPropertyAccessMode(): PropertyAccessMode;
|
|
489
489
|
getUnsafeAccessors(): IReadOnlyDictionary<MemberInfo, QualifiedName>;
|
|
490
490
|
isIndexerMethod(methodInfo: MethodInfo): boolean;
|
|
491
|
-
isShared(
|
|
491
|
+
isShared(type: Type): boolean;
|
|
492
492
|
toDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
|
|
493
493
|
findEntityType2(name: string): IReadOnlyEntityType | undefined;
|
|
494
494
|
findRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -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
|
|
930
|
+
readonly type: Type;
|
|
931
931
|
equals(obj: unknown): boolean;
|
|
932
932
|
equals(other: TypeIdentity): boolean;
|
|
933
933
|
getHashCode(): int;
|
|
@@ -936,8 +936,8 @@ export interface TypeIdentity$instance {
|
|
|
936
936
|
|
|
937
937
|
export const TypeIdentity: {
|
|
938
938
|
new(name: string): TypeIdentity;
|
|
939
|
-
new(name: string,
|
|
940
|
-
new(
|
|
939
|
+
new(name: string, type: Type): TypeIdentity;
|
|
940
|
+
new(type: Type, model: Model): TypeIdentity;
|
|
941
941
|
};
|
|
942
942
|
|
|
943
943
|
|
|
@@ -1070,15 +1070,15 @@ export type ClrCollectionAccessorFactory = ClrCollectionAccessorFactory$instance
|
|
|
1070
1070
|
|
|
1071
1071
|
export interface ClrIndexedCollectionAccessor_3$instance<TStructural, TCollection extends IList<TElement>, TElement> {
|
|
1072
1072
|
create(capacity: int): unknown;
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1073
|
+
get(entity: unknown, index: int): unknown | undefined;
|
|
1074
|
+
get(entity: TStructural, index: int): TElement | undefined;
|
|
1075
|
+
set(entity: unknown, index: int, value: unknown, forMaterialization: boolean): void;
|
|
1076
|
+
set(entity: TStructural, index: int, value: TElement, forMaterialization: boolean): void;
|
|
1077
1077
|
}
|
|
1078
1078
|
|
|
1079
1079
|
|
|
1080
1080
|
export const ClrIndexedCollectionAccessor_3: {
|
|
1081
|
-
new<TStructural, TCollection extends IList<TElement>, TElement>(propertyName: string, shadow: boolean,
|
|
1081
|
+
new<TStructural, TCollection extends IList<TElement>, TElement>(propertyName: string, shadow: boolean, get: Func<TStructural, System_Internal.Int32, TElement>, set: Action<TStructural, System_Internal.Int32, TElement>, setForMaterialization: Action<TStructural, System_Internal.Int32, TElement>, createCollection: Func<System_Internal.Int32, TCollection>): ClrIndexedCollectionAccessor_3<TStructural, TCollection, TElement>;
|
|
1082
1082
|
};
|
|
1083
1083
|
|
|
1084
1084
|
|
|
@@ -1093,7 +1093,7 @@ export type ClrIndexedCollectionAccessor_3<TStructural, TCollection extends ILis
|
|
|
1093
1093
|
|
|
1094
1094
|
export interface ClrIndexedCollectionAccessorFactory$instance {
|
|
1095
1095
|
create(collection: IPropertyBase): IClrIndexedCollectionAccessor;
|
|
1096
|
-
create(collection: IPropertyBase, entityType: Type, propertyType: Type, elementType: Type,
|
|
1096
|
+
create(collection: IPropertyBase, entityType: Type, propertyType: Type, elementType: Type, get: Expression, set: Expression, setForMaterialization: Expression, createCollection: Expression): void;
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
1099
1099
|
|
|
@@ -1230,7 +1230,7 @@ export interface Column$instance extends ColumnBase_1$instance<ColumnMapping> {
|
|
|
1230
1230
|
|
|
1231
1231
|
|
|
1232
1232
|
export const Column: {
|
|
1233
|
-
new(name: string,
|
|
1233
|
+
new(name: string, type: string, table: Table, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): Column;
|
|
1234
1234
|
};
|
|
1235
1235
|
|
|
1236
1236
|
|
|
@@ -1278,7 +1278,7 @@ export interface ColumnBase_1$instance<TColumnMappingBase extends IColumnMapping
|
|
|
1278
1278
|
|
|
1279
1279
|
|
|
1280
1280
|
export const ColumnBase_1: {
|
|
1281
|
-
new<TColumnMappingBase extends IColumnMappingBase>(name: string,
|
|
1281
|
+
new<TColumnMappingBase extends IColumnMappingBase>(name: string, type: string, table: TableBase, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): ColumnBase_1<TColumnMappingBase>;
|
|
1282
1282
|
format<TColumnMappingBase extends IColumnMappingBase>(columns: IEnumerable__System_Collections_Generic<IColumnBase>): string;
|
|
1283
1283
|
};
|
|
1284
1284
|
|
|
@@ -1478,7 +1478,7 @@ export interface ComplexProperty$instance extends PropertyBase$instance {
|
|
|
1478
1478
|
|
|
1479
1479
|
|
|
1480
1480
|
export const ComplexProperty: {
|
|
1481
|
-
new(name: string,
|
|
1481
|
+
new(name: string, type: Type, propertyInfo: PropertyInfo, fieldInfo: FieldInfo, declaringType: TypeBase, targetTypeName: string, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty;
|
|
1482
1482
|
};
|
|
1483
1483
|
|
|
1484
1484
|
|
|
@@ -1680,7 +1680,7 @@ export interface ComplexType$instance extends TypeBase$instance {
|
|
|
1680
1680
|
|
|
1681
1681
|
|
|
1682
1682
|
export const ComplexType: {
|
|
1683
|
-
new(name: string,
|
|
1683
|
+
new(name: string, type: Type, property: ComplexProperty, configurationSource: ConfigurationSource): ComplexType;
|
|
1684
1684
|
};
|
|
1685
1685
|
|
|
1686
1686
|
|
|
@@ -1708,8 +1708,8 @@ export interface ConstructorBindingFactory$instance {
|
|
|
1708
1708
|
getBindings(entityType: IMutableEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
1709
1709
|
getBindings(entityType: IReadOnlyEntityType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
1710
1710
|
getBindings(complexType: IReadOnlyComplexType, constructorBinding: InstantiationBinding, serviceOnlyBinding: InstantiationBinding): void;
|
|
1711
|
-
tryBindConstructor(entityType: IMutableEntityType,
|
|
1712
|
-
tryBindConstructor(entityType: IConventionEntityType,
|
|
1711
|
+
tryBindConstructor(entityType: IMutableEntityType, constructor: ConstructorInfo, binding: InstantiationBinding, unboundParameters: IEnumerable__System_Collections_Generic<ParameterInfo>): boolean;
|
|
1712
|
+
tryBindConstructor(entityType: IConventionEntityType, constructor: ConstructorInfo, binding: InstantiationBinding, unboundParameters: IEnumerable__System_Collections_Generic<ParameterInfo>): boolean;
|
|
1713
1713
|
}
|
|
1714
1714
|
|
|
1715
1715
|
|
|
@@ -1862,7 +1862,7 @@ export type DbFunction = DbFunction$instance & __DbFunction$views;
|
|
|
1862
1862
|
|
|
1863
1863
|
export interface DbFunctionParameter$instance extends ConventionAnnotatable {
|
|
1864
1864
|
readonly clrType: Type;
|
|
1865
|
-
readonly
|
|
1865
|
+
readonly function: DbFunction;
|
|
1866
1866
|
readonly isInModel: boolean;
|
|
1867
1867
|
readonly isReadOnly: boolean;
|
|
1868
1868
|
readonly name: string;
|
|
@@ -2292,8 +2292,8 @@ export interface EntityType$instance extends TypeBase$instance {
|
|
|
2292
2292
|
|
|
2293
2293
|
export const EntityType: {
|
|
2294
2294
|
new(name: string, model: Model, owned: boolean, configurationSource: ConfigurationSource): EntityType;
|
|
2295
|
-
new(
|
|
2296
|
-
new(name: string,
|
|
2295
|
+
new(type: Type, model: Model, owned: boolean, configurationSource: ConfigurationSource): EntityType;
|
|
2296
|
+
new(name: string, type: Type, model: Model, owned: boolean, configurationSource: ConfigurationSource): EntityType;
|
|
2297
2297
|
};
|
|
2298
2298
|
|
|
2299
2299
|
|
|
@@ -2373,7 +2373,7 @@ export const EntityTypeMappingFragment: {
|
|
|
2373
2373
|
new(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier, configurationSource: ConfigurationSource): EntityTypeMappingFragment;
|
|
2374
2374
|
attach(entityType: IConventionEntityType, detachedFragment: IConventionEntityTypeMappingFragment): void;
|
|
2375
2375
|
find(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier): IReadOnlyEntityTypeMappingFragment | undefined;
|
|
2376
|
-
|
|
2376
|
+
get(entityType: IReadOnlyEntityType): IEnumerable__System_Collections_Generic<IReadOnlyEntityTypeMappingFragment> | undefined;
|
|
2377
2377
|
getOrCreate(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier, configurationSource: ConfigurationSource): EntityTypeMappingFragment;
|
|
2378
2378
|
mergeInto(detachedFragment: IConventionEntityTypeMappingFragment, existingFragment: IConventionEntityTypeMappingFragment): EntityTypeMappingFragment;
|
|
2379
2379
|
remove(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier): EntityTypeMappingFragment | undefined;
|
|
@@ -2589,7 +2589,7 @@ export const ForeignKeyConstraintComparer: {
|
|
|
2589
2589
|
export type ForeignKeyConstraintComparer = ForeignKeyConstraintComparer$instance;
|
|
2590
2590
|
|
|
2591
2591
|
export interface FunctionColumn$instance extends ColumnBase_1$instance<FunctionColumnMapping> {
|
|
2592
|
-
readonly
|
|
2592
|
+
readonly function: StoreFunction;
|
|
2593
2593
|
addAnnotation(name: string, value: unknown): IAnnotation;
|
|
2594
2594
|
addAnnotation(name: string, value: unknown): Annotation;
|
|
2595
2595
|
addAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
@@ -2615,7 +2615,7 @@ export interface FunctionColumn$instance extends ColumnBase_1$instance<FunctionC
|
|
|
2615
2615
|
|
|
2616
2616
|
|
|
2617
2617
|
export const FunctionColumn: {
|
|
2618
|
-
new(name: string,
|
|
2618
|
+
new(name: string, type: string, function_: StoreFunction, storeTypeMapping: RelationalTypeMapping): FunctionColumn;
|
|
2619
2619
|
};
|
|
2620
2620
|
|
|
2621
2621
|
|
|
@@ -2866,9 +2866,9 @@ export interface InternalComplexTypeBuilder$instance extends InternalTypeBaseBui
|
|
|
2866
2866
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
|
|
2867
2867
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
2868
2868
|
canSetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
|
|
2869
|
-
canSetDiscriminator(name: string,
|
|
2870
|
-
canSetDiscriminator(
|
|
2871
|
-
canSetDiscriminator(name: string,
|
|
2869
|
+
canSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
|
|
2870
|
+
canSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
2871
|
+
canSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
2872
2872
|
canSetServiceOnlyConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
|
|
2873
2873
|
complexProperty(memberInfo: MemberInfo, complexTypeName: string, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
|
|
2874
2874
|
complexProperty(propertyType: Type, propertyName: string, complexTypeName: string, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
|
|
@@ -2887,7 +2887,7 @@ export interface InternalComplexTypeBuilder$instance extends InternalTypeBaseBui
|
|
|
2887
2887
|
hasChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
2888
2888
|
hasConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
|
|
2889
2889
|
hasDiscriminator(configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
|
|
2890
|
-
hasDiscriminator(name: string,
|
|
2890
|
+
hasDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
|
|
2891
2891
|
hasDiscriminator(memberInfo: MemberInfo, configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
|
|
2892
2892
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
2893
2893
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -3047,17 +3047,17 @@ export type InternalElementTypeBuilder = InternalElementTypeBuilder$instance & _
|
|
|
3047
3047
|
|
|
3048
3048
|
export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuilder$instance {
|
|
3049
3049
|
canAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
|
|
3050
|
-
canAddNavigation(navigationName: string,
|
|
3050
|
+
canAddNavigation(navigationName: string, type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3051
3051
|
canHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable<System_Internal.Boolean>, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3052
3052
|
canHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
3053
3053
|
canHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
3054
3054
|
canHaveIndex(propertyNames: IReadOnlyList<System_Internal.String>, configurationSource: ConfigurationSource): boolean;
|
|
3055
|
-
canHaveNavigation(navigationName: string,
|
|
3055
|
+
canHaveNavigation(navigationName: string, type: Type, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3056
3056
|
canHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable<ConfigurationSource>, configurationSource: Nullable<ConfigurationSource>, checkClrProperty?: boolean): boolean;
|
|
3057
3057
|
canHaveProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): boolean;
|
|
3058
3058
|
canHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
3059
3059
|
canHaveServiceProperty(memberInfo: MemberInfo, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3060
|
-
canHaveSkipNavigation(skipNavigationName: string,
|
|
3060
|
+
canHaveSkipNavigation(skipNavigationName: string, type: Type, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3061
3061
|
canRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
3062
3062
|
canRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3063
3063
|
canRemoveComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3080,9 +3080,9 @@ export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuil
|
|
|
3080
3080
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
|
|
3081
3081
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
3082
3082
|
canSetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
|
|
3083
|
-
canSetDiscriminator(name: string,
|
|
3084
|
-
canSetDiscriminator(
|
|
3085
|
-
canSetDiscriminator(name: string,
|
|
3083
|
+
canSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3084
|
+
canSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
3085
|
+
canSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
3086
3086
|
canSetIsOwned(owned: boolean, configurationSource: ConfigurationSource): boolean;
|
|
3087
3087
|
canSetPrimaryKey(propertyNames: IReadOnlyList<System_Internal.String>, configurationSource: ConfigurationSource): boolean;
|
|
3088
3088
|
canSetPrimaryKey(properties: IReadOnlyList<IConventionProperty>, configurationSource: ConfigurationSource): boolean;
|
|
@@ -3112,7 +3112,7 @@ export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuil
|
|
|
3112
3112
|
hasConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): IConventionEntityTypeBuilder | undefined;
|
|
3113
3113
|
hasData(data: IEnumerable__System_Collections_Generic<unknown>, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
|
|
3114
3114
|
hasDiscriminator(configurationSource: ConfigurationSource): DiscriminatorBuilder | undefined;
|
|
3115
|
-
hasDiscriminator(name: string,
|
|
3115
|
+
hasDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): DiscriminatorBuilder | undefined;
|
|
3116
3116
|
hasDiscriminator(memberInfo: MemberInfo, configurationSource: ConfigurationSource): DiscriminatorBuilder | undefined;
|
|
3117
3117
|
hasIndex(propertyNames: IReadOnlyList<System_Internal.String>, configurationSource: ConfigurationSource): InternalIndexBuilder | undefined;
|
|
3118
3118
|
hasIndex(propertyNames: IReadOnlyList<System_Internal.String>, name: string, configurationSource: ConfigurationSource): InternalIndexBuilder | undefined;
|
|
@@ -3369,9 +3369,9 @@ export type InternalKeyBuilder = InternalKeyBuilder$instance & __InternalKeyBuil
|
|
|
3369
3369
|
|
|
3370
3370
|
|
|
3371
3371
|
export interface InternalModelBuilder$instance extends AnnotatableBuilder_2<Model, InternalModelBuilder> {
|
|
3372
|
-
canBeConfigured(
|
|
3373
|
-
canHaveEntity(
|
|
3374
|
-
canIgnore(
|
|
3372
|
+
canBeConfigured(type: Type, configurationType: TypeConfigurationType, configurationSource: ConfigurationSource): boolean;
|
|
3373
|
+
canHaveEntity(type: TypeIdentity, configurationSource: ConfigurationSource, shouldBeOwned: Nullable<System_Internal.Boolean>, shouldThrow?: boolean): boolean;
|
|
3374
|
+
canIgnore(type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3375
3375
|
canIgnore(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3376
3376
|
canRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3377
3377
|
canRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -3381,11 +3381,11 @@ export interface InternalModelBuilder$instance extends AnnotatableBuilder_2<Mode
|
|
|
3381
3381
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
|
|
3382
3382
|
canSetEmbeddedDiscriminatorName(name: string, configurationSource: ConfigurationSource): boolean;
|
|
3383
3383
|
canSetPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): boolean;
|
|
3384
|
-
complex(
|
|
3384
|
+
complex(type: Type, configurationSource: ConfigurationSource): InternalModelBuilder;
|
|
3385
3385
|
entity(name: string, configurationSource: ConfigurationSource, shouldBeOwned?: Nullable<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
|
|
3386
|
-
entity(
|
|
3386
|
+
entity(type: Type, configurationSource: ConfigurationSource, shouldBeOwned?: Nullable<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
|
|
3387
3387
|
entity(name: string, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
|
|
3388
|
-
entity(
|
|
3388
|
+
entity(type: Type, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
|
|
3389
3389
|
hasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Model, InternalModelBuilder>;
|
|
3390
3390
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
3391
3391
|
hasChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
|
|
@@ -3393,13 +3393,13 @@ export interface InternalModelBuilder$instance extends AnnotatableBuilder_2<Mode
|
|
|
3393
3393
|
hasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Model, InternalModelBuilder>;
|
|
3394
3394
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
3395
3395
|
hasNoEntityType(entityType: EntityType, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
|
|
3396
|
-
ignore(
|
|
3396
|
+
ignore(type: Type, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
|
|
3397
3397
|
ignore(name: string, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
|
|
3398
|
-
isIgnored(
|
|
3398
|
+
isIgnored(type: Type, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3399
3399
|
isIgnored(name: string, configurationSource: Nullable<ConfigurationSource>): boolean;
|
|
3400
|
-
owned(
|
|
3400
|
+
owned(type: Type, configurationSource: ConfigurationSource): IConventionOwnedEntityTypeBuilder | undefined;
|
|
3401
3401
|
removeImplicitJoinEntity(joinEntityType: EntityType, configurationSource?: ConfigurationSource): InternalModelBuilder | undefined;
|
|
3402
|
-
sharedTypeEntity(name: string,
|
|
3402
|
+
sharedTypeEntity(name: string, type: Type, configurationSource: ConfigurationSource, shouldBeOwned?: Nullable<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
|
|
3403
3403
|
usePropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
|
|
3404
3404
|
}
|
|
3405
3405
|
|
|
@@ -3611,14 +3611,14 @@ export interface InternalSequenceBuilder$instance extends AnnotatableBuilder_2<S
|
|
|
3611
3611
|
canSetMax(maximum: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
|
|
3612
3612
|
canSetMin(minimum: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
|
|
3613
3613
|
canSetStartsAt(startValue: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
|
|
3614
|
-
canSetType(
|
|
3614
|
+
canSetType(type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3615
3615
|
hasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Sequence, IConventionModelBuilder>;
|
|
3616
3616
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
3617
3617
|
hasMax(maximum: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
3618
3618
|
hasMin(minimum: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
3619
3619
|
hasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Sequence, IConventionModelBuilder>;
|
|
3620
3620
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
3621
|
-
hasType(
|
|
3621
|
+
hasType(type: Type, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
3622
3622
|
incrementsBy(increment: Nullable<System_Internal.Int32>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
3623
3623
|
isCyclic(cyclic: Nullable<System_Internal.Boolean>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
3624
3624
|
startsAt(startValue: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
|
|
@@ -3857,7 +3857,7 @@ export interface InternalTypeBaseBuilder$instance extends AnnotatableBuilder_2<T
|
|
|
3857
3857
|
canSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
|
|
3858
3858
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
3859
3859
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
|
|
3860
|
-
canSetDiscriminator(name: string,
|
|
3860
|
+
canSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
|
|
3861
3861
|
canSetPropertyAccessMode(propertyAccessMode: Nullable<PropertyAccessMode>, configurationSource: ConfigurationSource): boolean;
|
|
3862
3862
|
complexCollection(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
3863
3863
|
complexCollection(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
@@ -3940,7 +3940,7 @@ export interface JsonColumn$instance extends Column$instance {
|
|
|
3940
3940
|
|
|
3941
3941
|
|
|
3942
3942
|
export const JsonColumn: {
|
|
3943
|
-
new(name: string,
|
|
3943
|
+
new(name: string, type: string, table: Table, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): JsonColumn;
|
|
3944
3944
|
};
|
|
3945
3945
|
|
|
3946
3946
|
|
|
@@ -3980,7 +3980,7 @@ export interface JsonColumnBase$instance extends ColumnBase_1$instance<ColumnMap
|
|
|
3980
3980
|
|
|
3981
3981
|
|
|
3982
3982
|
export const JsonColumnBase: {
|
|
3983
|
-
new(name: string,
|
|
3983
|
+
new(name: string, type: string, table: TableBase, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): JsonColumnBase;
|
|
3984
3984
|
};
|
|
3985
3985
|
|
|
3986
3986
|
|
|
@@ -4020,7 +4020,7 @@ export interface JsonViewColumn$instance extends ViewColumn$instance {
|
|
|
4020
4020
|
|
|
4021
4021
|
|
|
4022
4022
|
export const JsonViewColumn: {
|
|
4023
|
-
new(name: string,
|
|
4023
|
+
new(name: string, type: string, view: View, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): JsonViewColumn;
|
|
4024
4024
|
};
|
|
4025
4025
|
|
|
4026
4026
|
|
|
@@ -4137,21 +4137,21 @@ export interface Model$instance extends ConventionAnnotatable {
|
|
|
4137
4137
|
addAnnotations(annotations: IEnumerable__System_Collections_Generic<IAnnotation>): void;
|
|
4138
4138
|
addAnnotations(annotations: IEnumerable__System_Collections_Generic<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
|
|
4139
4139
|
addAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
4140
|
-
addComplex(
|
|
4140
|
+
addComplex(type: Type, configurationSource: ConfigurationSource): Nullable<ConfigurationSource>;
|
|
4141
4141
|
addComplexType(complexType: ComplexType): void;
|
|
4142
4142
|
addEntityType(name: string, owned: boolean, configurationSource: ConfigurationSource): EntityType | undefined;
|
|
4143
|
-
addEntityType(
|
|
4144
|
-
addEntityType(name: string,
|
|
4143
|
+
addEntityType(type: Type, owned: boolean, configurationSource: ConfigurationSource): EntityType | undefined;
|
|
4144
|
+
addEntityType(name: string, type: Type, owned: boolean, configurationSource: ConfigurationSource): EntityType | undefined;
|
|
4145
4145
|
addEntityType(name: string, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): EntityType | undefined;
|
|
4146
|
-
addEntityType(
|
|
4147
|
-
addIgnored(
|
|
4146
|
+
addEntityType(type: Type, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): EntityType | undefined;
|
|
4147
|
+
addIgnored(type: Type, configurationSource: ConfigurationSource): string | undefined;
|
|
4148
4148
|
addIgnored(name: string, configurationSource: ConfigurationSource): string | undefined;
|
|
4149
|
-
addIgnored(name: string,
|
|
4150
|
-
addOwned(
|
|
4149
|
+
addIgnored(name: string, type: Type, configurationSource: ConfigurationSource): string | undefined;
|
|
4150
|
+
addOwned(type: Type, configurationSource: ConfigurationSource): void;
|
|
4151
4151
|
addProperty(property: Property): void;
|
|
4152
4152
|
addRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
4153
4153
|
addRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
4154
|
-
addShared(
|
|
4154
|
+
addShared(type: Type, configurationSource: ConfigurationSource): void;
|
|
4155
4155
|
annotationsToDebugString(indent?: int): string;
|
|
4156
4156
|
delayConventions(): IConventionBatch;
|
|
4157
4157
|
finalizeModel(): IModel;
|
|
@@ -4162,18 +4162,18 @@ export interface Model$instance extends ConventionAnnotatable {
|
|
|
4162
4162
|
findAnnotation(name: string): Annotation | undefined;
|
|
4163
4163
|
findClrType(name: string): Type | undefined;
|
|
4164
4164
|
findComplexType(name: string): ComplexType | undefined;
|
|
4165
|
-
findEntityType(
|
|
4165
|
+
findEntityType(type: Type): EntityType | undefined;
|
|
4166
4166
|
findEntityType(name: string): EntityType | undefined;
|
|
4167
|
-
findEntityType(
|
|
4167
|
+
findEntityType(type: Type, definingNavigationName: string, definingEntityType: EntityType): EntityType | undefined;
|
|
4168
4168
|
findEntityType(name: string, definingNavigationName: string, definingEntityType: EntityType): EntityType | undefined;
|
|
4169
|
-
findEntityTypes(
|
|
4170
|
-
findIgnoredConfigurationSource(
|
|
4169
|
+
findEntityTypes(type: Type): IEnumerable__System_Collections_Generic<EntityType>;
|
|
4170
|
+
findIgnoredConfigurationSource(type: Type): Nullable<ConfigurationSource>;
|
|
4171
4171
|
findIgnoredConfigurationSource(name: string): Nullable<ConfigurationSource>;
|
|
4172
|
-
findIndexerPropertyInfo(
|
|
4173
|
-
findIsComplexConfigurationSource(
|
|
4174
|
-
findIsOwnedConfigurationSource(
|
|
4175
|
-
findIsSharedConfigurationSource(
|
|
4176
|
-
findProperties(
|
|
4172
|
+
findIndexerPropertyInfo(type: Type): PropertyInfo | undefined;
|
|
4173
|
+
findIsComplexConfigurationSource(type: Type): Nullable<ConfigurationSource>;
|
|
4174
|
+
findIsOwnedConfigurationSource(type: Type): Nullable<ConfigurationSource>;
|
|
4175
|
+
findIsSharedConfigurationSource(type: Type): Nullable<ConfigurationSource>;
|
|
4176
|
+
findProperties(type: Type): IReadOnlySet<Property> | undefined;
|
|
4177
4177
|
findRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
4178
4178
|
findRuntimeAnnotation(name: string): Annotation | undefined;
|
|
4179
4179
|
findRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
@@ -4181,7 +4181,7 @@ export interface Model$instance extends ConventionAnnotatable {
|
|
|
4181
4181
|
getAnnotations(): IEnumerable__System_Collections_Generic<ConventionAnnotation>;
|
|
4182
4182
|
getChangeTrackingStrategy(): ChangeTrackingStrategy;
|
|
4183
4183
|
getChangeTrackingStrategyConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4184
|
-
getDisplayName(
|
|
4184
|
+
getDisplayName(type: Type): string;
|
|
4185
4185
|
getEmbeddedDiscriminatorName(): string;
|
|
4186
4186
|
getEmbeddedDiscriminatorNameConfigurationSource(): Nullable<ConfigurationSource>;
|
|
4187
4187
|
getEntityTypes(): IEnumerable__System_Collections_Generic<EntityType>;
|
|
@@ -4192,25 +4192,25 @@ export interface Model$instance extends ConventionAnnotatable {
|
|
|
4192
4192
|
getRuntimeAnnotations(): IEnumerable__System_Collections_Generic<IAnnotation>;
|
|
4193
4193
|
getTypeMappingConfigurations(): IEnumerable__System_Collections_Generic<ITypeMappingConfiguration>;
|
|
4194
4194
|
isIgnored(name: string): boolean;
|
|
4195
|
-
isIgnored(
|
|
4196
|
-
isIgnoredType(
|
|
4195
|
+
isIgnored(type: Type): boolean;
|
|
4196
|
+
isIgnoredType(type: Type): boolean;
|
|
4197
4197
|
isIndexerMethod(methodInfo: MethodInfo): boolean;
|
|
4198
|
-
isOwned(
|
|
4199
|
-
isShared(
|
|
4198
|
+
isOwned(type: Type): boolean;
|
|
4199
|
+
isShared(type: Type): boolean;
|
|
4200
4200
|
onModelFinalized(): IModel;
|
|
4201
4201
|
removeAnnotation(name: string): IAnnotation | undefined;
|
|
4202
4202
|
removeAnnotation(name: string): Annotation | undefined;
|
|
4203
4203
|
removeComplexType(complexType: ComplexType): void;
|
|
4204
|
-
removeEntityType(
|
|
4204
|
+
removeEntityType(type: Type): EntityType | undefined;
|
|
4205
4205
|
removeEntityType(name: string): EntityType | undefined;
|
|
4206
4206
|
removeEntityType(entityType: EntityType): EntityType | undefined;
|
|
4207
|
-
removeEntityType(
|
|
4207
|
+
removeEntityType(type: Type, definingNavigationName: string, definingEntityType: EntityType): EntityType | undefined;
|
|
4208
4208
|
removeEntityType(name: string, definingNavigationName: string, definingEntityType: EntityType): EntityType | undefined;
|
|
4209
|
-
removeIgnored(
|
|
4209
|
+
removeIgnored(type: Type): string | undefined;
|
|
4210
4210
|
removeIgnored(name: string): string | undefined;
|
|
4211
|
-
removeOwned(
|
|
4211
|
+
removeOwned(type: Type): string | undefined;
|
|
4212
4212
|
removeProperty(property: Property): Property | undefined;
|
|
4213
|
-
removeShared(
|
|
4213
|
+
removeShared(type: Type): Type | undefined;
|
|
4214
4214
|
setAnnotation(name: string, value: unknown): void;
|
|
4215
4215
|
setAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
4216
4216
|
setChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable<ChangeTrackingStrategy>;
|
|
@@ -4246,23 +4246,23 @@ export type Model = Model$instance & __Model$views;
|
|
|
4246
4246
|
|
|
4247
4247
|
|
|
4248
4248
|
export interface ModelConfiguration$instance {
|
|
4249
|
-
addIgnored(
|
|
4249
|
+
addIgnored(type: Type): void;
|
|
4250
4250
|
configureComplexProperty(property: IMutableComplexProperty): void;
|
|
4251
4251
|
configureProperty(property: IMutableProperty): void;
|
|
4252
|
-
findComplexProperty(
|
|
4253
|
-
findProperty(
|
|
4254
|
-
findTypeMapping(
|
|
4252
|
+
findComplexProperty(type: Type): ComplexPropertyConfiguration | undefined;
|
|
4253
|
+
findProperty(type: Type): PropertyConfiguration | undefined;
|
|
4254
|
+
findTypeMapping(type: Type): PropertyConfiguration | undefined;
|
|
4255
4255
|
findTypeMappingConfiguration(scalarType: Type): ITypeMappingConfiguration | undefined;
|
|
4256
|
-
getConfigurationType(
|
|
4257
|
-
getOrAddComplexProperty(
|
|
4258
|
-
getOrAddProperty(
|
|
4259
|
-
getOrAddTypeMapping(
|
|
4256
|
+
getConfigurationType(type: Type): Nullable<TypeConfigurationType>;
|
|
4257
|
+
getOrAddComplexProperty(type: Type): ComplexPropertyConfiguration;
|
|
4258
|
+
getOrAddProperty(type: Type): PropertyConfiguration;
|
|
4259
|
+
getOrAddTypeMapping(type: Type): PropertyConfiguration;
|
|
4260
4260
|
getTypeMappingConfigurations(): IEnumerable__System_Collections_Generic<ITypeMappingConfiguration>;
|
|
4261
4261
|
isEmpty(): boolean;
|
|
4262
|
-
isIgnored(
|
|
4263
|
-
removeComplexProperty(
|
|
4264
|
-
removeIgnored(
|
|
4265
|
-
removeProperty(
|
|
4262
|
+
isIgnored(type: Type): boolean;
|
|
4263
|
+
removeComplexProperty(type: Type): boolean;
|
|
4264
|
+
removeIgnored(type: Type): boolean;
|
|
4265
|
+
removeProperty(type: Type): boolean;
|
|
4266
4266
|
validate(): ModelConfiguration;
|
|
4267
4267
|
}
|
|
4268
4268
|
|
|
@@ -4671,7 +4671,7 @@ export interface PropertyBase$instance extends ConventionAnnotatable {
|
|
|
4671
4671
|
|
|
4672
4672
|
|
|
4673
4673
|
export const PropertyBase: {
|
|
4674
|
-
getFieldInfo(fieldName: string,
|
|
4674
|
+
getFieldInfo(fieldName: string, type: TypeBase, propertyName: string, shouldThrow: boolean): FieldInfo | undefined;
|
|
4675
4675
|
isCompatible(fieldInfo: FieldInfo, propertyType: Type, entityType: Type, propertyName: string, shouldThrow: boolean): boolean;
|
|
4676
4676
|
};
|
|
4677
4677
|
|
|
@@ -4848,7 +4848,7 @@ export interface QueryFilterCollection$instance {
|
|
|
4848
4848
|
readonly count: int;
|
|
4849
4849
|
readonly item: IQueryFilter | undefined;
|
|
4850
4850
|
getEnumerator(): IEnumerator<IQueryFilter>;
|
|
4851
|
-
|
|
4851
|
+
set(filter: IQueryFilter): IQueryFilter | undefined;
|
|
4852
4852
|
setRange(newFilters: IEnumerable__System_Collections_Generic<IQueryFilter>): void;
|
|
4853
4853
|
}
|
|
4854
4854
|
|
|
@@ -4862,15 +4862,15 @@ export const QueryFilterCollection: {
|
|
|
4862
4862
|
export type QueryFilterCollection = QueryFilterCollection$instance;
|
|
4863
4863
|
|
|
4864
4864
|
export interface Reference_1$instance<T> {
|
|
4865
|
-
|
|
4865
|
+
object: T;
|
|
4866
4866
|
dispose(): void;
|
|
4867
4867
|
increaseReferenceCount(): void;
|
|
4868
4868
|
}
|
|
4869
4869
|
|
|
4870
4870
|
|
|
4871
4871
|
export const Reference_1: {
|
|
4872
|
-
new<T>(
|
|
4873
|
-
new<T>(
|
|
4872
|
+
new<T>(object: T): Reference_1<T>;
|
|
4873
|
+
new<T>(object: T, root: IReferenceRoot_1<T>): Reference_1<T>;
|
|
4874
4874
|
};
|
|
4875
4875
|
|
|
4876
4876
|
|
|
@@ -4996,7 +4996,7 @@ export const RelationalPropertyOverrides: {
|
|
|
4996
4996
|
attach(property: IConventionProperty, detachedOverrides: IConventionRelationalPropertyOverrides, newStoreObject: StoreObjectIdentifier): void;
|
|
4997
4997
|
attach(property: IConventionProperty, detachedOverrides: IConventionRelationalPropertyOverrides): void;
|
|
4998
4998
|
find(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): IReadOnlyRelationalPropertyOverrides | undefined;
|
|
4999
|
-
|
|
4999
|
+
get(property: IReadOnlyProperty): IEnumerable__System_Collections_Generic<IReadOnlyRelationalPropertyOverrides> | undefined;
|
|
5000
5000
|
getOrCreate(property: IMutableProperty, storeObject: StoreObjectIdentifier, configurationSource: ConfigurationSource): RelationalPropertyOverrides;
|
|
5001
5001
|
mergeInto(detachedOverrides: IConventionRelationalPropertyOverrides, existingOverrides: IConventionRelationalPropertyOverrides): RelationalPropertyOverrides;
|
|
5002
5002
|
remove(property: IMutableProperty, storeObject: StoreObjectIdentifier): RelationalPropertyOverrides | undefined;
|
|
@@ -5130,7 +5130,7 @@ export interface Sequence$instance extends ConventionAnnotatable {
|
|
|
5130
5130
|
name: string;
|
|
5131
5131
|
readonly schema: string;
|
|
5132
5132
|
startValue: long;
|
|
5133
|
-
|
|
5133
|
+
type: Type;
|
|
5134
5134
|
addAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
5135
5135
|
addAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
|
|
5136
5136
|
addAnnotation(name: string, value: unknown): IAnnotation;
|
|
@@ -5168,7 +5168,7 @@ export interface Sequence$instance extends ConventionAnnotatable {
|
|
|
5168
5168
|
setMinValue(minValue: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): Nullable<System_Internal.Int64>;
|
|
5169
5169
|
setRemovedFromModel(): void;
|
|
5170
5170
|
setStartValue(startValue: Nullable<System_Internal.Int64>, configurationSource: ConfigurationSource): Nullable<System_Internal.Int64>;
|
|
5171
|
-
setType(
|
|
5171
|
+
setType(type: Type, configurationSource: ConfigurationSource): Type | undefined;
|
|
5172
5172
|
toString(): string;
|
|
5173
5173
|
updateConfigurationSource(configurationSource: ConfigurationSource): void;
|
|
5174
5174
|
}
|
|
@@ -5476,7 +5476,7 @@ export interface SqlQueryColumn$instance extends ColumnBase_1$instance<SqlQueryC
|
|
|
5476
5476
|
|
|
5477
5477
|
|
|
5478
5478
|
export const SqlQueryColumn: {
|
|
5479
|
-
new(name: string,
|
|
5479
|
+
new(name: string, type: string, sqlQuery: SqlQuery, storeTypeMapping: RelationalTypeMapping): SqlQueryColumn;
|
|
5480
5480
|
};
|
|
5481
5481
|
|
|
5482
5482
|
|
|
@@ -5980,7 +5980,7 @@ export type StoreFunction = StoreFunction$instance & __StoreFunction$views;
|
|
|
5980
5980
|
|
|
5981
5981
|
export interface StoreFunctionParameter$instance extends Annotatable {
|
|
5982
5982
|
readonly dbFunctionParameters: List<IDbFunctionParameter>;
|
|
5983
|
-
readonly
|
|
5983
|
+
readonly function: StoreFunction;
|
|
5984
5984
|
readonly isReadOnly: boolean;
|
|
5985
5985
|
readonly name: string;
|
|
5986
5986
|
readonly storeType: string;
|
|
@@ -6108,7 +6108,7 @@ export interface StoreStoredProcedureParameter$instance extends ColumnBase_1$ins
|
|
|
6108
6108
|
|
|
6109
6109
|
|
|
6110
6110
|
export const StoreStoredProcedureParameter: {
|
|
6111
|
-
new(name: string,
|
|
6111
|
+
new(name: string, type: string, position: int, storedProcedure: StoreStoredProcedure, direction: ParameterDirection, storeTypeMapping: RelationalTypeMapping): StoreStoredProcedureParameter;
|
|
6112
6112
|
};
|
|
6113
6113
|
|
|
6114
6114
|
|
|
@@ -6152,7 +6152,7 @@ export interface StoreStoredProcedureResultColumn$instance extends ColumnBase_1$
|
|
|
6152
6152
|
|
|
6153
6153
|
|
|
6154
6154
|
export const StoreStoredProcedureResultColumn: {
|
|
6155
|
-
new(name: string,
|
|
6155
|
+
new(name: string, type: string, position: int, storedProcedure: StoreStoredProcedure, storeTypeMapping: RelationalTypeMapping): StoreStoredProcedureResultColumn;
|
|
6156
6156
|
};
|
|
6157
6157
|
|
|
6158
6158
|
|
|
@@ -6195,7 +6195,7 @@ export interface StoreStoredProcedureReturnValue$instance extends ColumnBase_1$i
|
|
|
6195
6195
|
|
|
6196
6196
|
|
|
6197
6197
|
export const StoreStoredProcedureReturnValue: {
|
|
6198
|
-
new(name: string,
|
|
6198
|
+
new(name: string, type: string, storedProcedure: StoreStoredProcedure, storeTypeMapping: RelationalTypeMapping): StoreStoredProcedureReturnValue;
|
|
6199
6199
|
};
|
|
6200
6200
|
|
|
6201
6201
|
|
|
@@ -6831,7 +6831,7 @@ export interface ViewColumn$instance extends ColumnBase_1$instance<ViewColumnMap
|
|
|
6831
6831
|
|
|
6832
6832
|
|
|
6833
6833
|
export const ViewColumn: {
|
|
6834
|
-
new(name: string,
|
|
6834
|
+
new(name: string, type: string, view: View, storeTypeMapping: RelationalTypeMapping, providerValueComparer: ValueComparer): ViewColumn;
|
|
6835
6835
|
};
|
|
6836
6836
|
|
|
6837
6837
|
|
|
@@ -7028,7 +7028,7 @@ export abstract class KeyExtensions$instance {
|
|
|
7028
7028
|
export type KeyExtensions = KeyExtensions$instance;
|
|
7029
7029
|
|
|
7030
7030
|
export abstract class ModelExtensions$instance {
|
|
7031
|
-
static findSameTypeNameWithDifferentNamespace(model: IModel,
|
|
7031
|
+
static findSameTypeNameWithDifferentNamespace(model: IModel, type: Type): string | undefined;
|
|
7032
7032
|
static getEntityTypesInHierarchicalOrder(model: IModel): IEnumerable__System_Collections_Generic<IEntityType>;
|
|
7033
7033
|
static getRootEntityTypes(model: IModel): IEnumerable__System_Collections_Generic<IEntityType>;
|
|
7034
7034
|
static setProductVersion(model: IMutableModel, value: string): void;
|
|
@@ -7080,8 +7080,8 @@ export abstract class RelationalEntityTypeExtensions$instance {
|
|
|
7080
7080
|
static readonly maxEntityTypesSharingTable: int;
|
|
7081
7081
|
static findDeclaredReferencingRowInternalForeignKeys(entityType: IEntityType, storeObject: StoreObjectIdentifier): IEnumerable__System_Collections_Generic<IForeignKey>;
|
|
7082
7082
|
static getNonPrincipalSharedNonPkProperties(entityType: IEntityType, table: ITableBase): List<IProperty>;
|
|
7083
|
-
static getStoreObjectConfigurationSource(entityType: IConventionEntityType,
|
|
7084
|
-
static isMainFragment(
|
|
7083
|
+
static getStoreObjectConfigurationSource(entityType: IConventionEntityType, type: StoreObjectType): Nullable<ConfigurationSource>;
|
|
7084
|
+
static isMainFragment(type: IReadOnlyTypeBase, storeObject: StoreObjectIdentifier): boolean;
|
|
7085
7085
|
}
|
|
7086
7086
|
|
|
7087
7087
|
|