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