@tsonic/efcore 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +601 -531
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +203 -166
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +388 -327
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +221 -155
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +141 -123
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1275 -1307
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +553 -519
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +26 -22
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1576 -1343
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +359 -242
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +53 -37
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1462 -1465
- package/package.json +4 -4
|
@@ -23,19 +23,19 @@ import type { ExecutionStrategyDependencies, IDatabaseFacadeDependencies, IDatab
|
|
|
23
23
|
import type { IRowForeignKeyValueFactoryFactory, IRowIndexValueFactoryFactory, IRowKeyValueFactoryFactory } from "../../Microsoft.EntityFrameworkCore.Update.Internal/internal/index.js";
|
|
24
24
|
import * as Microsoft_EntityFrameworkCore_Internal from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
25
25
|
import type { AutoTransactionBehavior, DbContext, DbContextOptions_1, DbContextOptionsBuilder, DbLoggerCategory_Model, DbLoggerCategory_Model_Validation, IDbContextFactory_1, ModelBuilder, ModelCreationDependencies, ParameterTranslationMode, QuerySplittingBehavior, QueryTrackingBehavior } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
26
|
-
import type {
|
|
27
|
-
import type { DbConnection } from "@tsonic/dotnet/System.Data.Common.js";
|
|
28
|
-
import * as System_Diagnostics_Tracing_Internal from "@tsonic/dotnet/System.Diagnostics.Tracing.js";
|
|
29
|
-
import type { EventCommandEventArgs, EventSource } from "@tsonic/dotnet/System.Diagnostics.Tracing.js";
|
|
30
|
-
import
|
|
31
|
-
import type {
|
|
32
|
-
import type {
|
|
33
|
-
import type {
|
|
34
|
-
import
|
|
35
|
-
import type {
|
|
36
|
-
import type { IMemoryCache } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Caching.Memory.js";
|
|
37
|
-
import type { IServiceCollection, ServiceLifetime } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
38
|
-
import type { ILoggerFactory } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
26
|
+
import type { IDictionary_2, IEnumerable_1, IReadOnlyDictionary_2, IReadOnlyList_1, ISet_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
27
|
+
import type { DbConnection } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
28
|
+
import * as System_Diagnostics_Tracing_Internal from "@tsonic/dotnet/System.Diagnostics.Tracing/internal/index.js";
|
|
29
|
+
import type { EventCommandEventArgs, EventSource } from "@tsonic/dotnet/System.Diagnostics.Tracing/internal/index.js";
|
|
30
|
+
import type { Expression, LambdaExpression, MemberExpression, MethodCallExpression } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
31
|
+
import type { Assembly, MemberInfo, MethodInfo, PropertyInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
32
|
+
import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
33
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
34
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
35
|
+
import type { Action_1, Action_2, Attribute, Boolean as ClrBoolean, Char, Enum, FormattableString, Func_1, Func_2, Func_4, IComparable, IConvertible, IDisposable, IEquatable_1, IFormattable, Int32, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, TimeSpan, Type, ValueTuple_2, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
36
|
+
import type { IMemoryCache } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Caching.Memory/internal/index.js";
|
|
37
|
+
import type { IServiceCollection, ServiceLifetime } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
38
|
+
import type { ILoggerFactory } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
39
39
|
|
|
40
40
|
export enum MetadataDebugStringOptions {
|
|
41
41
|
IncludeAnnotations = 1,
|
|
@@ -50,21 +50,20 @@ export enum MetadataDebugStringOptions {
|
|
|
50
50
|
export interface IAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
51
51
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
52
52
|
|
|
53
|
-
readonly [name: string]: unknown | undefined;
|
|
54
53
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
55
54
|
AnnotationsToDebugString(indent?: int): string;
|
|
56
55
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
57
56
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
58
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
59
|
-
GetRuntimeAnnotations():
|
|
57
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
58
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
60
59
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
61
|
-
GetAnnotations():
|
|
60
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
62
61
|
}
|
|
63
62
|
|
|
64
63
|
|
|
65
64
|
export interface IAnnotatable$instance extends IReadOnlyAnnotatable$instance {}
|
|
66
65
|
|
|
67
|
-
export type IAnnotatable = IAnnotatable$instance;
|
|
66
|
+
export type IAnnotatable = IAnnotatable$instance & { readonly [name: string]: unknown | undefined; };
|
|
68
67
|
|
|
69
68
|
export interface IAnnotation$instance {
|
|
70
69
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotation: never;
|
|
@@ -112,7 +111,7 @@ export type ICurrentDbContext = ICurrentDbContext$instance;
|
|
|
112
111
|
export interface IDbContextOptions$instance {
|
|
113
112
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
|
|
114
113
|
|
|
115
|
-
readonly Extensions:
|
|
114
|
+
readonly Extensions: IEnumerable_1<IDbContextOptionsExtension>;
|
|
116
115
|
FindExtension<TExtension extends IDbContextOptionsExtension>(): TExtension | undefined;
|
|
117
116
|
}
|
|
118
117
|
|
|
@@ -152,7 +151,7 @@ export type IDbContextOptionsExtension = IDbContextOptionsExtension$instance;
|
|
|
152
151
|
export interface IDbSetFinder$instance {
|
|
153
152
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbSetFinder: never;
|
|
154
153
|
|
|
155
|
-
FindSets(contextType: Type):
|
|
154
|
+
FindSets(contextType: Type): IReadOnlyList_1<DbSetProperty>;
|
|
156
155
|
}
|
|
157
156
|
|
|
158
157
|
|
|
@@ -237,14 +236,13 @@ export type IModelValidator = IModelValidator$instance;
|
|
|
237
236
|
export interface IReadOnlyAnnotatable$instance {
|
|
238
237
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
239
238
|
|
|
240
|
-
readonly [name: string]: unknown | undefined;
|
|
241
239
|
AnnotationsToDebugString(indent?: int): string;
|
|
242
240
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
243
|
-
GetAnnotations():
|
|
241
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
244
242
|
}
|
|
245
243
|
|
|
246
244
|
|
|
247
|
-
export type IReadOnlyAnnotatable = IReadOnlyAnnotatable$instance;
|
|
245
|
+
export type IReadOnlyAnnotatable = IReadOnlyAnnotatable$instance & { readonly [name: string]: unknown | undefined; };
|
|
248
246
|
|
|
249
247
|
export interface IRelationalDbContextOptionsBuilderInfrastructure$instance {
|
|
250
248
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IRelationalDbContextOptionsBuilderInfrastructure: never;
|
|
@@ -275,6 +273,8 @@ export interface ISingletonOptions$instance {
|
|
|
275
273
|
export type ISingletonOptions = ISingletonOptions$instance;
|
|
276
274
|
|
|
277
275
|
export interface ConcurrencyDetectorCriticalSectionDisposer$instance {
|
|
276
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ConcurrencyDetectorCriticalSectionDisposer: never;
|
|
277
|
+
|
|
278
278
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
279
279
|
|
|
280
280
|
Dispose(): void;
|
|
@@ -289,6 +289,8 @@ export const ConcurrencyDetectorCriticalSectionDisposer: {
|
|
|
289
289
|
export type ConcurrencyDetectorCriticalSectionDisposer = ConcurrencyDetectorCriticalSectionDisposer$instance;
|
|
290
290
|
|
|
291
291
|
export interface DbSetProperty$instance {
|
|
292
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DbSetProperty: never;
|
|
293
|
+
|
|
292
294
|
readonly Name: string;
|
|
293
295
|
readonly Setter: IClrPropertySetter | undefined;
|
|
294
296
|
readonly Type: Type;
|
|
@@ -303,6 +305,8 @@ export const DbSetProperty: {
|
|
|
303
305
|
export type DbSetProperty = DbSetProperty$instance;
|
|
304
306
|
|
|
305
307
|
export interface ServiceCharacteristics$instance {
|
|
308
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ServiceCharacteristics: never;
|
|
309
|
+
|
|
306
310
|
readonly Lifetime: ServiceLifetime;
|
|
307
311
|
readonly MultipleRegistrations: boolean;
|
|
308
312
|
}
|
|
@@ -316,14 +320,16 @@ export const ServiceCharacteristics: {
|
|
|
316
320
|
export type ServiceCharacteristics = ServiceCharacteristics$instance;
|
|
317
321
|
|
|
318
322
|
export interface Annotatable$instance extends AnnotatableBase$instance {
|
|
323
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Annotatable: never;
|
|
324
|
+
|
|
319
325
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
320
326
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
321
327
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
322
328
|
|
|
323
329
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
324
330
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
325
|
-
AddAnnotations(annotations:
|
|
326
|
-
AddAnnotations(annotations:
|
|
331
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
332
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
327
333
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
328
334
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
329
335
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
@@ -335,9 +341,9 @@ export interface Annotatable$instance extends AnnotatableBase$instance {
|
|
|
335
341
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
336
342
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
337
343
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
338
|
-
GetAnnotations():
|
|
339
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
340
|
-
GetRuntimeAnnotations():
|
|
344
|
+
GetAnnotations(): IEnumerable_1<Annotation>;
|
|
345
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
346
|
+
GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
|
|
341
347
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
342
348
|
SetAnnotation(name: string, value: unknown): void;
|
|
343
349
|
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
@@ -359,19 +365,20 @@ export type Annotatable = Annotatable$instance & __Annotatable$views;
|
|
|
359
365
|
|
|
360
366
|
|
|
361
367
|
export interface AnnotatableBase$instance {
|
|
368
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_AnnotatableBase: never;
|
|
369
|
+
|
|
362
370
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
363
371
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
364
372
|
|
|
365
373
|
readonly IsReadOnly: boolean;
|
|
366
|
-
[name: string]: unknown | undefined;
|
|
367
374
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
368
375
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
369
|
-
AddAnnotations(annotations:
|
|
370
|
-
AddAnnotations(annotations:
|
|
376
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
377
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
371
378
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
372
379
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
373
|
-
AddRuntimeAnnotations(annotations:
|
|
374
|
-
AddRuntimeAnnotations(annotations:
|
|
380
|
+
AddRuntimeAnnotations(annotations: IEnumerable_1<Annotation>): void;
|
|
381
|
+
AddRuntimeAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
375
382
|
CreateAnnotation(name: string, value: unknown): Annotation;
|
|
376
383
|
CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
377
384
|
EnsureMutable(): void;
|
|
@@ -379,9 +386,9 @@ export interface AnnotatableBase$instance {
|
|
|
379
386
|
FindAnnotation(name: string): Annotation | undefined;
|
|
380
387
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
381
388
|
GetAnnotation(annotationName: string): Annotation;
|
|
382
|
-
GetAnnotations():
|
|
383
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
384
|
-
GetRuntimeAnnotations():
|
|
389
|
+
GetAnnotations(): IEnumerable_1<Annotation>;
|
|
390
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
391
|
+
GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
|
|
385
392
|
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
386
393
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
387
394
|
RemoveRuntimeAnnotation(name: string): Annotation | undefined;
|
|
@@ -402,14 +409,16 @@ export interface __AnnotatableBase$views {
|
|
|
402
409
|
As_IReadOnlyAnnotatable(): IReadOnlyAnnotatable$instance;
|
|
403
410
|
}
|
|
404
411
|
|
|
405
|
-
export type AnnotatableBase = AnnotatableBase$instance & __AnnotatableBase$views;
|
|
412
|
+
export type AnnotatableBase = AnnotatableBase$instance & __AnnotatableBase$views & { [name: string]: unknown | undefined; };
|
|
406
413
|
|
|
407
414
|
|
|
408
415
|
export interface AnnotatableBuilder_2$instance<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder> {
|
|
416
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_AnnotatableBuilder_2: never;
|
|
417
|
+
|
|
409
418
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
|
|
410
419
|
|
|
411
|
-
readonly Metadata:
|
|
412
|
-
readonly ModelBuilder:
|
|
420
|
+
readonly Metadata: TMetadata;
|
|
421
|
+
readonly ModelBuilder: TModelBuilder;
|
|
413
422
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
414
423
|
CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
|
|
415
424
|
HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TMetadata, TModelBuilder> | undefined;
|
|
@@ -432,7 +441,9 @@ export interface __AnnotatableBuilder_2$views<TMetadata extends ConventionAnnota
|
|
|
432
441
|
export type AnnotatableBuilder_2<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder> = AnnotatableBuilder_2$instance<TMetadata, TModelBuilder> & __AnnotatableBuilder_2$views<TMetadata, TModelBuilder>;
|
|
433
442
|
|
|
434
443
|
|
|
435
|
-
export interface Annotation$instance {
|
|
444
|
+
export interface Annotation$instance extends IAnnotation$instance {
|
|
445
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Annotation: never;
|
|
446
|
+
|
|
436
447
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotation: never;
|
|
437
448
|
|
|
438
449
|
readonly Name: string;
|
|
@@ -449,12 +460,12 @@ export interface __Annotation$views {
|
|
|
449
460
|
As_IAnnotation(): IAnnotation$instance;
|
|
450
461
|
}
|
|
451
462
|
|
|
452
|
-
export interface Annotation$instance extends IAnnotation$instance {}
|
|
453
|
-
|
|
454
463
|
export type Annotation = Annotation$instance & __Annotation$views;
|
|
455
464
|
|
|
456
465
|
|
|
457
466
|
export interface ConventionAnnotatable$instance extends Annotatable$instance {
|
|
467
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ConventionAnnotatable: never;
|
|
468
|
+
|
|
458
469
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
459
470
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
460
471
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionAnnotatable: never;
|
|
@@ -463,8 +474,8 @@ export interface ConventionAnnotatable$instance extends Annotatable$instance {
|
|
|
463
474
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
464
475
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
465
476
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
466
|
-
AddAnnotations(annotations:
|
|
467
|
-
AddAnnotations(annotations:
|
|
477
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
478
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
468
479
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
469
480
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
470
481
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -475,9 +486,9 @@ export interface ConventionAnnotatable$instance extends Annotatable$instance {
|
|
|
475
486
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
476
487
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
477
488
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
478
|
-
GetAnnotations():
|
|
479
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
480
|
-
GetRuntimeAnnotations():
|
|
489
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
490
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
491
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
481
492
|
OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
482
493
|
OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
483
494
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -502,53 +513,55 @@ export interface __ConventionAnnotatable$views {
|
|
|
502
513
|
export type ConventionAnnotatable = ConventionAnnotatable$instance & __ConventionAnnotatable$views;
|
|
503
514
|
|
|
504
515
|
|
|
505
|
-
export interface CoreOptionsExtension$instance {
|
|
516
|
+
export interface CoreOptionsExtension$instance extends IDbContextOptionsExtension$instance {
|
|
517
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_CoreOptionsExtension: never;
|
|
518
|
+
|
|
506
519
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
|
|
507
520
|
|
|
508
521
|
readonly ApplicationServiceProvider: IServiceProvider | undefined;
|
|
509
|
-
readonly AsyncSeeder:
|
|
522
|
+
readonly AsyncSeeder: Func_4<DbContext, System_Internal.Boolean, CancellationToken, Task> | undefined;
|
|
510
523
|
readonly AutoResolveRootProvider: boolean;
|
|
511
524
|
readonly DbContextLogger: IDbContextLogger | undefined;
|
|
512
525
|
readonly DetailedErrorsEnabled: boolean;
|
|
513
526
|
readonly Info: DbContextOptionsExtensionInfo;
|
|
514
|
-
readonly Interceptors:
|
|
527
|
+
readonly Interceptors: IEnumerable_1<IInterceptor> | undefined;
|
|
515
528
|
readonly InternalServiceProvider: IServiceProvider | undefined;
|
|
516
529
|
readonly IsSensitiveDataLoggingEnabled: boolean;
|
|
517
530
|
readonly LoggerFactory: ILoggerFactory | undefined;
|
|
518
531
|
readonly LoggingCacheTime: TimeSpan;
|
|
519
|
-
readonly MaxPoolSize:
|
|
532
|
+
readonly MaxPoolSize: Nullable_1<System_Internal.Int32>;
|
|
520
533
|
readonly MemoryCache: IMemoryCache | undefined;
|
|
521
534
|
readonly Model: IModel | undefined;
|
|
522
535
|
readonly QueryTrackingBehavior: QueryTrackingBehavior;
|
|
523
|
-
readonly ReplacedServices:
|
|
536
|
+
readonly ReplacedServices: IReadOnlyDictionary_2<ValueTuple_2<Type, Type>, Type | undefined> | undefined;
|
|
524
537
|
readonly RootApplicationServiceProvider: IServiceProvider | undefined;
|
|
525
|
-
readonly Seeder:
|
|
538
|
+
readonly Seeder: Action_2<DbContext, System_Internal.Boolean> | undefined;
|
|
526
539
|
readonly ServiceProviderCachingEnabled: boolean;
|
|
527
|
-
readonly SingletonInterceptors:
|
|
540
|
+
readonly SingletonInterceptors: IEnumerable_1<ISingletonInterceptor> | undefined;
|
|
528
541
|
readonly ThreadSafetyChecksEnabled: boolean;
|
|
529
542
|
readonly WarningsConfiguration: WarningsConfiguration;
|
|
530
543
|
ApplyServices(services: IServiceCollection): void;
|
|
531
544
|
Clone(): CoreOptionsExtension;
|
|
532
545
|
Validate(options: IDbContextOptions): void;
|
|
533
546
|
WithApplicationServiceProvider(applicationServiceProvider: IServiceProvider): CoreOptionsExtension;
|
|
534
|
-
WithAsyncSeeding(seedAsync:
|
|
547
|
+
WithAsyncSeeding(seedAsync: Func_4<DbContext, System_Internal.Boolean, CancellationToken, Task>): CoreOptionsExtension;
|
|
535
548
|
WithDbContextLogger(contextLogger: IDbContextLogger): CoreOptionsExtension;
|
|
536
549
|
WithDetailedErrorsEnabled(detailedErrorsEnabled: boolean): CoreOptionsExtension;
|
|
537
|
-
WithInterceptors(interceptors:
|
|
550
|
+
WithInterceptors(interceptors: IEnumerable_1<IInterceptor>): CoreOptionsExtension;
|
|
538
551
|
WithInternalServiceProvider(internalServiceProvider: IServiceProvider): CoreOptionsExtension;
|
|
539
552
|
WithLoggerFactory(loggerFactory: ILoggerFactory): CoreOptionsExtension;
|
|
540
553
|
WithLoggingCacheTime(timeSpan: TimeSpan): CoreOptionsExtension;
|
|
541
|
-
WithMaxPoolSize(maxPoolSize:
|
|
554
|
+
WithMaxPoolSize(maxPoolSize: Nullable_1<System_Internal.Int32>): CoreOptionsExtension;
|
|
542
555
|
WithMemoryCache(memoryCache: IMemoryCache): CoreOptionsExtension;
|
|
543
556
|
WithModel(model: IModel): CoreOptionsExtension;
|
|
544
557
|
WithQueryTrackingBehavior(queryTrackingBehavior: QueryTrackingBehavior): CoreOptionsExtension;
|
|
545
558
|
WithReplacedService(serviceType: Type, newImplementationType: Type, currentImplementationType?: Type): CoreOptionsExtension;
|
|
546
559
|
WithRootApplicationServiceProvider(rootApplicationServiceProvider: IServiceProvider): CoreOptionsExtension;
|
|
547
560
|
WithRootApplicationServiceProvider(autoResolve?: boolean): CoreOptionsExtension;
|
|
548
|
-
WithSeeding(seed:
|
|
561
|
+
WithSeeding(seed: Action_2<DbContext, System_Internal.Boolean>): CoreOptionsExtension;
|
|
549
562
|
WithSensitiveDataLoggingEnabled(sensitiveDataLoggingEnabled: boolean): CoreOptionsExtension;
|
|
550
563
|
WithServiceProviderCachingEnabled(serviceProviderCachingEnabled: boolean): CoreOptionsExtension;
|
|
551
|
-
WithSingletonInterceptors(interceptors:
|
|
564
|
+
WithSingletonInterceptors(interceptors: IEnumerable_1<ISingletonInterceptor>): CoreOptionsExtension;
|
|
552
565
|
WithThreadSafetyChecksEnabled(checksEnabled: boolean): CoreOptionsExtension;
|
|
553
566
|
WithWarningsConfiguration(warningsConfiguration: WarningsConfiguration): CoreOptionsExtension;
|
|
554
567
|
}
|
|
@@ -563,12 +576,12 @@ export interface __CoreOptionsExtension$views {
|
|
|
563
576
|
As_IDbContextOptionsExtension(): IDbContextOptionsExtension$instance;
|
|
564
577
|
}
|
|
565
578
|
|
|
566
|
-
export interface CoreOptionsExtension$instance extends IDbContextOptionsExtension$instance {}
|
|
567
|
-
|
|
568
579
|
export type CoreOptionsExtension = CoreOptionsExtension$instance & __CoreOptionsExtension$views;
|
|
569
580
|
|
|
570
581
|
|
|
571
|
-
export interface DatabaseFacade$instance {
|
|
582
|
+
export interface DatabaseFacade$instance extends IInfrastructure_1$instance<IServiceProvider>, IResettableService$instance, Microsoft_EntityFrameworkCore_Storage_Internal.IDatabaseFacadeDependenciesAccessor$instance {
|
|
583
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DatabaseFacade: never;
|
|
584
|
+
|
|
572
585
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
573
586
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
574
587
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Storage_IDatabaseFacadeDependenciesAccessor: never;
|
|
@@ -579,16 +592,16 @@ export interface DatabaseFacade$instance {
|
|
|
579
592
|
readonly CurrentTransaction: IDbContextTransaction | undefined;
|
|
580
593
|
readonly ProviderName: string | undefined;
|
|
581
594
|
BeginTransaction(): IDbContextTransaction;
|
|
582
|
-
BeginTransactionAsync(cancellationToken?: CancellationToken):
|
|
595
|
+
BeginTransactionAsync(cancellationToken?: CancellationToken): Task_1<IDbContextTransaction>;
|
|
583
596
|
CanConnect(): boolean;
|
|
584
|
-
CanConnectAsync(cancellationToken?: CancellationToken):
|
|
597
|
+
CanConnectAsync(cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
585
598
|
CommitTransaction(): void;
|
|
586
599
|
CommitTransactionAsync(cancellationToken?: CancellationToken): Task;
|
|
587
600
|
CreateExecutionStrategy(): IExecutionStrategy;
|
|
588
601
|
EnsureCreated(): boolean;
|
|
589
|
-
EnsureCreatedAsync(cancellationToken?: CancellationToken):
|
|
602
|
+
EnsureCreatedAsync(cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
590
603
|
EnsureDeleted(): boolean;
|
|
591
|
-
EnsureDeletedAsync(cancellationToken?: CancellationToken):
|
|
604
|
+
EnsureDeletedAsync(cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
592
605
|
Equals(obj: unknown): boolean;
|
|
593
606
|
GetHashCode(): int;
|
|
594
607
|
RollbackTransaction(): void;
|
|
@@ -608,12 +621,12 @@ export interface __DatabaseFacade$views {
|
|
|
608
621
|
As_IDatabaseFacadeDependenciesAccessor(): Microsoft_EntityFrameworkCore_Storage_Internal.IDatabaseFacadeDependenciesAccessor$instance;
|
|
609
622
|
}
|
|
610
623
|
|
|
611
|
-
export interface DatabaseFacade$instance extends IInfrastructure_1$instance<IServiceProvider>, IResettableService$instance, Microsoft_EntityFrameworkCore_Storage_Internal.IDatabaseFacadeDependenciesAccessor$instance {}
|
|
612
|
-
|
|
613
624
|
export type DatabaseFacade = DatabaseFacade$instance & __DatabaseFacade$views;
|
|
614
625
|
|
|
615
626
|
|
|
616
627
|
export interface DbContextAttribute$instance extends Attribute {
|
|
628
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DbContextAttribute: never;
|
|
629
|
+
|
|
617
630
|
readonly ContextType: Type;
|
|
618
631
|
}
|
|
619
632
|
|
|
@@ -626,6 +639,8 @@ export const DbContextAttribute: {
|
|
|
626
639
|
export type DbContextAttribute = DbContextAttribute$instance;
|
|
627
640
|
|
|
628
641
|
export interface DbContextModelAttribute$instance extends Attribute {
|
|
642
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DbContextModelAttribute: never;
|
|
643
|
+
|
|
629
644
|
readonly ContextType: Type;
|
|
630
645
|
readonly ModelType: Type;
|
|
631
646
|
}
|
|
@@ -639,11 +654,13 @@ export const DbContextModelAttribute: {
|
|
|
639
654
|
export type DbContextModelAttribute = DbContextModelAttribute$instance;
|
|
640
655
|
|
|
641
656
|
export interface DbContextOptionsExtensionInfo$instance {
|
|
657
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DbContextOptionsExtensionInfo: never;
|
|
658
|
+
|
|
642
659
|
readonly Extension: IDbContextOptionsExtension;
|
|
643
660
|
readonly IsDatabaseProvider: boolean;
|
|
644
661
|
readonly LogFragment: string;
|
|
645
662
|
GetServiceProviderHashCode(): int;
|
|
646
|
-
PopulateDebugInfo(debugInfo:
|
|
663
|
+
PopulateDebugInfo(debugInfo: IDictionary_2<System_Internal.String, System_Internal.String>): void;
|
|
647
664
|
ShouldUseSameServiceProvider(other: DbContextOptionsExtensionInfo): boolean;
|
|
648
665
|
}
|
|
649
666
|
|
|
@@ -655,19 +672,23 @@ export const DbContextOptionsExtensionInfo: (abstract new(extension: IDbContextO
|
|
|
655
672
|
export type DbContextOptionsExtensionInfo = DbContextOptionsExtensionInfo$instance;
|
|
656
673
|
|
|
657
674
|
export interface DebugView$instance {
|
|
675
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_DebugView: never;
|
|
676
|
+
|
|
658
677
|
readonly LongView: string;
|
|
659
678
|
readonly ShortView: string;
|
|
660
679
|
}
|
|
661
680
|
|
|
662
681
|
|
|
663
682
|
export const DebugView: {
|
|
664
|
-
new(toShortDebugString:
|
|
683
|
+
new(toShortDebugString: Func_1<System_Internal.String>, toLongDebugString: Func_1<System_Internal.String>): DebugView;
|
|
665
684
|
};
|
|
666
685
|
|
|
667
686
|
|
|
668
687
|
export type DebugView = DebugView$instance;
|
|
669
688
|
|
|
670
689
|
export interface EntityFrameworkEventSource$instance extends EventSource {
|
|
690
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_EntityFrameworkEventSource: never;
|
|
691
|
+
|
|
671
692
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
672
693
|
|
|
673
694
|
CompiledQueryCacheHit(): void;
|
|
@@ -690,6 +711,8 @@ export const EntityFrameworkEventSource: {
|
|
|
690
711
|
export type EntityFrameworkEventSource = EntityFrameworkEventSource$instance;
|
|
691
712
|
|
|
692
713
|
export interface EntityFrameworkInternalAttribute$instance extends Attribute {
|
|
714
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_EntityFrameworkInternalAttribute: never;
|
|
715
|
+
|
|
693
716
|
}
|
|
694
717
|
|
|
695
718
|
|
|
@@ -701,52 +724,58 @@ export const EntityFrameworkInternalAttribute: {
|
|
|
701
724
|
export type EntityFrameworkInternalAttribute = EntityFrameworkInternalAttribute$instance;
|
|
702
725
|
|
|
703
726
|
export interface EntityFrameworkRelationalServicesBuilder$instance extends EntityFrameworkServicesBuilder {
|
|
727
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_EntityFrameworkRelationalServicesBuilder: never;
|
|
728
|
+
|
|
704
729
|
TryAddCoreServices(): EntityFrameworkServicesBuilder;
|
|
705
|
-
TryGetServiceCharacteristics(serviceType: Type):
|
|
706
|
-
TryGetServiceCharacteristics(serviceType: Type):
|
|
730
|
+
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
731
|
+
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
707
732
|
}
|
|
708
733
|
|
|
709
734
|
|
|
710
735
|
export const EntityFrameworkRelationalServicesBuilder: {
|
|
711
736
|
new(serviceCollection: IServiceCollection): EntityFrameworkRelationalServicesBuilder;
|
|
712
|
-
readonly RelationalServices:
|
|
737
|
+
readonly RelationalServices: IDictionary_2<Type, ServiceCharacteristics>;
|
|
713
738
|
};
|
|
714
739
|
|
|
715
740
|
|
|
716
741
|
export type EntityFrameworkRelationalServicesBuilder = EntityFrameworkRelationalServicesBuilder$instance;
|
|
717
742
|
|
|
718
743
|
export interface EntityFrameworkServicesBuilder$instance {
|
|
744
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_EntityFrameworkServicesBuilder: never;
|
|
745
|
+
|
|
719
746
|
readonly ServiceCollectionMap: ServiceCollectionMap;
|
|
720
747
|
GetServiceCharacteristics(serviceType: Type): ServiceCharacteristics;
|
|
721
748
|
TryAdd<TService, TImplementation extends TService>(): EntityFrameworkServicesBuilder;
|
|
722
749
|
TryAdd(serviceType: Type, implementationType: Type): EntityFrameworkServicesBuilder;
|
|
723
|
-
TryAdd<TService>(factory:
|
|
724
|
-
TryAdd(serviceType: Type, implementationType: Type, factory:
|
|
750
|
+
TryAdd<TService>(factory: Func_2<IServiceProvider, TService>): EntityFrameworkServicesBuilder;
|
|
751
|
+
TryAdd(serviceType: Type, implementationType: Type, factory: Func_2<IServiceProvider, unknown>): EntityFrameworkServicesBuilder;
|
|
725
752
|
TryAdd<TService>(implementation: TService): EntityFrameworkServicesBuilder;
|
|
726
753
|
TryAdd(serviceType: Type, implementation: unknown): EntityFrameworkServicesBuilder;
|
|
727
754
|
TryAddCoreServices(): EntityFrameworkServicesBuilder;
|
|
728
|
-
TryAddProviderSpecificServices(serviceMap:
|
|
729
|
-
TryGetServiceCharacteristics(serviceType: Type):
|
|
755
|
+
TryAddProviderSpecificServices(serviceMap: Action_1<ServiceCollectionMap>): EntityFrameworkServicesBuilder;
|
|
756
|
+
TryGetServiceCharacteristics(serviceType: Type): Nullable_1<ServiceCharacteristics>;
|
|
730
757
|
}
|
|
731
758
|
|
|
732
759
|
|
|
733
760
|
export const EntityFrameworkServicesBuilder: {
|
|
734
761
|
new(serviceCollection: IServiceCollection): EntityFrameworkServicesBuilder;
|
|
735
|
-
readonly CoreServices:
|
|
762
|
+
readonly CoreServices: IDictionary_2<Type, ServiceCharacteristics>;
|
|
736
763
|
};
|
|
737
764
|
|
|
738
765
|
|
|
739
766
|
export type EntityFrameworkServicesBuilder = EntityFrameworkServicesBuilder$instance;
|
|
740
767
|
|
|
741
768
|
export interface IndentedStringBuilder$instance {
|
|
769
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_IndentedStringBuilder: never;
|
|
770
|
+
|
|
742
771
|
readonly IndentCount: int;
|
|
743
772
|
readonly Length: int;
|
|
744
773
|
Append(value: string): IndentedStringBuilder;
|
|
745
774
|
Append(value: FormattableString): IndentedStringBuilder;
|
|
746
775
|
Append(value: char): IndentedStringBuilder;
|
|
747
|
-
Append(value:
|
|
748
|
-
Append(value:
|
|
749
|
-
AppendJoin(values:
|
|
776
|
+
Append(value: IEnumerable_1<System_Internal.String>): IndentedStringBuilder;
|
|
777
|
+
Append(value: IEnumerable_1<System_Internal.Char>): IndentedStringBuilder;
|
|
778
|
+
AppendJoin(values: IEnumerable_1<System_Internal.String>, separator?: string): IndentedStringBuilder;
|
|
750
779
|
AppendJoin(separator: string, ...values: string[]): IndentedStringBuilder;
|
|
751
780
|
AppendLine(): IndentedStringBuilder;
|
|
752
781
|
AppendLine(value: string): IndentedStringBuilder;
|
|
@@ -770,6 +799,8 @@ export const IndentedStringBuilder: {
|
|
|
770
799
|
export type IndentedStringBuilder = IndentedStringBuilder$instance;
|
|
771
800
|
|
|
772
801
|
export interface ModelCacheKey$instance {
|
|
802
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelCacheKey: never;
|
|
803
|
+
|
|
773
804
|
Equals(other: ModelCacheKey): boolean;
|
|
774
805
|
Equals(obj: unknown): boolean;
|
|
775
806
|
GetHashCode(): int;
|
|
@@ -785,6 +816,8 @@ export const ModelCacheKey: {
|
|
|
785
816
|
export type ModelCacheKey = ModelCacheKey$instance;
|
|
786
817
|
|
|
787
818
|
export interface ModelCacheKeyFactory$instance {
|
|
819
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelCacheKeyFactory: never;
|
|
820
|
+
|
|
788
821
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCacheKeyFactory: never;
|
|
789
822
|
|
|
790
823
|
readonly Dependencies: ModelCacheKeyFactoryDependencies;
|
|
@@ -806,6 +839,8 @@ export type ModelCacheKeyFactory = ModelCacheKeyFactory$instance & __ModelCacheK
|
|
|
806
839
|
|
|
807
840
|
|
|
808
841
|
export interface ModelCacheKeyFactoryDependencies$instance {
|
|
842
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelCacheKeyFactoryDependencies: never;
|
|
843
|
+
|
|
809
844
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
810
845
|
|
|
811
846
|
_Clone_$(): ModelCacheKeyFactoryDependencies;
|
|
@@ -823,7 +858,9 @@ export const ModelCacheKeyFactoryDependencies: {
|
|
|
823
858
|
|
|
824
859
|
export type ModelCacheKeyFactoryDependencies = ModelCacheKeyFactoryDependencies$instance;
|
|
825
860
|
|
|
826
|
-
export interface ModelCustomizer$instance {
|
|
861
|
+
export interface ModelCustomizer$instance extends IModelCustomizer$instance {
|
|
862
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelCustomizer: never;
|
|
863
|
+
|
|
827
864
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
828
865
|
|
|
829
866
|
readonly Dependencies: ModelCustomizerDependencies;
|
|
@@ -840,12 +877,12 @@ export interface __ModelCustomizer$views {
|
|
|
840
877
|
As_IModelCustomizer(): IModelCustomizer$instance;
|
|
841
878
|
}
|
|
842
879
|
|
|
843
|
-
export interface ModelCustomizer$instance extends IModelCustomizer$instance {}
|
|
844
|
-
|
|
845
880
|
export type ModelCustomizer = ModelCustomizer$instance & __ModelCustomizer$views;
|
|
846
881
|
|
|
847
882
|
|
|
848
883
|
export interface ModelCustomizerDependencies$instance {
|
|
884
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelCustomizerDependencies: never;
|
|
885
|
+
|
|
849
886
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
850
887
|
|
|
851
888
|
_Clone_$(): ModelCustomizerDependencies;
|
|
@@ -864,6 +901,8 @@ export const ModelCustomizerDependencies: {
|
|
|
864
901
|
export type ModelCustomizerDependencies = ModelCustomizerDependencies$instance;
|
|
865
902
|
|
|
866
903
|
export interface ModelDependencies$instance {
|
|
904
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelDependencies: never;
|
|
905
|
+
|
|
867
906
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
868
907
|
|
|
869
908
|
Logger: IDiagnosticsLogger_1<DbLoggerCategory_Model>;
|
|
@@ -883,6 +922,8 @@ export const ModelDependencies: {
|
|
|
883
922
|
export type ModelDependencies = ModelDependencies$instance;
|
|
884
923
|
|
|
885
924
|
export interface ModelRuntimeInitializer$instance {
|
|
925
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelRuntimeInitializer: never;
|
|
926
|
+
|
|
886
927
|
readonly Dependencies: ModelRuntimeInitializerDependencies;
|
|
887
928
|
Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
|
|
888
929
|
InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
|
|
@@ -897,6 +938,8 @@ export const ModelRuntimeInitializer: {
|
|
|
897
938
|
export type ModelRuntimeInitializer = ModelRuntimeInitializer$instance;
|
|
898
939
|
|
|
899
940
|
export interface ModelRuntimeInitializerDependencies$instance {
|
|
941
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelRuntimeInitializerDependencies: never;
|
|
942
|
+
|
|
900
943
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
901
944
|
|
|
902
945
|
ModelDependencies: RuntimeModelDependencies;
|
|
@@ -917,6 +960,8 @@ export const ModelRuntimeInitializerDependencies: {
|
|
|
917
960
|
export type ModelRuntimeInitializerDependencies = ModelRuntimeInitializerDependencies$instance;
|
|
918
961
|
|
|
919
962
|
export interface ModelSnapshot$instance {
|
|
963
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelSnapshot: never;
|
|
964
|
+
|
|
920
965
|
readonly Model: IModel;
|
|
921
966
|
BuildModel(modelBuilder: ModelBuilder): void;
|
|
922
967
|
}
|
|
@@ -928,7 +973,9 @@ export const ModelSnapshot: (abstract new() => ModelSnapshot) & {
|
|
|
928
973
|
|
|
929
974
|
export type ModelSnapshot = ModelSnapshot$instance;
|
|
930
975
|
|
|
931
|
-
export interface ModelSource$instance {
|
|
976
|
+
export interface ModelSource$instance extends IModelSource$instance {
|
|
977
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelSource: never;
|
|
978
|
+
|
|
932
979
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelSource: never;
|
|
933
980
|
|
|
934
981
|
readonly Dependencies: ModelSourceDependencies;
|
|
@@ -947,12 +994,12 @@ export interface __ModelSource$views {
|
|
|
947
994
|
As_IModelSource(): IModelSource$instance;
|
|
948
995
|
}
|
|
949
996
|
|
|
950
|
-
export interface ModelSource$instance extends IModelSource$instance {}
|
|
951
|
-
|
|
952
997
|
export type ModelSource = ModelSource$instance & __ModelSource$views;
|
|
953
998
|
|
|
954
999
|
|
|
955
1000
|
export interface ModelSourceDependencies$instance {
|
|
1001
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelSourceDependencies: never;
|
|
1002
|
+
|
|
956
1003
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
957
1004
|
|
|
958
1005
|
MemoryCache: IMemoryCache;
|
|
@@ -973,7 +1020,9 @@ export const ModelSourceDependencies: {
|
|
|
973
1020
|
|
|
974
1021
|
export type ModelSourceDependencies = ModelSourceDependencies$instance;
|
|
975
1022
|
|
|
976
|
-
export interface ModelValidator$instance {
|
|
1023
|
+
export interface ModelValidator$instance extends IModelValidator$instance {
|
|
1024
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelValidator: never;
|
|
1025
|
+
|
|
977
1026
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
|
|
978
1027
|
|
|
979
1028
|
readonly Dependencies: ModelValidatorDependencies;
|
|
@@ -1017,12 +1066,12 @@ export interface __ModelValidator$views {
|
|
|
1017
1066
|
As_IModelValidator(): IModelValidator$instance;
|
|
1018
1067
|
}
|
|
1019
1068
|
|
|
1020
|
-
export interface ModelValidator$instance extends IModelValidator$instance {}
|
|
1021
|
-
|
|
1022
1069
|
export type ModelValidator = ModelValidator$instance & __ModelValidator$views;
|
|
1023
1070
|
|
|
1024
1071
|
|
|
1025
1072
|
export interface ModelValidatorDependencies$instance {
|
|
1073
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ModelValidatorDependencies: never;
|
|
1074
|
+
|
|
1026
1075
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1027
1076
|
|
|
1028
1077
|
MemberClassifier: IMemberClassifier;
|
|
@@ -1041,11 +1090,13 @@ export const ModelValidatorDependencies: {
|
|
|
1041
1090
|
|
|
1042
1091
|
export type ModelValidatorDependencies = ModelValidatorDependencies$instance;
|
|
1043
1092
|
|
|
1044
|
-
export interface PooledDbContextFactory_1$instance<TContext extends DbContext> {
|
|
1093
|
+
export interface PooledDbContextFactory_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext> {
|
|
1094
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_PooledDbContextFactory_1: never;
|
|
1095
|
+
|
|
1045
1096
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
|
|
1046
1097
|
|
|
1047
1098
|
CreateDbContext(): TContext;
|
|
1048
|
-
CreateDbContextAsync(cancellationToken?: CancellationToken):
|
|
1099
|
+
CreateDbContextAsync(cancellationToken?: CancellationToken): Task_1<TContext>;
|
|
1049
1100
|
}
|
|
1050
1101
|
|
|
1051
1102
|
|
|
@@ -1059,18 +1110,18 @@ export interface __PooledDbContextFactory_1$views<TContext extends DbContext> {
|
|
|
1059
1110
|
As_IDbContextFactory_1(): Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext>;
|
|
1060
1111
|
}
|
|
1061
1112
|
|
|
1062
|
-
export interface PooledDbContextFactory_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext> {}
|
|
1063
|
-
|
|
1064
1113
|
export type PooledDbContextFactory_1<TContext extends DbContext> = PooledDbContextFactory_1$instance<TContext> & __PooledDbContextFactory_1$views<TContext>;
|
|
1065
1114
|
|
|
1066
1115
|
|
|
1067
|
-
export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> {
|
|
1116
|
+
export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> extends IRelationalDbContextOptionsBuilderInfrastructure$instance {
|
|
1117
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalDbContextOptionsBuilder_2: never;
|
|
1118
|
+
|
|
1068
1119
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IRelationalDbContextOptionsBuilderInfrastructure: never;
|
|
1069
1120
|
|
|
1070
1121
|
readonly OptionsBuilder: DbContextOptionsBuilder;
|
|
1071
|
-
CommandTimeout(commandTimeout:
|
|
1122
|
+
CommandTimeout(commandTimeout: Nullable_1<System_Internal.Int32>): TBuilder;
|
|
1072
1123
|
Equals(obj: unknown): boolean;
|
|
1073
|
-
ExecutionStrategy(getExecutionStrategy:
|
|
1124
|
+
ExecutionStrategy(getExecutionStrategy: Func_2<ExecutionStrategyDependencies, IExecutionStrategy>): TBuilder;
|
|
1074
1125
|
GetHashCode(): int;
|
|
1075
1126
|
MaxBatchSize(maxBatchSize: int): TBuilder;
|
|
1076
1127
|
MigrationsAssembly(assemblyName: string): TBuilder;
|
|
@@ -1083,7 +1134,7 @@ export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends R
|
|
|
1083
1134
|
UseParameterizedCollectionMode(parameterizedCollectionMode: ParameterTranslationMode): TBuilder;
|
|
1084
1135
|
UseQuerySplittingBehavior(querySplittingBehavior: QuerySplittingBehavior): TBuilder;
|
|
1085
1136
|
UseRelationalNulls(useRelationalNulls?: boolean): TBuilder;
|
|
1086
|
-
WithOption(setAction:
|
|
1137
|
+
WithOption(setAction: Func_2<TExtension, TExtension>): TBuilder;
|
|
1087
1138
|
}
|
|
1088
1139
|
|
|
1089
1140
|
|
|
@@ -1095,12 +1146,12 @@ export interface __RelationalDbContextOptionsBuilder_2$views<TBuilder extends Re
|
|
|
1095
1146
|
As_IRelationalDbContextOptionsBuilderInfrastructure(): IRelationalDbContextOptionsBuilderInfrastructure$instance;
|
|
1096
1147
|
}
|
|
1097
1148
|
|
|
1098
|
-
export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> extends IRelationalDbContextOptionsBuilderInfrastructure$instance {}
|
|
1099
|
-
|
|
1100
1149
|
export type RelationalDbContextOptionsBuilder_2<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> = RelationalDbContextOptionsBuilder_2$instance<TBuilder, TExtension> & __RelationalDbContextOptionsBuilder_2$views<TBuilder, TExtension>;
|
|
1101
1150
|
|
|
1102
1151
|
|
|
1103
1152
|
export interface RelationalModelCustomizer$instance extends ModelCustomizer$instance {
|
|
1153
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelCustomizer: never;
|
|
1154
|
+
|
|
1104
1155
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
1105
1156
|
|
|
1106
1157
|
Customize(modelBuilder: ModelBuilder, context: DbContext): void;
|
|
@@ -1120,6 +1171,8 @@ export type RelationalModelCustomizer = RelationalModelCustomizer$instance & __R
|
|
|
1120
1171
|
|
|
1121
1172
|
|
|
1122
1173
|
export interface RelationalModelDependencies$instance {
|
|
1174
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelDependencies: never;
|
|
1175
|
+
|
|
1123
1176
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1124
1177
|
|
|
1125
1178
|
RowForeignKeyValueFactoryFactory: IRowForeignKeyValueFactoryFactory;
|
|
@@ -1142,6 +1195,8 @@ export const RelationalModelDependencies: {
|
|
|
1142
1195
|
export type RelationalModelDependencies = RelationalModelDependencies$instance;
|
|
1143
1196
|
|
|
1144
1197
|
export interface RelationalModelRuntimeInitializer$instance extends ModelRuntimeInitializer {
|
|
1198
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelRuntimeInitializer: never;
|
|
1199
|
+
|
|
1145
1200
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelRuntimeInitializer: never;
|
|
1146
1201
|
|
|
1147
1202
|
readonly RelationalDependencies: RelationalModelRuntimeInitializerDependencies;
|
|
@@ -1163,6 +1218,8 @@ export type RelationalModelRuntimeInitializer = RelationalModelRuntimeInitialize
|
|
|
1163
1218
|
|
|
1164
1219
|
|
|
1165
1220
|
export interface RelationalModelRuntimeInitializerDependencies$instance {
|
|
1221
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelRuntimeInitializerDependencies: never;
|
|
1222
|
+
|
|
1166
1223
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1167
1224
|
|
|
1168
1225
|
RelationalAnnotationProvider: IRelationalAnnotationProvider;
|
|
@@ -1183,6 +1240,8 @@ export const RelationalModelRuntimeInitializerDependencies: {
|
|
|
1183
1240
|
export type RelationalModelRuntimeInitializerDependencies = RelationalModelRuntimeInitializerDependencies$instance;
|
|
1184
1241
|
|
|
1185
1242
|
export interface RelationalModelValidator$instance extends ModelValidator$instance {
|
|
1243
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelValidator: never;
|
|
1244
|
+
|
|
1186
1245
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
|
|
1187
1246
|
|
|
1188
1247
|
readonly RelationalDependencies: RelationalModelValidatorDependencies;
|
|
@@ -1221,16 +1280,16 @@ export interface RelationalModelValidator$instance extends ModelValidator$instan
|
|
|
1221
1280
|
ValidatePropertyMapping(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1222
1281
|
ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1223
1282
|
ValidatePropertyOverrides(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1224
|
-
ValidateSharedCheckConstraintCompatibility(mappedTypes:
|
|
1225
|
-
ValidateSharedColumnsCompatibility(mappedTypes:
|
|
1226
|
-
ValidateSharedForeignKeysCompatibility(mappedTypes:
|
|
1227
|
-
ValidateSharedIndexesCompatibility(mappedTypes:
|
|
1228
|
-
ValidateSharedKeysCompatibility(mappedTypes:
|
|
1283
|
+
ValidateSharedCheckConstraintCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1284
|
+
ValidateSharedColumnsCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1285
|
+
ValidateSharedForeignKeysCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1286
|
+
ValidateSharedIndexesCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1287
|
+
ValidateSharedKeysCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1229
1288
|
ValidateSharedTableCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1230
|
-
ValidateSharedTableCompatibility(mappedTypes:
|
|
1231
|
-
ValidateSharedTriggerCompatibility(mappedTypes:
|
|
1289
|
+
ValidateSharedTableCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1290
|
+
ValidateSharedTriggerCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1232
1291
|
ValidateSharedViewCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1233
|
-
ValidateSharedViewCompatibility(mappedTypes:
|
|
1292
|
+
ValidateSharedViewCompatibility(mappedTypes: IReadOnlyList_1<IEntityType>, viewName: string, schema: string, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1234
1293
|
ValidateSqlQueries(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1235
1294
|
ValidateStoredProcedures(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
1236
1295
|
ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
@@ -1252,6 +1311,8 @@ export type RelationalModelValidator = RelationalModelValidator$instance & __Rel
|
|
|
1252
1311
|
|
|
1253
1312
|
|
|
1254
1313
|
export interface RelationalModelValidatorDependencies$instance {
|
|
1314
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalModelValidatorDependencies: never;
|
|
1315
|
+
|
|
1255
1316
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1256
1317
|
|
|
1257
1318
|
TypeMappingSource: IRelationalTypeMappingSource;
|
|
@@ -1270,38 +1331,40 @@ export const RelationalModelValidatorDependencies: {
|
|
|
1270
1331
|
|
|
1271
1332
|
export type RelationalModelValidatorDependencies = RelationalModelValidatorDependencies$instance;
|
|
1272
1333
|
|
|
1273
|
-
export interface RelationalOptionsExtension$instance {
|
|
1334
|
+
export interface RelationalOptionsExtension$instance extends IDbContextOptionsExtension$instance {
|
|
1335
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RelationalOptionsExtension: never;
|
|
1336
|
+
|
|
1274
1337
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
|
|
1275
1338
|
|
|
1276
|
-
readonly CommandTimeout:
|
|
1339
|
+
readonly CommandTimeout: Nullable_1<System_Internal.Int32>;
|
|
1277
1340
|
readonly Connection: DbConnection | undefined;
|
|
1278
1341
|
readonly ConnectionString: string | undefined;
|
|
1279
|
-
readonly ExecutionStrategyFactory:
|
|
1342
|
+
readonly ExecutionStrategyFactory: Func_2<ExecutionStrategyDependencies, IExecutionStrategy> | undefined;
|
|
1280
1343
|
readonly Info: DbContextOptionsExtensionInfo;
|
|
1281
1344
|
readonly IsConnectionOwned: boolean;
|
|
1282
|
-
readonly MaxBatchSize:
|
|
1345
|
+
readonly MaxBatchSize: Nullable_1<System_Internal.Int32>;
|
|
1283
1346
|
readonly MigrationsAssembly: string | undefined;
|
|
1284
1347
|
readonly MigrationsAssemblyObject: Assembly | undefined;
|
|
1285
1348
|
readonly MigrationsHistoryTableName: string | undefined;
|
|
1286
1349
|
readonly MigrationsHistoryTableSchema: string | undefined;
|
|
1287
|
-
readonly MinBatchSize:
|
|
1350
|
+
readonly MinBatchSize: Nullable_1<System_Internal.Int32>;
|
|
1288
1351
|
readonly ParameterizedCollectionMode: ParameterTranslationMode;
|
|
1289
|
-
readonly QuerySplittingBehavior:
|
|
1352
|
+
readonly QuerySplittingBehavior: Nullable_1<QuerySplittingBehavior>;
|
|
1290
1353
|
readonly UseRelationalNulls: boolean;
|
|
1291
1354
|
ApplyServices(services: IServiceCollection): void;
|
|
1292
1355
|
Clone(): RelationalOptionsExtension;
|
|
1293
1356
|
Validate(options: IDbContextOptions): void;
|
|
1294
|
-
WithCommandTimeout(commandTimeout:
|
|
1357
|
+
WithCommandTimeout(commandTimeout: Nullable_1<System_Internal.Int32>): RelationalOptionsExtension;
|
|
1295
1358
|
WithConnection(connection: DbConnection): RelationalOptionsExtension;
|
|
1296
1359
|
WithConnection(connection: DbConnection, owned: boolean): RelationalOptionsExtension;
|
|
1297
1360
|
WithConnectionString(connectionString: string): RelationalOptionsExtension;
|
|
1298
|
-
WithExecutionStrategyFactory(executionStrategyFactory:
|
|
1299
|
-
WithMaxBatchSize(maxBatchSize:
|
|
1361
|
+
WithExecutionStrategyFactory(executionStrategyFactory: Func_2<ExecutionStrategyDependencies, IExecutionStrategy>): RelationalOptionsExtension;
|
|
1362
|
+
WithMaxBatchSize(maxBatchSize: Nullable_1<System_Internal.Int32>): RelationalOptionsExtension;
|
|
1300
1363
|
WithMigrationsAssembly(migrationsAssembly: string): RelationalOptionsExtension;
|
|
1301
1364
|
WithMigrationsAssembly(migrationsAssembly: Assembly): RelationalOptionsExtension;
|
|
1302
1365
|
WithMigrationsHistoryTableName(migrationsHistoryTableName: string): RelationalOptionsExtension;
|
|
1303
1366
|
WithMigrationsHistoryTableSchema(migrationsHistoryTableSchema: string): RelationalOptionsExtension;
|
|
1304
|
-
WithMinBatchSize(minBatchSize:
|
|
1367
|
+
WithMinBatchSize(minBatchSize: Nullable_1<System_Internal.Int32>): RelationalOptionsExtension;
|
|
1305
1368
|
WithUseParameterizedCollectionMode(parameterizedCollectionMode: ParameterTranslationMode): RelationalOptionsExtension;
|
|
1306
1369
|
WithUseQuerySplittingBehavior(querySplittingBehavior: QuerySplittingBehavior): RelationalOptionsExtension;
|
|
1307
1370
|
WithUseRelationalNulls(useRelationalNulls: boolean): RelationalOptionsExtension;
|
|
@@ -1318,30 +1381,29 @@ export interface __RelationalOptionsExtension$views {
|
|
|
1318
1381
|
As_IDbContextOptionsExtension(): IDbContextOptionsExtension$instance;
|
|
1319
1382
|
}
|
|
1320
1383
|
|
|
1321
|
-
export interface RelationalOptionsExtension$instance extends IDbContextOptionsExtension$instance {}
|
|
1322
|
-
|
|
1323
1384
|
export type RelationalOptionsExtension = RelationalOptionsExtension$instance & __RelationalOptionsExtension$views;
|
|
1324
1385
|
|
|
1325
1386
|
|
|
1326
1387
|
export interface RuntimeAnnotatableBase$instance {
|
|
1388
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RuntimeAnnotatableBase: never;
|
|
1389
|
+
|
|
1327
1390
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1328
1391
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1329
1392
|
|
|
1330
|
-
[name: string]: unknown | undefined;
|
|
1331
1393
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1332
|
-
AddAnnotations(annotations:
|
|
1333
|
-
AddAnnotations(annotations:
|
|
1394
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
1395
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1334
1396
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1335
1397
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
1336
|
-
AddRuntimeAnnotations(annotations:
|
|
1337
|
-
AddRuntimeAnnotations(annotations:
|
|
1398
|
+
AddRuntimeAnnotations(annotations: IEnumerable_1<Annotation>): void;
|
|
1399
|
+
AddRuntimeAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
1338
1400
|
CreateAnnotation(name: string, value: unknown): Annotation;
|
|
1339
1401
|
CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
1340
1402
|
FindAnnotation(name: string): Annotation | undefined;
|
|
1341
1403
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1342
1404
|
GetAnnotation(annotationName: string): Annotation;
|
|
1343
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
1344
|
-
GetRuntimeAnnotations():
|
|
1405
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
1406
|
+
GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
|
|
1345
1407
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
1346
1408
|
RemoveRuntimeAnnotation(name: string): Annotation | undefined;
|
|
1347
1409
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -1360,10 +1422,12 @@ export interface __RuntimeAnnotatableBase$views {
|
|
|
1360
1422
|
As_IReadOnlyAnnotatable(): IReadOnlyAnnotatable$instance;
|
|
1361
1423
|
}
|
|
1362
1424
|
|
|
1363
|
-
export type RuntimeAnnotatableBase = RuntimeAnnotatableBase$instance & __RuntimeAnnotatableBase$views;
|
|
1425
|
+
export type RuntimeAnnotatableBase = RuntimeAnnotatableBase$instance & __RuntimeAnnotatableBase$views & { [name: string]: unknown | undefined; };
|
|
1364
1426
|
|
|
1365
1427
|
|
|
1366
1428
|
export interface RuntimeModelDependencies$instance {
|
|
1429
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_RuntimeModelDependencies: never;
|
|
1430
|
+
|
|
1367
1431
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1368
1432
|
|
|
1369
1433
|
ConstructorBindingFactory: IConstructorBindingFactory;
|
|
@@ -1384,39 +1448,41 @@ export const RuntimeModelDependencies: {
|
|
|
1384
1448
|
|
|
1385
1449
|
export type RuntimeModelDependencies = RuntimeModelDependencies$instance;
|
|
1386
1450
|
|
|
1387
|
-
export interface ServiceCollectionMap$instance {
|
|
1451
|
+
export interface ServiceCollectionMap$instance extends IInfrastructure_1$instance<IInternalServiceCollectionMap> {
|
|
1452
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ServiceCollectionMap: never;
|
|
1453
|
+
|
|
1388
1454
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1389
1455
|
|
|
1390
1456
|
readonly ServiceCollection: IServiceCollection;
|
|
1391
1457
|
TryAdd(serviceType: Type, implementationType: Type, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
1392
|
-
TryAdd(serviceType: Type, factory:
|
|
1458
|
+
TryAdd(serviceType: Type, factory: Func_2<IServiceProvider, unknown>, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
1393
1459
|
TryAddEnumerable(serviceType: Type, implementationType: Type, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
1394
|
-
TryAddEnumerable(serviceType: Type, implementationType: Type, factory:
|
|
1460
|
+
TryAddEnumerable(serviceType: Type, implementationType: Type, factory: Func_2<IServiceProvider, unknown>, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
1395
1461
|
TryAddScoped<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1396
1462
|
TryAddScoped(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1397
|
-
TryAddScoped<TService>(factory:
|
|
1398
|
-
TryAddScoped(serviceType: Type, factory:
|
|
1463
|
+
TryAddScoped<TService>(factory: Func_2<IServiceProvider, TService>): ServiceCollectionMap;
|
|
1464
|
+
TryAddScoped(serviceType: Type, factory: Func_2<IServiceProvider, unknown>): ServiceCollectionMap;
|
|
1399
1465
|
TryAddScopedEnumerable<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1400
1466
|
TryAddScopedEnumerable(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1401
|
-
TryAddScopedEnumerable<TService, TImplementation extends TService>(factory:
|
|
1467
|
+
TryAddScopedEnumerable<TService, TImplementation extends TService>(factory: Func_2<IServiceProvider, TImplementation>): ServiceCollectionMap;
|
|
1402
1468
|
TryAddSingleton<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1403
1469
|
TryAddSingleton(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1404
|
-
TryAddSingleton<TService>(factory:
|
|
1405
|
-
TryAddSingleton(serviceType: Type, factory:
|
|
1470
|
+
TryAddSingleton<TService>(factory: Func_2<IServiceProvider, TService>): ServiceCollectionMap;
|
|
1471
|
+
TryAddSingleton(serviceType: Type, factory: Func_2<IServiceProvider, unknown>): ServiceCollectionMap;
|
|
1406
1472
|
TryAddSingleton<TService>(implementation: TService): ServiceCollectionMap;
|
|
1407
1473
|
TryAddSingleton(serviceType: Type, implementation: unknown): ServiceCollectionMap;
|
|
1408
1474
|
TryAddSingletonEnumerable<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1409
1475
|
TryAddSingletonEnumerable(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1410
|
-
TryAddSingletonEnumerable<TService, TImplementation extends TService>(factory:
|
|
1476
|
+
TryAddSingletonEnumerable<TService, TImplementation extends TService>(factory: Func_2<IServiceProvider, TImplementation>): ServiceCollectionMap;
|
|
1411
1477
|
TryAddSingletonEnumerable<TService>(implementation: TService): ServiceCollectionMap;
|
|
1412
1478
|
TryAddSingletonEnumerable(serviceType: Type, implementation: unknown): ServiceCollectionMap;
|
|
1413
1479
|
TryAddTransient<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1414
1480
|
TryAddTransient(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1415
|
-
TryAddTransient<TService>(factory:
|
|
1416
|
-
TryAddTransient(serviceType: Type, factory:
|
|
1481
|
+
TryAddTransient<TService>(factory: Func_2<IServiceProvider, TService>): ServiceCollectionMap;
|
|
1482
|
+
TryAddTransient(serviceType: Type, factory: Func_2<IServiceProvider, unknown>): ServiceCollectionMap;
|
|
1417
1483
|
TryAddTransientEnumerable<TService, TImplementation extends TService>(): ServiceCollectionMap;
|
|
1418
1484
|
TryAddTransientEnumerable(serviceType: Type, implementationType: Type): ServiceCollectionMap;
|
|
1419
|
-
TryAddTransientEnumerable<TService, TImplementation extends TService>(factory:
|
|
1485
|
+
TryAddTransientEnumerable<TService, TImplementation extends TService>(factory: Func_2<IServiceProvider, TImplementation>): ServiceCollectionMap;
|
|
1420
1486
|
}
|
|
1421
1487
|
|
|
1422
1488
|
|
|
@@ -1429,12 +1495,12 @@ export interface __ServiceCollectionMap$views {
|
|
|
1429
1495
|
As_IInfrastructure_1(): IInfrastructure_1$instance<IInternalServiceCollectionMap>;
|
|
1430
1496
|
}
|
|
1431
1497
|
|
|
1432
|
-
export interface ServiceCollectionMap$instance extends IInfrastructure_1$instance<IInternalServiceCollectionMap> {}
|
|
1433
|
-
|
|
1434
1498
|
export type ServiceCollectionMap = ServiceCollectionMap$instance & __ServiceCollectionMap$views;
|
|
1435
1499
|
|
|
1436
1500
|
|
|
1437
1501
|
export interface ServiceProviderAccessor$instance {
|
|
1502
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_ServiceProviderAccessor: never;
|
|
1503
|
+
|
|
1438
1504
|
readonly RootServiceProvider: IServiceProvider;
|
|
1439
1505
|
}
|
|
1440
1506
|
|
|
@@ -1475,16 +1541,16 @@ export abstract class ExpressionExtensions$instance {
|
|
|
1475
1541
|
static CreateEFPropertyExpression(target: Expression, property: IPropertyBase, makeNullable?: boolean): Expression;
|
|
1476
1542
|
static CreateEFPropertyExpression(target: Expression, propertyDeclaringType: Type, propertyType: Type, propertyName: string, makeNullable: boolean): Expression;
|
|
1477
1543
|
static CreateEqualsExpression(left: Expression, right: Expression, negated?: boolean): Expression;
|
|
1478
|
-
static CreateKeyValuesExpression(target: Expression, properties:
|
|
1544
|
+
static CreateKeyValuesExpression(target: Expression, properties: IReadOnlyList_1<IProperty>, makeNullable?: boolean): Expression;
|
|
1479
1545
|
static CreateValueBufferReadValueExpression(valueBuffer: Expression, type: Type, index: int, property: IPropertyBase): Expression;
|
|
1480
1546
|
static GetMemberAccess(memberAccessExpression: LambdaExpression): MemberInfo;
|
|
1481
|
-
static GetMemberAccessList(memberAccessExpression: LambdaExpression):
|
|
1547
|
+
static GetMemberAccessList(memberAccessExpression: LambdaExpression): IReadOnlyList_1<MemberInfo>;
|
|
1482
1548
|
static GetPropertyAccess(propertyAccessExpression: LambdaExpression): PropertyInfo;
|
|
1483
|
-
static GetPropertyAccessList(propertyAccessExpression: LambdaExpression):
|
|
1549
|
+
static GetPropertyAccessList(propertyAccessExpression: LambdaExpression): IReadOnlyList_1<PropertyInfo>;
|
|
1484
1550
|
static IsMemberAccess(expression: Expression, model: IModel, baseExpression: Expression, memberIdentity: MemberIdentity): boolean;
|
|
1485
1551
|
static IsMemberAccess(expression: Expression, model: IModel, baseExpression: Expression): boolean;
|
|
1486
1552
|
static MakeMemberAccess(expression: Expression, member: MemberInfo): MemberExpression;
|
|
1487
|
-
static Print(expression: Expression, characterLimit?:
|
|
1553
|
+
static Print(expression: Expression, characterLimit?: Nullable_1<System_Internal.Int32>): string;
|
|
1488
1554
|
static TryGetEFPropertyArguments(methodCallExpression: MethodCallExpression, entityExpression: Expression, propertyName: string): boolean;
|
|
1489
1555
|
static TryGetIndexerArguments(methodCallExpression: MethodCallExpression, model: IModel, entityExpression: Expression, propertyName: string): boolean;
|
|
1490
1556
|
}
|
|
@@ -1521,8 +1587,8 @@ export abstract class RelationalModelExtensions$instance {
|
|
|
1521
1587
|
export type RelationalModelExtensions = RelationalModelExtensions$instance;
|
|
1522
1588
|
|
|
1523
1589
|
export abstract class RelationalPropertyExtensions$instance {
|
|
1524
|
-
static FormatColumns(properties:
|
|
1525
|
-
static GetColumnNames(properties:
|
|
1590
|
+
static FormatColumns(properties: IEnumerable_1<IReadOnlyProperty>, storeObject: StoreObjectIdentifier): string;
|
|
1591
|
+
static GetColumnNames(properties: IEnumerable_1<IReadOnlyProperty>, storeObject: StoreObjectIdentifier): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
1526
1592
|
}
|
|
1527
1593
|
|
|
1528
1594
|
|
|
@@ -1536,13 +1602,13 @@ export abstract class TypeExtensions$instance {
|
|
|
1536
1602
|
export type TypeExtensions = TypeExtensions$instance;
|
|
1537
1603
|
|
|
1538
1604
|
export abstract class Uniquifier$instance {
|
|
1539
|
-
static Truncate(identifier: string, maxLength: int, uniquifier?:
|
|
1540
|
-
static Truncate(identifier: string, maxLength: int, suffix: string, uniquifier?:
|
|
1541
|
-
static Uniquify<TKey, TValue>(currentIdentifier: string, otherIdentifiers:
|
|
1542
|
-
static Uniquify<TKey, TValue>(currentIdentifier: string, otherIdentifiers:
|
|
1543
|
-
static Uniquify<T>(currentIdentifier: string, otherIdentifiers:
|
|
1544
|
-
static Uniquify<T>(currentIdentifier: string, otherIdentifiers:
|
|
1545
|
-
static Uniquify(currentIdentifier: string, otherIdentifiers:
|
|
1605
|
+
static Truncate(identifier: string, maxLength: int, uniquifier?: Nullable_1<System_Internal.Int32>): string;
|
|
1606
|
+
static Truncate(identifier: string, maxLength: int, suffix: string, uniquifier?: Nullable_1<System_Internal.Int32>): string;
|
|
1607
|
+
static Uniquify<TKey, TValue>(currentIdentifier: string, otherIdentifiers: IReadOnlyDictionary_2<TKey, TValue>, keySelector: Func_2<System_Internal.String, TKey>, maxLength: int): string;
|
|
1608
|
+
static Uniquify<TKey, TValue>(currentIdentifier: string, otherIdentifiers: IReadOnlyDictionary_2<TKey, TValue>, keySelector: Func_2<System_Internal.String, TKey>, suffix: string, maxLength: int): string;
|
|
1609
|
+
static Uniquify<T>(currentIdentifier: string, otherIdentifiers: IReadOnlyDictionary_2<System_Internal.String, T>, maxLength: int): string;
|
|
1610
|
+
static Uniquify<T>(currentIdentifier: string, otherIdentifiers: IReadOnlyDictionary_2<System_Internal.String, T>, suffix: string, maxLength: int): string;
|
|
1611
|
+
static Uniquify(currentIdentifier: string, otherIdentifiers: ISet_1<System_Internal.String>, suffix: string, maxLength: int): string;
|
|
1546
1612
|
}
|
|
1547
1613
|
|
|
1548
1614
|
|