@tsonic/efcore 10.0.11 → 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 +17 -2067
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +1 -757
- 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 +1 -211
- 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.Storage.ValueConversion.Internal/internal/index.d.ts +1 -1
- 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
|
@@ -326,27 +326,8 @@ export interface Annotatable$instance extends AnnotatableBase$instance {
|
|
|
326
326
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
327
327
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
328
328
|
|
|
329
|
-
AddAnnotation(name: string, value: unknown): Annotation;
|
|
330
|
-
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
331
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
332
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
333
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
334
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
335
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
336
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
337
329
|
EnsureMutable(): void;
|
|
338
330
|
EnsureReadOnly(): void;
|
|
339
|
-
FindAnnotation(name: string): Annotation | undefined;
|
|
340
|
-
FindAnnotation(name: string): IAnnotation | undefined;
|
|
341
|
-
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
342
|
-
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
343
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
344
|
-
GetAnnotations(): IEnumerable_1<Annotation>;
|
|
345
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
346
|
-
GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
|
|
347
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
348
|
-
SetAnnotation(name: string, value: unknown): void;
|
|
349
|
-
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
350
331
|
}
|
|
351
332
|
|
|
352
333
|
|
|
@@ -471,29 +452,18 @@ export interface ConventionAnnotatable$instance extends Annotatable$instance {
|
|
|
471
452
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionAnnotatable: never;
|
|
472
453
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
473
454
|
|
|
474
|
-
AddAnnotation(name: string, value: unknown):
|
|
455
|
+
AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
|
|
475
456
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
476
457
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
477
|
-
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
478
|
-
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
479
|
-
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
480
|
-
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
481
|
-
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
482
|
-
AnnotationsToDebugString(indent?: int): string;
|
|
483
458
|
CreateAnnotation(name: string, value: unknown): Annotation;
|
|
484
|
-
FindAnnotation(name: string):
|
|
459
|
+
FindAnnotation(name: string): ConventionAnnotation | undefined;
|
|
485
460
|
FindAnnotation(name: string): Annotation | undefined;
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
489
|
-
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
490
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
491
|
-
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
461
|
+
GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
|
|
462
|
+
GetAnnotations(): IEnumerable_1<Annotation>;
|
|
492
463
|
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
493
464
|
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
494
|
-
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
495
|
-
RemoveAnnotation(name: string): Annotation | undefined;
|
|
496
465
|
SetAnnotation(name: string, value: unknown): void;
|
|
466
|
+
SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
497
467
|
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
498
468
|
SetOrRemoveAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
|
|
499
469
|
}
|
|
@@ -728,7 +698,6 @@ export interface EntityFrameworkRelationalServicesBuilder$instance extends Entit
|
|
|
728
698
|
|
|
729
699
|
TryAddCoreServices(): EntityFrameworkServicesBuilder;
|
|
730
700
|
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
731
|
-
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
732
701
|
}
|
|
733
702
|
|
|
734
703
|
|
|
@@ -1149,12 +1118,11 @@ export interface __RelationalDbContextOptionsBuilder_2$views<TBuilder extends Re
|
|
|
1149
1118
|
export type RelationalDbContextOptionsBuilder_2<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> = RelationalDbContextOptionsBuilder_2$instance<TBuilder, TExtension> & __RelationalDbContextOptionsBuilder_2$views<TBuilder, TExtension>;
|
|
1150
1119
|
|
|
1151
1120
|
|
|
1152
|
-
export interface RelationalModelCustomizer$instance extends ModelCustomizer$instance {
|
|
1121
|
+
export interface RelationalModelCustomizer$instance extends ModelCustomizer$instance, IModelCustomizer$instance {
|
|
1153
1122
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelCustomizer: never;
|
|
1154
1123
|
|
|
1155
1124
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
1156
1125
|
|
|
1157
|
-
Customize(modelBuilder: ModelBuilder, context: DbContext): void;
|
|
1158
1126
|
}
|
|
1159
1127
|
|
|
1160
1128
|
|
|
@@ -1200,7 +1168,6 @@ export interface RelationalModelRuntimeInitializer$instance extends ModelRuntime
|
|
|
1200
1168
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelRuntimeInitializer: never;
|
|
1201
1169
|
|
|
1202
1170
|
readonly RelationalDependencies: RelationalModelRuntimeInitializerDependencies;
|
|
1203
|
-
Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
|
|
1204
1171
|
InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
|
|
1205
1172
|
}
|
|
1206
1173
|
|
|
@@ -1249,7 +1216,6 @@ export interface RelationalModelValidator$instance extends ModelValidator$instan
|
|
|
1249
1216
|
IsRedundant(foreignKey: IForeignKey): boolean;
|
|
1250
1217
|
ThrowPropertyNotMappedException(propertyType: string, typeBase: IConventionTypeBase, unmappedProperty: IConventionProperty): void;
|
|
1251
1218
|
Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1252
|
-
Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1253
1219
|
ValidateBoolsWithDefaults(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1254
1220
|
ValidateCompatible(property: IProperty, duplicateProperty: IProperty, columnName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1255
1221
|
ValidateCompatible(foreignKey: IForeignKey, duplicateForeignKey: IForeignKey, foreignKeyName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
@@ -1258,12 +1224,10 @@ export interface RelationalModelValidator$instance extends ModelValidator$instan
|
|
|
1258
1224
|
ValidateCompatible(checkConstraint: ICheckConstraint, duplicateCheckConstraint: ICheckConstraint, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1259
1225
|
ValidateCompatible(trigger: ITrigger, duplicateTrigger: ITrigger, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1260
1226
|
ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1261
|
-
ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1262
1227
|
ValidateDbFunctions(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1263
1228
|
ValidateDefaultValuesOnKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1264
1229
|
ValidateIndexProperties(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1265
1230
|
ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1266
|
-
ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1267
1231
|
ValidateJsonEntities(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1268
1232
|
ValidateJsonEntityKey(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
|
|
1269
1233
|
ValidateJsonEntityNavigations(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
|
|
@@ -1272,13 +1236,10 @@ export interface RelationalModelValidator$instance extends ModelValidator$instan
|
|
|
1272
1236
|
ValidateMappingFragments(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1273
1237
|
ValidateMappingStrategy(entityType: IEntityType, mappingStrategy: string): void;
|
|
1274
1238
|
ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1275
|
-
ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1276
|
-
ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1277
1239
|
ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1278
1240
|
ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1279
1241
|
ValidatePropertyMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1280
1242
|
ValidatePropertyMapping(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1281
|
-
ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1282
1243
|
ValidatePropertyOverrides(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1283
1244
|
ValidateSharedCheckConstraintCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1284
1245
|
ValidateSharedColumnsCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
@@ -1293,7 +1254,6 @@ export interface RelationalModelValidator$instance extends ModelValidator$instan
|
|
|
1293
1254
|
ValidateSqlQueries(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1294
1255
|
ValidateStoredProcedures(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1295
1256
|
ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1296
|
-
ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1297
1257
|
ValidateValueGeneration(entityType: IEntityType, key: IKey, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1298
1258
|
}
|
|
1299
1259
|
|
|
@@ -5452,266 +5452,6 @@
|
|
|
5452
5452
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5453
5453
|
"isExtensionMethod": false,
|
|
5454
5454
|
"sourceInterface": "Microsoft.EntityFrameworkCore.Infrastructure.IResettableService"
|
|
5455
|
-
},
|
|
5456
|
-
{
|
|
5457
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::Add(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5458
|
-
"clrName": "Add",
|
|
5459
|
-
"metadataToken": 0,
|
|
5460
|
-
"canonicalSignature": "(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5461
|
-
"normalizedSignature": "Add|(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1|static=false",
|
|
5462
|
-
"emitScope": "ClassSurface",
|
|
5463
|
-
"provenance": "BaseOverload",
|
|
5464
|
-
"arity": 0,
|
|
5465
|
-
"parameterCount": 1,
|
|
5466
|
-
"isStatic": false,
|
|
5467
|
-
"isAbstract": false,
|
|
5468
|
-
"isVirtual": true,
|
|
5469
|
-
"isOverride": false,
|
|
5470
|
-
"isSealed": false,
|
|
5471
|
-
"visibility": "Public",
|
|
5472
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5473
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5474
|
-
"isExtensionMethod": false
|
|
5475
|
-
},
|
|
5476
|
-
{
|
|
5477
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::AddAsync(TEntity,System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1",
|
|
5478
|
-
"clrName": "AddAsync",
|
|
5479
|
-
"metadataToken": 0,
|
|
5480
|
-
"canonicalSignature": "(TEntity,System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1",
|
|
5481
|
-
"normalizedSignature": "AddAsync|(TEntity,System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1|static=false",
|
|
5482
|
-
"emitScope": "ClassSurface",
|
|
5483
|
-
"provenance": "BaseOverload",
|
|
5484
|
-
"arity": 0,
|
|
5485
|
-
"parameterCount": 2,
|
|
5486
|
-
"isStatic": false,
|
|
5487
|
-
"isAbstract": false,
|
|
5488
|
-
"isVirtual": true,
|
|
5489
|
-
"isOverride": false,
|
|
5490
|
-
"isSealed": false,
|
|
5491
|
-
"visibility": "Public",
|
|
5492
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5493
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5494
|
-
"isExtensionMethod": false
|
|
5495
|
-
},
|
|
5496
|
-
{
|
|
5497
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::AddRange(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5498
|
-
"clrName": "AddRange",
|
|
5499
|
-
"metadataToken": 0,
|
|
5500
|
-
"canonicalSignature": "(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5501
|
-
"normalizedSignature": "AddRange|(System.Collections.Generic.IEnumerable_1):System.Void|static=false",
|
|
5502
|
-
"emitScope": "ClassSurface",
|
|
5503
|
-
"provenance": "BaseOverload",
|
|
5504
|
-
"arity": 0,
|
|
5505
|
-
"parameterCount": 1,
|
|
5506
|
-
"isStatic": false,
|
|
5507
|
-
"isAbstract": false,
|
|
5508
|
-
"isVirtual": true,
|
|
5509
|
-
"isOverride": false,
|
|
5510
|
-
"isSealed": false,
|
|
5511
|
-
"visibility": "Public",
|
|
5512
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5513
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5514
|
-
"isExtensionMethod": false
|
|
5515
|
-
},
|
|
5516
|
-
{
|
|
5517
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::AddRangeAsync(System.Collections.Generic.IEnumerable_1,System.Threading.CancellationToken):System.Threading.Tasks.Task",
|
|
5518
|
-
"clrName": "AddRangeAsync",
|
|
5519
|
-
"metadataToken": 0,
|
|
5520
|
-
"canonicalSignature": "(System.Collections.Generic.IEnumerable_1,System.Threading.CancellationToken):System.Threading.Tasks.Task",
|
|
5521
|
-
"normalizedSignature": "AddRangeAsync|(System.Collections.Generic.IEnumerable_1,System.Threading.CancellationToken):System.Threading.Tasks.Task|static=false",
|
|
5522
|
-
"emitScope": "ClassSurface",
|
|
5523
|
-
"provenance": "BaseOverload",
|
|
5524
|
-
"arity": 0,
|
|
5525
|
-
"parameterCount": 2,
|
|
5526
|
-
"isStatic": false,
|
|
5527
|
-
"isAbstract": false,
|
|
5528
|
-
"isVirtual": true,
|
|
5529
|
-
"isOverride": false,
|
|
5530
|
-
"isSealed": false,
|
|
5531
|
-
"visibility": "Public",
|
|
5532
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5533
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5534
|
-
"isExtensionMethod": false
|
|
5535
|
-
},
|
|
5536
|
-
{
|
|
5537
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::Attach(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5538
|
-
"clrName": "Attach",
|
|
5539
|
-
"metadataToken": 0,
|
|
5540
|
-
"canonicalSignature": "(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5541
|
-
"normalizedSignature": "Attach|(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1|static=false",
|
|
5542
|
-
"emitScope": "ClassSurface",
|
|
5543
|
-
"provenance": "BaseOverload",
|
|
5544
|
-
"arity": 0,
|
|
5545
|
-
"parameterCount": 1,
|
|
5546
|
-
"isStatic": false,
|
|
5547
|
-
"isAbstract": false,
|
|
5548
|
-
"isVirtual": true,
|
|
5549
|
-
"isOverride": false,
|
|
5550
|
-
"isSealed": false,
|
|
5551
|
-
"visibility": "Public",
|
|
5552
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5553
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5554
|
-
"isExtensionMethod": false
|
|
5555
|
-
},
|
|
5556
|
-
{
|
|
5557
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::AttachRange(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5558
|
-
"clrName": "AttachRange",
|
|
5559
|
-
"metadataToken": 0,
|
|
5560
|
-
"canonicalSignature": "(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5561
|
-
"normalizedSignature": "AttachRange|(System.Collections.Generic.IEnumerable_1):System.Void|static=false",
|
|
5562
|
-
"emitScope": "ClassSurface",
|
|
5563
|
-
"provenance": "BaseOverload",
|
|
5564
|
-
"arity": 0,
|
|
5565
|
-
"parameterCount": 1,
|
|
5566
|
-
"isStatic": false,
|
|
5567
|
-
"isAbstract": false,
|
|
5568
|
-
"isVirtual": true,
|
|
5569
|
-
"isOverride": false,
|
|
5570
|
-
"isSealed": false,
|
|
5571
|
-
"visibility": "Public",
|
|
5572
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5573
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5574
|
-
"isExtensionMethod": false
|
|
5575
|
-
},
|
|
5576
|
-
{
|
|
5577
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::Entry(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5578
|
-
"clrName": "Entry",
|
|
5579
|
-
"metadataToken": 0,
|
|
5580
|
-
"canonicalSignature": "(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5581
|
-
"normalizedSignature": "Entry|(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1|static=false",
|
|
5582
|
-
"emitScope": "ClassSurface",
|
|
5583
|
-
"provenance": "BaseOverload",
|
|
5584
|
-
"arity": 0,
|
|
5585
|
-
"parameterCount": 1,
|
|
5586
|
-
"isStatic": false,
|
|
5587
|
-
"isAbstract": false,
|
|
5588
|
-
"isVirtual": true,
|
|
5589
|
-
"isOverride": false,
|
|
5590
|
-
"isSealed": false,
|
|
5591
|
-
"visibility": "Public",
|
|
5592
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5593
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5594
|
-
"isExtensionMethod": false
|
|
5595
|
-
},
|
|
5596
|
-
{
|
|
5597
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::FindAsync(System.Object[]):System.Threading.Tasks.ValueTask_1",
|
|
5598
|
-
"clrName": "FindAsync",
|
|
5599
|
-
"metadataToken": 0,
|
|
5600
|
-
"canonicalSignature": "(System.Object[]):System.Threading.Tasks.ValueTask_1",
|
|
5601
|
-
"normalizedSignature": "FindAsync|(System.Object[]):System.Threading.Tasks.ValueTask_1|static=false",
|
|
5602
|
-
"emitScope": "ClassSurface",
|
|
5603
|
-
"provenance": "BaseOverload",
|
|
5604
|
-
"arity": 0,
|
|
5605
|
-
"parameterCount": 1,
|
|
5606
|
-
"isStatic": false,
|
|
5607
|
-
"isAbstract": false,
|
|
5608
|
-
"isVirtual": true,
|
|
5609
|
-
"isOverride": false,
|
|
5610
|
-
"isSealed": false,
|
|
5611
|
-
"visibility": "Public",
|
|
5612
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5613
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5614
|
-
"isExtensionMethod": false
|
|
5615
|
-
},
|
|
5616
|
-
{
|
|
5617
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::FindAsync(System.Object[],System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1",
|
|
5618
|
-
"clrName": "FindAsync",
|
|
5619
|
-
"metadataToken": 0,
|
|
5620
|
-
"canonicalSignature": "(System.Object[],System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1",
|
|
5621
|
-
"normalizedSignature": "FindAsync|(System.Object[],System.Threading.CancellationToken):System.Threading.Tasks.ValueTask_1|static=false",
|
|
5622
|
-
"emitScope": "ClassSurface",
|
|
5623
|
-
"provenance": "BaseOverload",
|
|
5624
|
-
"arity": 0,
|
|
5625
|
-
"parameterCount": 2,
|
|
5626
|
-
"isStatic": false,
|
|
5627
|
-
"isAbstract": false,
|
|
5628
|
-
"isVirtual": true,
|
|
5629
|
-
"isOverride": false,
|
|
5630
|
-
"isSealed": false,
|
|
5631
|
-
"visibility": "Public",
|
|
5632
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5633
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5634
|
-
"isExtensionMethod": false
|
|
5635
|
-
},
|
|
5636
|
-
{
|
|
5637
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::Remove(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5638
|
-
"clrName": "Remove",
|
|
5639
|
-
"metadataToken": 0,
|
|
5640
|
-
"canonicalSignature": "(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5641
|
-
"normalizedSignature": "Remove|(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1|static=false",
|
|
5642
|
-
"emitScope": "ClassSurface",
|
|
5643
|
-
"provenance": "BaseOverload",
|
|
5644
|
-
"arity": 0,
|
|
5645
|
-
"parameterCount": 1,
|
|
5646
|
-
"isStatic": false,
|
|
5647
|
-
"isAbstract": false,
|
|
5648
|
-
"isVirtual": true,
|
|
5649
|
-
"isOverride": false,
|
|
5650
|
-
"isSealed": false,
|
|
5651
|
-
"visibility": "Public",
|
|
5652
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5653
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5654
|
-
"isExtensionMethod": false
|
|
5655
|
-
},
|
|
5656
|
-
{
|
|
5657
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::RemoveRange(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5658
|
-
"clrName": "RemoveRange",
|
|
5659
|
-
"metadataToken": 0,
|
|
5660
|
-
"canonicalSignature": "(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5661
|
-
"normalizedSignature": "RemoveRange|(System.Collections.Generic.IEnumerable_1):System.Void|static=false",
|
|
5662
|
-
"emitScope": "ClassSurface",
|
|
5663
|
-
"provenance": "BaseOverload",
|
|
5664
|
-
"arity": 0,
|
|
5665
|
-
"parameterCount": 1,
|
|
5666
|
-
"isStatic": false,
|
|
5667
|
-
"isAbstract": false,
|
|
5668
|
-
"isVirtual": true,
|
|
5669
|
-
"isOverride": false,
|
|
5670
|
-
"isSealed": false,
|
|
5671
|
-
"visibility": "Public",
|
|
5672
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5673
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5674
|
-
"isExtensionMethod": false
|
|
5675
|
-
},
|
|
5676
|
-
{
|
|
5677
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::Update(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5678
|
-
"clrName": "Update",
|
|
5679
|
-
"metadataToken": 0,
|
|
5680
|
-
"canonicalSignature": "(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1",
|
|
5681
|
-
"normalizedSignature": "Update|(TEntity):Microsoft.EntityFrameworkCore.ChangeTracking.EntityEntry_1|static=false",
|
|
5682
|
-
"emitScope": "ClassSurface",
|
|
5683
|
-
"provenance": "BaseOverload",
|
|
5684
|
-
"arity": 0,
|
|
5685
|
-
"parameterCount": 1,
|
|
5686
|
-
"isStatic": false,
|
|
5687
|
-
"isAbstract": false,
|
|
5688
|
-
"isVirtual": true,
|
|
5689
|
-
"isOverride": false,
|
|
5690
|
-
"isSealed": false,
|
|
5691
|
-
"visibility": "Public",
|
|
5692
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5693
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5694
|
-
"isExtensionMethod": false
|
|
5695
|
-
},
|
|
5696
|
-
{
|
|
5697
|
-
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601::UpdateRange(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5698
|
-
"clrName": "UpdateRange",
|
|
5699
|
-
"metadataToken": 0,
|
|
5700
|
-
"canonicalSignature": "(System.Collections.Generic.IEnumerable_1):System.Void",
|
|
5701
|
-
"normalizedSignature": "UpdateRange|(System.Collections.Generic.IEnumerable_1):System.Void|static=false",
|
|
5702
|
-
"emitScope": "ClassSurface",
|
|
5703
|
-
"provenance": "BaseOverload",
|
|
5704
|
-
"arity": 0,
|
|
5705
|
-
"parameterCount": 1,
|
|
5706
|
-
"isStatic": false,
|
|
5707
|
-
"isAbstract": false,
|
|
5708
|
-
"isVirtual": true,
|
|
5709
|
-
"isOverride": false,
|
|
5710
|
-
"isSealed": false,
|
|
5711
|
-
"visibility": "Public",
|
|
5712
|
-
"declaringClrType": "Microsoft.EntityFrameworkCore.Internal.InternalDbSet\u00601",
|
|
5713
|
-
"declaringAssemblyName": "Microsoft.EntityFrameworkCore",
|
|
5714
|
-
"isExtensionMethod": false
|
|
5715
5455
|
}
|
|
5716
5456
|
],
|
|
5717
5457
|
"properties": [
|
|
@@ -625,37 +625,24 @@ export interface InternalDbSet_1$instance<TEntity> extends DbSet_1<TEntity>, Mic
|
|
|
625
625
|
readonly EntityType: IEntityType;
|
|
626
626
|
readonly Local: LocalView_1<TEntity>;
|
|
627
627
|
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
628
|
-
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
629
|
-
AddAsync(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
630
628
|
AddAsync(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
631
629
|
AddRange(...entities: TEntity[]): void;
|
|
632
630
|
AddRange(entities: IEnumerable_1<TEntity>): void;
|
|
633
|
-
AddRange(entities: IEnumerable_1<TEntity>): void;
|
|
634
631
|
AddRangeAsync(...entities: TEntity[]): Task;
|
|
635
632
|
AddRangeAsync(entities: IEnumerable_1<TEntity>, cancellationToken?: CancellationToken): Task;
|
|
636
|
-
AddRangeAsync(entities: IEnumerable_1<TEntity>, cancellationToken?: CancellationToken): Task;
|
|
637
|
-
Attach(entity: TEntity): EntityEntry_1<TEntity>;
|
|
638
633
|
Attach(entity: TEntity): EntityEntry_1<TEntity>;
|
|
639
634
|
AttachRange(...entities: TEntity[]): void;
|
|
640
635
|
AttachRange(entities: IEnumerable_1<TEntity>): void;
|
|
641
|
-
AttachRange(entities: IEnumerable_1<TEntity>): void;
|
|
642
|
-
Entry(entity: TEntity): EntityEntry_1<TEntity>;
|
|
643
636
|
Entry(entity: TEntity): EntityEntry_1<TEntity>;
|
|
644
637
|
Find(...keyValues: unknown[]): TEntity | undefined;
|
|
645
638
|
FindAsync(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
646
639
|
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
647
|
-
FindAsync(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
648
|
-
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
649
|
-
Remove(entity: TEntity): EntityEntry_1<TEntity>;
|
|
650
640
|
Remove(entity: TEntity): EntityEntry_1<TEntity>;
|
|
651
641
|
RemoveRange(...entities: TEntity[]): void;
|
|
652
642
|
RemoveRange(entities: IEnumerable_1<TEntity>): void;
|
|
653
|
-
RemoveRange(entities: IEnumerable_1<TEntity>): void;
|
|
654
|
-
Update(entity: TEntity): EntityEntry_1<TEntity>;
|
|
655
643
|
Update(entity: TEntity): EntityEntry_1<TEntity>;
|
|
656
644
|
UpdateRange(...entities: TEntity[]): void;
|
|
657
645
|
UpdateRange(entities: IEnumerable_1<TEntity>): void;
|
|
658
|
-
UpdateRange(entities: IEnumerable_1<TEntity>): void;
|
|
659
646
|
}
|
|
660
647
|
|
|
661
648
|
|