@tsonic/efcore 10.0.12 → 10.0.16
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 +0 -500
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +22 -5
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +0 -480
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +16 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +981 -2411
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -70
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +0 -2
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +2 -22
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/bindings.json +0 -528
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +14 -18
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +900 -1800
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -46
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +0 -260
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -13
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +9011 -16771
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1 -376
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +7901 -14241
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +361 -47
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +350 -2250
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +51 -91
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +44938 -86844
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +15 -2065
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +0 -756
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +3 -183
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +3 -4
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +0 -160
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +2 -3
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +14 -794
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +26 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/bindings.json +1610 -5810
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +0 -210
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +129 -309
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +12 -52
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -3
- package/Microsoft.EntityFrameworkCore.Storage.Json/bindings.json +26 -1406
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Update/bindings.json +0 -86
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +0 -4
- package/Microsoft.EntityFrameworkCore.Update.Internal/bindings.json +0 -512
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +0 -18
- package/Microsoft.EntityFrameworkCore.ValueGeneration/bindings.json +6 -272
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +10 -13
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/bindings.json +0 -660
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +32 -33
- package/README.md +119 -2
- package/package.json +4 -4
|
@@ -432,8 +432,6 @@ export interface CompositeDependentKeyValueFactory$instance extends CompositeVal
|
|
|
432
432
|
|
|
433
433
|
CreateDependentEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown | undefined;
|
|
434
434
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
435
|
-
TryCreateFromCurrentValues(entry: IUpdateEntry, key: IReadOnlyList_1<unknown>): boolean;
|
|
436
|
-
TryCreateFromCurrentValues(entry: IUpdateEntry, key: unknown): boolean;
|
|
437
435
|
}
|
|
438
436
|
|
|
439
437
|
|
|
@@ -464,11 +462,8 @@ export interface CompositePrincipalKeyValueFactory$instance extends CompositeVal
|
|
|
464
462
|
CreateFromKeyValues(keyValues: IReadOnlyList_1<unknown>): unknown | undefined;
|
|
465
463
|
CreateFromOriginalValues(entry: IUpdateEntry): IReadOnlyList_1<unknown | undefined>;
|
|
466
464
|
CreateFromRelationshipSnapshot(entry: IUpdateEntry): IReadOnlyList_1<unknown | undefined>;
|
|
467
|
-
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
468
465
|
FindNullPropertyInCurrentValues(entry: IUpdateEntry): IProperty;
|
|
469
466
|
FindNullPropertyInKeyValues(keyValues: IReadOnlyList_1<unknown>): IProperty;
|
|
470
|
-
TryCreateFromCurrentValues(entry: IUpdateEntry, key: IReadOnlyList_1<unknown>): boolean;
|
|
471
|
-
TryCreateFromCurrentValues(entry: IUpdateEntry, key: unknown): boolean;
|
|
472
467
|
}
|
|
473
468
|
|
|
474
469
|
|
|
@@ -870,40 +865,18 @@ export interface InternalComplexEntry$instance extends InternalEntryBase$instanc
|
|
|
870
865
|
OriginalOrdinal: int;
|
|
871
866
|
readonly StateManager: IStateManager;
|
|
872
867
|
AcceptChanges(): void;
|
|
873
|
-
DiscardStoreGeneratedValues(): void;
|
|
874
|
-
FlaggedAsStoreGenerated(propertyIndex: int): boolean;
|
|
875
|
-
GetComplexCollectionEntries(property: IComplexProperty): IReadOnlyList_1<InternalComplexEntry | undefined>;
|
|
876
|
-
GetComplexCollectionEntry(property: IComplexProperty, ordinal: int): InternalComplexEntry;
|
|
877
|
-
GetCurrentValue<TProperty>(propertyBase: IPropertyBase): TProperty;
|
|
878
|
-
GetCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
879
|
-
GetFlattenedComplexEntries(): IEnumerable_1<InternalComplexEntry>;
|
|
880
|
-
GetOrdinals(): IReadOnlyList_1<System_Internal.Int32>;
|
|
881
868
|
GetOrdinals(): IReadOnlyList_1<System_Internal.Int32>;
|
|
882
869
|
GetOriginalValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
883
870
|
GetOriginalValue<TProperty>(property: IProperty): TProperty;
|
|
884
871
|
GetPropertyPath(property: IReadOnlyProperty): string;
|
|
885
872
|
GetPropertyPath(withElement?: boolean): string;
|
|
886
|
-
HandleConceptualNulls(sensitiveLoggingEnabled: boolean, force: boolean, isCascadeDelete: boolean): void;
|
|
887
|
-
HasExplicitValue(property: IProperty): boolean;
|
|
888
|
-
IsModified(property: IProperty): boolean;
|
|
889
|
-
IsModified(property: IComplexProperty): boolean;
|
|
890
|
-
MarkAsTemporary(property: IProperty, temporary: boolean): void;
|
|
891
|
-
MarkUnknown(property: IProperty): void;
|
|
892
|
-
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
893
|
-
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
894
873
|
OnStateChanged(oldState: EntityState): void;
|
|
895
874
|
OnStateChanging(newState: EntityState): void;
|
|
896
|
-
|
|
875
|
+
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
897
876
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
898
877
|
ReadPropertyValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
899
|
-
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
900
878
|
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
901
879
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable_1<EntityState>, fallbackState?: Nullable_1<EntityState>): void;
|
|
902
|
-
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
903
|
-
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
904
|
-
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
905
|
-
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
906
|
-
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
907
880
|
ToString(): string;
|
|
908
881
|
}
|
|
909
882
|
|
|
@@ -939,58 +912,30 @@ export interface InternalEntityEntry$instance extends InternalEntryBase$instance
|
|
|
939
912
|
AddRangeToCollectionSnapshot(navigation: INavigationBase, addedEntities: IEnumerable_1<unknown>): void;
|
|
940
913
|
AddToCollection(navigationBase: INavigationBase, value: unknown, forMaterialization: boolean): boolean;
|
|
941
914
|
AddToCollectionSnapshot(navigation: INavigationBase, addedEntity: unknown): void;
|
|
942
|
-
CanHaveOriginalValue(propertyBase: IPropertyBase): boolean;
|
|
943
915
|
CollectionContains(navigationBase: INavigationBase, value: unknown): boolean;
|
|
944
|
-
DiscardStoreGeneratedValues(): void;
|
|
945
916
|
EnsureRelationshipSnapshot(): void;
|
|
946
|
-
FlaggedAsStoreGenerated(propertyIndex: int): boolean;
|
|
947
|
-
GetComplexCollectionEntries(property: IComplexProperty): IReadOnlyList_1<InternalComplexEntry | undefined>;
|
|
948
|
-
GetComplexCollectionEntry(property: IComplexProperty, ordinal: int): InternalComplexEntry;
|
|
949
|
-
GetCurrentValue<TProperty>(propertyBase: IPropertyBase): TProperty;
|
|
950
|
-
GetCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
951
|
-
GetFlattenedComplexEntries(): IEnumerable_1<InternalComplexEntry>;
|
|
952
917
|
GetOrCreateCollection(navigationBase: INavigationBase, forMaterialization: boolean): unknown;
|
|
953
|
-
GetOrdinals(): IReadOnlyList_1<System_Internal.Int32>;
|
|
954
|
-
GetOriginalValue<TProperty>(property: IProperty): TProperty;
|
|
955
|
-
GetOriginalValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
956
918
|
GetRelationshipSnapshotValue<TProperty>(propertyBase: IPropertyBase): TProperty;
|
|
957
919
|
GetRelationshipSnapshotValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
958
920
|
HandleConceptualNulls(sensitiveLoggingEnabled: boolean, force: boolean, isCascadeDelete: boolean): void;
|
|
959
921
|
HandleINotifyCollectionChanged(sender: unknown, eventArgs: NotifyCollectionChangedEventArgs): void;
|
|
960
922
|
HandleINotifyPropertyChanged(sender: unknown, eventArgs: PropertyChangedEventArgs): void;
|
|
961
923
|
HandleINotifyPropertyChanging(sender: unknown, eventArgs: PropertyChangingEventArgs): void;
|
|
962
|
-
HasExplicitValue(property: IProperty): boolean;
|
|
963
924
|
IsLoaded(navigation: INavigationBase): boolean;
|
|
964
|
-
IsModified(property: IProperty): boolean;
|
|
965
|
-
IsModified(property: IComplexProperty): boolean;
|
|
966
|
-
MarkAsTemporary(property: IProperty, temporary: boolean): void;
|
|
967
925
|
MarkUnchangedFromQuery(): void;
|
|
968
|
-
MarkUnknown(property: IProperty): void;
|
|
969
|
-
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
970
|
-
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
971
926
|
OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
972
927
|
OnStateChanged(oldState: EntityState): void;
|
|
973
928
|
OnStateChanging(newState: EntityState): void;
|
|
974
|
-
PrepareToSave(): IInternalEntry;
|
|
975
929
|
PropagateValue(principalEntry: InternalEntityEntry, principalProperty: IProperty, dependentProperty: IProperty, isMaterialization?: boolean, setModified?: boolean): void;
|
|
976
|
-
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
977
930
|
ReadRelationshipSnapshotValue<T>(propertyBase: IPropertyBase, relationshipSnapshotIndex: int): T;
|
|
978
|
-
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
979
931
|
RemoveFromCollection(navigationBase: INavigationBase, value: unknown): boolean;
|
|
980
932
|
RemoveFromCollectionSnapshot(navigation: INavigationBase, removedEntity: unknown): void;
|
|
981
933
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable_1<EntityState>, fallbackState?: Nullable_1<EntityState>): void;
|
|
982
|
-
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable_1<EntityState>, fallbackState?: Nullable_1<EntityState>): void;
|
|
983
934
|
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
984
935
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable_1<EntityState>, fallbackState?: Nullable_1<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
985
|
-
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable_1<EntityState>, fallbackState?: Nullable_1<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
986
936
|
SetIsLoaded(navigation: INavigationBase, loaded?: boolean): void;
|
|
987
|
-
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
988
|
-
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
989
|
-
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
990
|
-
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
991
937
|
SetRelationshipSnapshotValue(propertyBase: IPropertyBase, value: unknown): void;
|
|
992
938
|
SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
993
|
-
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
994
939
|
ToEntityEntry(): EntityEntry;
|
|
995
940
|
ToString(): string;
|
|
996
941
|
}
|
|
@@ -1262,16 +1207,7 @@ export interface NullableKeyIdentityMap_1$instance<TKey> extends IdentityMap_1$i
|
|
|
1262
1207
|
Add(entry: InternalEntityEntry): void;
|
|
1263
1208
|
Add(keyValues: IReadOnlyList_1<unknown>, entry: InternalEntityEntry): void;
|
|
1264
1209
|
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
1265
|
-
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
1266
|
-
All(): IEnumerable_1<InternalEntityEntry>;
|
|
1267
|
-
Clear(): void;
|
|
1268
|
-
GetDependentsMap(foreignKey: IForeignKey): IDependentsMap;
|
|
1269
1210
|
RemoveUsingRelationshipSnapshot(entry: InternalEntityEntry): void;
|
|
1270
|
-
TryGetEntry(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|
|
1271
|
-
TryGetEntry(keyValues: IReadOnlyList_1<unknown>): InternalEntityEntry | undefined;
|
|
1272
|
-
TryGetEntry(keyValues: IReadOnlyList_1<unknown>, throwOnNullKey: boolean, hasNullKey: boolean): InternalEntityEntry | undefined;
|
|
1273
|
-
TryGetEntry(foreignKey: IForeignKey, dependentEntry: InternalEntityEntry): InternalEntityEntry | undefined;
|
|
1274
|
-
TryGetEntryTyped(keyValue: TKey): InternalEntityEntry | undefined;
|
|
1275
1211
|
}
|
|
1276
1212
|
|
|
1277
1213
|
|
|
@@ -1454,7 +1390,6 @@ export interface SimpleFullyNullableDependentKeyValueFactory_1$instance<TKey> ex
|
|
|
1454
1390
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1455
1391
|
|
|
1456
1392
|
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
1457
|
-
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1458
1393
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1459
1394
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1460
1395
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1482,7 +1417,6 @@ export interface SimpleNonNullableDependentKeyValueFactory_1$instance<TKey> exte
|
|
|
1482
1417
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1483
1418
|
|
|
1484
1419
|
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
1485
|
-
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1486
1420
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1487
1421
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1488
1422
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1510,7 +1444,6 @@ export interface SimpleNullableDependentKeyValueFactory_1$instance<TKey extends
|
|
|
1510
1444
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1511
1445
|
|
|
1512
1446
|
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
1513
|
-
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1514
1447
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1515
1448
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1516
1449
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1538,7 +1471,6 @@ export interface SimpleNullablePrincipalDependentKeyValueFactory_2$instance<TKey
|
|
|
1538
1471
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1539
1472
|
|
|
1540
1473
|
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
1541
|
-
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1542
1474
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1543
1475
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
1544
1476
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -2496,7 +2428,6 @@ export interface TemporaryValuesFactoryFactory$instance extends SidecarValuesFac
|
|
|
2496
2428
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_TemporaryValuesFactoryFactory: never;
|
|
2497
2429
|
|
|
2498
2430
|
CreateSnapshotExpression(entityType: Type, parameter: Expression, types: Type[], propertyBases: IList_1<IPropertyBase>): Expression;
|
|
2499
|
-
CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList_1<IPropertyBase>): Expression;
|
|
2500
2431
|
}
|
|
2501
2432
|
|
|
2502
2433
|
|
|
@@ -4322,26 +4322,6 @@
|
|
|
4322
4322
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.EntityFrameworkDesignServicesBuilder",
|
|
4323
4323
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
4324
4324
|
"isExtensionMethod": false
|
|
4325
|
-
},
|
|
4326
|
-
{
|
|
4327
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Design.EntityFrameworkDesignServicesBuilder::TryGetServiceCharacteristics(System.Type):System.Nullable_1",
|
|
4328
|
-
"clrName": "TryGetServiceCharacteristics",
|
|
4329
|
-
"metadataToken": 0,
|
|
4330
|
-
"canonicalSignature": "(System.Type):System.Nullable_1",
|
|
4331
|
-
"normalizedSignature": "TryGetServiceCharacteristics|(System.Type):System.Nullable_1|static=false",
|
|
4332
|
-
"emitScope": "ClassSurface",
|
|
4333
|
-
"provenance": "BaseOverload",
|
|
4334
|
-
"arity": 0,
|
|
4335
|
-
"parameterCount": 1,
|
|
4336
|
-
"isStatic": false,
|
|
4337
|
-
"isAbstract": false,
|
|
4338
|
-
"isVirtual": true,
|
|
4339
|
-
"isOverride": false,
|
|
4340
|
-
"isSealed": false,
|
|
4341
|
-
"visibility": "Protected",
|
|
4342
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.EntityFrameworkDesignServicesBuilder",
|
|
4343
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
4344
|
-
"isExtensionMethod": false
|
|
4345
4325
|
}
|
|
4346
4326
|
],
|
|
4347
4327
|
"properties": [],
|
|
@@ -4429,26 +4409,6 @@
|
|
|
4429
4409
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.EntityFrameworkRelationalDesignServicesBuilder",
|
|
4430
4410
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Relational",
|
|
4431
4411
|
"isExtensionMethod": false
|
|
4432
|
-
},
|
|
4433
|
-
{
|
|
4434
|
-
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.EntityFrameworkRelationalDesignServicesBuilder::TryGetServiceCharacteristics(System.Type):System.Nullable_1",
|
|
4435
|
-
"clrName": "TryGetServiceCharacteristics",
|
|
4436
|
-
"metadataToken": 0,
|
|
4437
|
-
"canonicalSignature": "(System.Type):System.Nullable_1",
|
|
4438
|
-
"normalizedSignature": "TryGetServiceCharacteristics|(System.Type):System.Nullable_1|static=false",
|
|
4439
|
-
"emitScope": "ClassSurface",
|
|
4440
|
-
"provenance": "BaseOverload",
|
|
4441
|
-
"arity": 0,
|
|
4442
|
-
"parameterCount": 1,
|
|
4443
|
-
"isStatic": false,
|
|
4444
|
-
"isAbstract": false,
|
|
4445
|
-
"isVirtual": true,
|
|
4446
|
-
"isOverride": false,
|
|
4447
|
-
"isSealed": false,
|
|
4448
|
-
"visibility": "Protected",
|
|
4449
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.EntityFrameworkRelationalDesignServicesBuilder",
|
|
4450
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Relational",
|
|
4451
|
-
"isExtensionMethod": false
|
|
4452
4412
|
}
|
|
4453
4413
|
],
|
|
4454
4414
|
"properties": [],
|
|
@@ -305,7 +305,6 @@ export interface EntityFrameworkDesignServicesBuilder$instance extends EntityFra
|
|
|
305
305
|
|
|
306
306
|
TryAddCoreServices(): EntityFrameworkServicesBuilder;
|
|
307
307
|
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
308
|
-
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
309
308
|
}
|
|
310
309
|
|
|
311
310
|
|
|
@@ -322,7 +321,6 @@ export interface EntityFrameworkRelationalDesignServicesBuilder$instance extends
|
|
|
322
321
|
|
|
323
322
|
TryAddCoreServices(): EntityFrameworkServicesBuilder;
|
|
324
323
|
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
325
|
-
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
326
324
|
}
|
|
327
325
|
|
|
328
326
|
|
|
@@ -2764,7 +2764,7 @@
|
|
|
2764
2764
|
"isAbstract": false,
|
|
2765
2765
|
"isVirtual": true,
|
|
2766
2766
|
"isOverride": false,
|
|
2767
|
-
"isSealed":
|
|
2767
|
+
"isSealed": true,
|
|
2768
2768
|
"visibility": "Public",
|
|
2769
2769
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator",
|
|
2770
2770
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Relational",
|
|
@@ -2784,27 +2784,7 @@
|
|
|
2784
2784
|
"isAbstract": false,
|
|
2785
2785
|
"isVirtual": true,
|
|
2786
2786
|
"isOverride": false,
|
|
2787
|
-
"isSealed":
|
|
2788
|
-
"visibility": "Public",
|
|
2789
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator",
|
|
2790
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Relational",
|
|
2791
|
-
"isExtensionMethod": false
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator::Create(Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping,Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorParameters):System.Boolean",
|
|
2795
|
-
"clrName": "Create",
|
|
2796
|
-
"metadataToken": 0,
|
|
2797
|
-
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping,Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorParameters):System.Boolean",
|
|
2798
|
-
"normalizedSignature": "Create|(Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping,Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorParameters):System.Boolean|static=false",
|
|
2799
|
-
"emitScope": "ClassSurface",
|
|
2800
|
-
"provenance": "BaseOverload",
|
|
2801
|
-
"arity": 0,
|
|
2802
|
-
"parameterCount": 3,
|
|
2803
|
-
"isStatic": false,
|
|
2804
|
-
"isAbstract": false,
|
|
2805
|
-
"isVirtual": true,
|
|
2806
|
-
"isOverride": false,
|
|
2807
|
-
"isSealed": false,
|
|
2787
|
+
"isSealed": true,
|
|
2808
2788
|
"visibility": "Public",
|
|
2809
2789
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator",
|
|
2810
2790
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Relational",
|
|
@@ -177,7 +177,6 @@ export interface RelationalCSharpRuntimeAnnotationCodeGenerator$instance extends
|
|
|
177
177
|
Create(typeMapping: CoreTypeMapping, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters, valueComparer?: ValueComparer, keyValueComparer?: ValueComparer, providerValueComparer?: ValueComparer): boolean;
|
|
178
178
|
Create(converter: ValueConverter, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
179
179
|
Create(comparer: ValueComparer, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
180
|
-
Create(typeMapping: CoreTypeMapping, property: IProperty, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): boolean;
|
|
181
180
|
Generate(model: IModel, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
182
181
|
Generate(model: IRelationalModel, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
183
182
|
Generate(table: ITableBase, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
@@ -212,6 +211,7 @@ export interface RelationalCSharpRuntimeAnnotationCodeGenerator$instance extends
|
|
|
212
211
|
Generate(storedProcedure: IStoredProcedure, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
213
212
|
Generate(storedProcedure: IStoredProcedureParameter, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
214
213
|
Generate(storedProcedure: IStoredProcedureResultColumn, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
214
|
+
Generate(constraint: ICheckConstraint, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
215
215
|
Generate(property: IProperty, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
216
216
|
Generate(overrides: IRelationalPropertyOverrides, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|
|
217
217
|
Generate(key: IKey, parameters: CSharpRuntimeAnnotationCodeGeneratorParameters): void;
|