@tsonic/efcore 10.0.3 → 10.0.5
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 +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -48,6 +48,8 @@ export enum MetadataDebugStringOptions {
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
export interface IAnnotatable$instance extends IReadOnlyAnnotatable {
|
|
51
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
52
|
+
|
|
51
53
|
readonly [name: string]: unknown | undefined;
|
|
52
54
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
53
55
|
AnnotationsToDebugString(indent?: int): string;
|
|
@@ -65,6 +67,8 @@ export interface IAnnotatable$instance extends IReadOnlyAnnotatable$instance {}
|
|
|
65
67
|
export type IAnnotatable = IAnnotatable$instance;
|
|
66
68
|
|
|
67
69
|
export interface IAnnotation$instance {
|
|
70
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotation: never;
|
|
71
|
+
|
|
68
72
|
readonly Name: string;
|
|
69
73
|
readonly Value: unknown | undefined;
|
|
70
74
|
}
|
|
@@ -73,6 +77,8 @@ export interface IAnnotation$instance {
|
|
|
73
77
|
export type IAnnotation = IAnnotation$instance;
|
|
74
78
|
|
|
75
79
|
export interface IConcurrencyDetector$instance {
|
|
80
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IConcurrencyDetector: never;
|
|
81
|
+
|
|
76
82
|
EnterCriticalSection(): ConcurrencyDetectorCriticalSectionDisposer;
|
|
77
83
|
ExitCriticalSection(): void;
|
|
78
84
|
}
|
|
@@ -81,6 +87,8 @@ export interface IConcurrencyDetector$instance {
|
|
|
81
87
|
export type IConcurrencyDetector = IConcurrencyDetector$instance;
|
|
82
88
|
|
|
83
89
|
export interface ICoreSingletonOptions$instance extends ISingletonOptions {
|
|
90
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICoreSingletonOptions: never;
|
|
91
|
+
|
|
84
92
|
readonly AreDetailedErrorsEnabled: boolean;
|
|
85
93
|
readonly AreThreadSafetyChecksEnabled: boolean;
|
|
86
94
|
readonly RootApplicationServiceProvider: IServiceProvider | undefined;
|
|
@@ -93,6 +101,8 @@ export interface ICoreSingletonOptions$instance extends ISingletonOptions$instan
|
|
|
93
101
|
export type ICoreSingletonOptions = ICoreSingletonOptions$instance;
|
|
94
102
|
|
|
95
103
|
export interface ICurrentDbContext$instance {
|
|
104
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICurrentDbContext: never;
|
|
105
|
+
|
|
96
106
|
readonly Context: DbContext;
|
|
97
107
|
}
|
|
98
108
|
|
|
@@ -100,6 +110,8 @@ export interface ICurrentDbContext$instance {
|
|
|
100
110
|
export type ICurrentDbContext = ICurrentDbContext$instance;
|
|
101
111
|
|
|
102
112
|
export interface IDbContextOptions$instance {
|
|
113
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
|
|
114
|
+
|
|
103
115
|
readonly Extensions: IEnumerable<IDbContextOptionsExtension>;
|
|
104
116
|
FindExtension<TExtension extends IDbContextOptionsExtension>(): TExtension | undefined;
|
|
105
117
|
}
|
|
@@ -108,6 +120,8 @@ export interface IDbContextOptions$instance {
|
|
|
108
120
|
export type IDbContextOptions = IDbContextOptions$instance;
|
|
109
121
|
|
|
110
122
|
export interface IDbContextOptionsBuilderInfrastructure$instance {
|
|
123
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsBuilderInfrastructure: never;
|
|
124
|
+
|
|
111
125
|
AddOrUpdateExtension<TExtension extends IDbContextOptionsExtension>(extension: TExtension): void;
|
|
112
126
|
}
|
|
113
127
|
|
|
@@ -115,6 +129,8 @@ export interface IDbContextOptionsBuilderInfrastructure$instance {
|
|
|
115
129
|
export type IDbContextOptionsBuilderInfrastructure = IDbContextOptionsBuilderInfrastructure$instance;
|
|
116
130
|
|
|
117
131
|
export interface IDbContextOptionsConfiguration_1$instance<TContext extends DbContext> {
|
|
132
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsConfiguration_1: never;
|
|
133
|
+
|
|
118
134
|
Configure(serviceProvider: IServiceProvider, optionsBuilder: DbContextOptionsBuilder): void;
|
|
119
135
|
}
|
|
120
136
|
|
|
@@ -122,6 +138,8 @@ export interface IDbContextOptionsConfiguration_1$instance<TContext extends DbCo
|
|
|
122
138
|
export type IDbContextOptionsConfiguration_1<TContext extends DbContext> = IDbContextOptionsConfiguration_1$instance<TContext>;
|
|
123
139
|
|
|
124
140
|
export interface IDbContextOptionsExtension$instance {
|
|
141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
|
|
142
|
+
|
|
125
143
|
readonly Info: DbContextOptionsExtensionInfo;
|
|
126
144
|
ApplyDefaults(options: IDbContextOptions): IDbContextOptionsExtension;
|
|
127
145
|
ApplyServices(services: IServiceCollection): void;
|
|
@@ -132,6 +150,8 @@ export interface IDbContextOptionsExtension$instance {
|
|
|
132
150
|
export type IDbContextOptionsExtension = IDbContextOptionsExtension$instance;
|
|
133
151
|
|
|
134
152
|
export interface IDbSetFinder$instance {
|
|
153
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbSetFinder: never;
|
|
154
|
+
|
|
135
155
|
FindSets(contextType: Type): IReadOnlyList<DbSetProperty>;
|
|
136
156
|
}
|
|
137
157
|
|
|
@@ -139,6 +159,8 @@ export interface IDbSetFinder$instance {
|
|
|
139
159
|
export type IDbSetFinder = IDbSetFinder$instance;
|
|
140
160
|
|
|
141
161
|
export interface IInfrastructure_1$instance<T> {
|
|
162
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
163
|
+
|
|
142
164
|
readonly Instance: T;
|
|
143
165
|
}
|
|
144
166
|
|
|
@@ -146,6 +168,8 @@ export interface IInfrastructure_1$instance<T> {
|
|
|
146
168
|
export type IInfrastructure_1<T> = IInfrastructure_1$instance<T>;
|
|
147
169
|
|
|
148
170
|
export interface IInternalServiceCollectionMap$instance {
|
|
171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInternalServiceCollectionMap: never;
|
|
172
|
+
|
|
149
173
|
AddDependencySingleton<TDependencies>(): IInternalServiceCollectionMap;
|
|
150
174
|
}
|
|
151
175
|
|
|
@@ -153,6 +177,8 @@ export interface IInternalServiceCollectionMap$instance {
|
|
|
153
177
|
export type IInternalServiceCollectionMap = IInternalServiceCollectionMap$instance;
|
|
154
178
|
|
|
155
179
|
export interface ILazyLoader$instance {
|
|
180
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader: never;
|
|
181
|
+
|
|
156
182
|
Dispose(): void;
|
|
157
183
|
IsLoaded(entity: unknown, navigationName?: string): boolean;
|
|
158
184
|
Load(entity: unknown, navigationName?: string): void;
|
|
@@ -164,6 +190,8 @@ export interface ILazyLoader$instance {
|
|
|
164
190
|
export type ILazyLoader = ILazyLoader$instance;
|
|
165
191
|
|
|
166
192
|
export interface IModelCacheKeyFactory$instance {
|
|
193
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCacheKeyFactory: never;
|
|
194
|
+
|
|
167
195
|
Create(context: DbContext, designTime: boolean): unknown;
|
|
168
196
|
}
|
|
169
197
|
|
|
@@ -171,6 +199,8 @@ export interface IModelCacheKeyFactory$instance {
|
|
|
171
199
|
export type IModelCacheKeyFactory = IModelCacheKeyFactory$instance;
|
|
172
200
|
|
|
173
201
|
export interface IModelCustomizer$instance {
|
|
202
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
203
|
+
|
|
174
204
|
Customize(modelBuilder: ModelBuilder, context: DbContext): void;
|
|
175
205
|
}
|
|
176
206
|
|
|
@@ -178,6 +208,8 @@ export interface IModelCustomizer$instance {
|
|
|
178
208
|
export type IModelCustomizer = IModelCustomizer$instance;
|
|
179
209
|
|
|
180
210
|
export interface IModelRuntimeInitializer$instance {
|
|
211
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelRuntimeInitializer: never;
|
|
212
|
+
|
|
181
213
|
Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
|
|
182
214
|
}
|
|
183
215
|
|
|
@@ -185,6 +217,8 @@ export interface IModelRuntimeInitializer$instance {
|
|
|
185
217
|
export type IModelRuntimeInitializer = IModelRuntimeInitializer$instance;
|
|
186
218
|
|
|
187
219
|
export interface IModelSource$instance {
|
|
220
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelSource: never;
|
|
221
|
+
|
|
188
222
|
GetModel(context: DbContext, modelCreationDependencies: ModelCreationDependencies, designTime: boolean): IModel;
|
|
189
223
|
}
|
|
190
224
|
|
|
@@ -192,6 +226,8 @@ export interface IModelSource$instance {
|
|
|
192
226
|
export type IModelSource = IModelSource$instance;
|
|
193
227
|
|
|
194
228
|
export interface IModelValidator$instance {
|
|
229
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
|
|
230
|
+
|
|
195
231
|
Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
|
|
196
232
|
}
|
|
197
233
|
|
|
@@ -199,6 +235,8 @@ export interface IModelValidator$instance {
|
|
|
199
235
|
export type IModelValidator = IModelValidator$instance;
|
|
200
236
|
|
|
201
237
|
export interface IReadOnlyAnnotatable$instance {
|
|
238
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
239
|
+
|
|
202
240
|
readonly [name: string]: unknown | undefined;
|
|
203
241
|
AnnotationsToDebugString(indent?: int): string;
|
|
204
242
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -209,6 +247,8 @@ export interface IReadOnlyAnnotatable$instance {
|
|
|
209
247
|
export type IReadOnlyAnnotatable = IReadOnlyAnnotatable$instance;
|
|
210
248
|
|
|
211
249
|
export interface IRelationalDbContextOptionsBuilderInfrastructure$instance {
|
|
250
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IRelationalDbContextOptionsBuilderInfrastructure: never;
|
|
251
|
+
|
|
212
252
|
readonly OptionsBuilder: DbContextOptionsBuilder;
|
|
213
253
|
}
|
|
214
254
|
|
|
@@ -216,6 +256,8 @@ export interface IRelationalDbContextOptionsBuilderInfrastructure$instance {
|
|
|
216
256
|
export type IRelationalDbContextOptionsBuilderInfrastructure = IRelationalDbContextOptionsBuilderInfrastructure$instance;
|
|
217
257
|
|
|
218
258
|
export interface IResettableService$instance {
|
|
259
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
260
|
+
|
|
219
261
|
ResetState(): void;
|
|
220
262
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
221
263
|
}
|
|
@@ -224,6 +266,8 @@ export interface IResettableService$instance {
|
|
|
224
266
|
export type IResettableService = IResettableService$instance;
|
|
225
267
|
|
|
226
268
|
export interface ISingletonOptions$instance {
|
|
269
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ISingletonOptions: never;
|
|
270
|
+
|
|
227
271
|
Initialize(options: IDbContextOptions): void;
|
|
228
272
|
}
|
|
229
273
|
|
|
@@ -231,6 +275,8 @@ export interface ISingletonOptions$instance {
|
|
|
231
275
|
export type ISingletonOptions = ISingletonOptions$instance;
|
|
232
276
|
|
|
233
277
|
export interface ConcurrencyDetectorCriticalSectionDisposer$instance {
|
|
278
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
279
|
+
|
|
234
280
|
Dispose(): void;
|
|
235
281
|
}
|
|
236
282
|
|
|
@@ -270,6 +316,10 @@ export const ServiceCharacteristics: {
|
|
|
270
316
|
export type ServiceCharacteristics = ServiceCharacteristics$instance;
|
|
271
317
|
|
|
272
318
|
export interface Annotatable$instance extends AnnotatableBase$instance {
|
|
319
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
320
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
321
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
322
|
+
|
|
273
323
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
274
324
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
275
325
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
@@ -309,6 +359,9 @@ export type Annotatable = Annotatable$instance & __Annotatable$views;
|
|
|
309
359
|
|
|
310
360
|
|
|
311
361
|
export interface AnnotatableBase$instance {
|
|
362
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
363
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
364
|
+
|
|
312
365
|
readonly IsReadOnly: boolean;
|
|
313
366
|
[name: string]: unknown | undefined;
|
|
314
367
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
@@ -353,7 +406,9 @@ export type AnnotatableBase = AnnotatableBase$instance & __AnnotatableBase$views
|
|
|
353
406
|
|
|
354
407
|
|
|
355
408
|
export interface AnnotatableBuilder_2$instance<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder> {
|
|
356
|
-
readonly
|
|
409
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
|
|
410
|
+
|
|
411
|
+
readonly Metadata: EntityType | TMetadata;
|
|
357
412
|
readonly ModelBuilder: InternalModelBuilder | TModelBuilder;
|
|
358
413
|
CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
|
|
359
414
|
CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
|
|
@@ -378,6 +433,8 @@ export type AnnotatableBuilder_2<TMetadata extends ConventionAnnotatable, TModel
|
|
|
378
433
|
|
|
379
434
|
|
|
380
435
|
export interface Annotation$instance {
|
|
436
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotation: never;
|
|
437
|
+
|
|
381
438
|
readonly Name: string;
|
|
382
439
|
readonly Value: unknown | undefined;
|
|
383
440
|
}
|
|
@@ -398,6 +455,11 @@ export type Annotation = Annotation$instance & __Annotation$views;
|
|
|
398
455
|
|
|
399
456
|
|
|
400
457
|
export interface ConventionAnnotatable$instance extends Annotatable$instance {
|
|
458
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
459
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
460
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IConventionAnnotatable: never;
|
|
461
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
462
|
+
|
|
401
463
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
402
464
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
403
465
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -441,6 +503,8 @@ export type ConventionAnnotatable = ConventionAnnotatable$instance & __Conventio
|
|
|
441
503
|
|
|
442
504
|
|
|
443
505
|
export interface CoreOptionsExtension$instance {
|
|
506
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
|
|
507
|
+
|
|
444
508
|
readonly ApplicationServiceProvider: IServiceProvider | undefined;
|
|
445
509
|
readonly AsyncSeeder: Func<DbContext, System_Internal.Boolean, CancellationToken, Task> | undefined;
|
|
446
510
|
readonly AutoResolveRootProvider: boolean;
|
|
@@ -505,6 +569,10 @@ export type CoreOptionsExtension = CoreOptionsExtension$instance & __CoreOptions
|
|
|
505
569
|
|
|
506
570
|
|
|
507
571
|
export interface DatabaseFacade$instance {
|
|
572
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
573
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
574
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Storage_IDatabaseFacadeDependenciesAccessor: never;
|
|
575
|
+
|
|
508
576
|
AutoSavepointsEnabled: boolean;
|
|
509
577
|
AutoTransactionBehavior: AutoTransactionBehavior;
|
|
510
578
|
AutoTransactionsEnabled: boolean;
|
|
@@ -600,6 +668,8 @@ export const DebugView: {
|
|
|
600
668
|
export type DebugView = DebugView$instance;
|
|
601
669
|
|
|
602
670
|
export interface EntityFrameworkEventSource$instance extends EventSource {
|
|
671
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
672
|
+
|
|
603
673
|
CompiledQueryCacheHit(): void;
|
|
604
674
|
CompiledQueryCacheMiss(): void;
|
|
605
675
|
DbContextDisposing(): void;
|
|
@@ -715,6 +785,8 @@ export const ModelCacheKey: {
|
|
|
715
785
|
export type ModelCacheKey = ModelCacheKey$instance;
|
|
716
786
|
|
|
717
787
|
export interface ModelCacheKeyFactory$instance {
|
|
788
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCacheKeyFactory: never;
|
|
789
|
+
|
|
718
790
|
readonly Dependencies: ModelCacheKeyFactoryDependencies;
|
|
719
791
|
Create(context: DbContext): unknown;
|
|
720
792
|
Create(context: DbContext, designTime: boolean): unknown;
|
|
@@ -734,6 +806,8 @@ export type ModelCacheKeyFactory = ModelCacheKeyFactory$instance & __ModelCacheK
|
|
|
734
806
|
|
|
735
807
|
|
|
736
808
|
export interface ModelCacheKeyFactoryDependencies$instance {
|
|
809
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
810
|
+
|
|
737
811
|
_Clone_$(): ModelCacheKeyFactoryDependencies;
|
|
738
812
|
Equals(obj: unknown): boolean;
|
|
739
813
|
Equals(other: ModelCacheKeyFactoryDependencies): boolean;
|
|
@@ -750,6 +824,8 @@ export const ModelCacheKeyFactoryDependencies: {
|
|
|
750
824
|
export type ModelCacheKeyFactoryDependencies = ModelCacheKeyFactoryDependencies$instance;
|
|
751
825
|
|
|
752
826
|
export interface ModelCustomizer$instance {
|
|
827
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
828
|
+
|
|
753
829
|
readonly Dependencies: ModelCustomizerDependencies;
|
|
754
830
|
Customize(modelBuilder: ModelBuilder, context: DbContext): void;
|
|
755
831
|
}
|
|
@@ -770,6 +846,8 @@ export type ModelCustomizer = ModelCustomizer$instance & __ModelCustomizer$views
|
|
|
770
846
|
|
|
771
847
|
|
|
772
848
|
export interface ModelCustomizerDependencies$instance {
|
|
849
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
850
|
+
|
|
773
851
|
_Clone_$(): ModelCustomizerDependencies;
|
|
774
852
|
Equals(obj: unknown): boolean;
|
|
775
853
|
Equals(other: ModelCustomizerDependencies): boolean;
|
|
@@ -786,6 +864,8 @@ export const ModelCustomizerDependencies: {
|
|
|
786
864
|
export type ModelCustomizerDependencies = ModelCustomizerDependencies$instance;
|
|
787
865
|
|
|
788
866
|
export interface ModelDependencies$instance {
|
|
867
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
868
|
+
|
|
789
869
|
Logger: IDiagnosticsLogger_1<DbLoggerCategory_Model>;
|
|
790
870
|
_Clone_$(): ModelDependencies;
|
|
791
871
|
Equals(obj: unknown): boolean;
|
|
@@ -817,6 +897,8 @@ export const ModelRuntimeInitializer: {
|
|
|
817
897
|
export type ModelRuntimeInitializer = ModelRuntimeInitializer$instance;
|
|
818
898
|
|
|
819
899
|
export interface ModelRuntimeInitializerDependencies$instance {
|
|
900
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
901
|
+
|
|
820
902
|
ModelDependencies: RuntimeModelDependencies;
|
|
821
903
|
ModelValidator: IModelValidator;
|
|
822
904
|
_Clone_$(): ModelRuntimeInitializerDependencies;
|
|
@@ -847,6 +929,8 @@ export const ModelSnapshot: (abstract new() => ModelSnapshot) & {
|
|
|
847
929
|
export type ModelSnapshot = ModelSnapshot$instance;
|
|
848
930
|
|
|
849
931
|
export interface ModelSource$instance {
|
|
932
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelSource: never;
|
|
933
|
+
|
|
850
934
|
readonly Dependencies: ModelSourceDependencies;
|
|
851
935
|
CreateModel(context: DbContext, modelCreationDependencies: ModelCreationDependencies, designTime: boolean): IModel;
|
|
852
936
|
CreateModel(context: DbContext, conventionSetBuilder: IConventionSetBuilder, modelDependencies: ModelDependencies): IModel;
|
|
@@ -869,6 +953,8 @@ export type ModelSource = ModelSource$instance & __ModelSource$views;
|
|
|
869
953
|
|
|
870
954
|
|
|
871
955
|
export interface ModelSourceDependencies$instance {
|
|
956
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
957
|
+
|
|
872
958
|
MemoryCache: IMemoryCache;
|
|
873
959
|
ModelCacheKeyFactory: IModelCacheKeyFactory;
|
|
874
960
|
ModelCustomizer: IModelCustomizer;
|
|
@@ -888,6 +974,8 @@ export const ModelSourceDependencies: {
|
|
|
888
974
|
export type ModelSourceDependencies = ModelSourceDependencies$instance;
|
|
889
975
|
|
|
890
976
|
export interface ModelValidator$instance {
|
|
977
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
|
|
978
|
+
|
|
891
979
|
readonly Dependencies: ModelValidatorDependencies;
|
|
892
980
|
IsOwned(targetType: Type, conventionModel: IConventionModel): boolean;
|
|
893
981
|
IsRedundant(foreignKey: IForeignKey): boolean;
|
|
@@ -935,6 +1023,8 @@ export type ModelValidator = ModelValidator$instance & __ModelValidator$views;
|
|
|
935
1023
|
|
|
936
1024
|
|
|
937
1025
|
export interface ModelValidatorDependencies$instance {
|
|
1026
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1027
|
+
|
|
938
1028
|
MemberClassifier: IMemberClassifier;
|
|
939
1029
|
_Clone_$(): ModelValidatorDependencies;
|
|
940
1030
|
Equals(obj: unknown): boolean;
|
|
@@ -952,6 +1042,8 @@ export const ModelValidatorDependencies: {
|
|
|
952
1042
|
export type ModelValidatorDependencies = ModelValidatorDependencies$instance;
|
|
953
1043
|
|
|
954
1044
|
export interface PooledDbContextFactory_1$instance<TContext extends DbContext> {
|
|
1045
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
|
|
1046
|
+
|
|
955
1047
|
CreateDbContext(): TContext;
|
|
956
1048
|
CreateDbContextAsync(cancellationToken?: CancellationToken): Task<TContext>;
|
|
957
1049
|
}
|
|
@@ -973,6 +1065,8 @@ export type PooledDbContextFactory_1<TContext extends DbContext> = PooledDbConte
|
|
|
973
1065
|
|
|
974
1066
|
|
|
975
1067
|
export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> {
|
|
1068
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IRelationalDbContextOptionsBuilderInfrastructure: never;
|
|
1069
|
+
|
|
976
1070
|
readonly OptionsBuilder: DbContextOptionsBuilder;
|
|
977
1071
|
CommandTimeout(commandTimeout: Nullable<System_Internal.Int32>): TBuilder;
|
|
978
1072
|
Equals(obj: unknown): boolean;
|
|
@@ -1007,6 +1101,8 @@ export type RelationalDbContextOptionsBuilder_2<TBuilder extends RelationalDbCon
|
|
|
1007
1101
|
|
|
1008
1102
|
|
|
1009
1103
|
export interface RelationalModelCustomizer$instance extends ModelCustomizer$instance {
|
|
1104
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
|
|
1105
|
+
|
|
1010
1106
|
Customize(modelBuilder: ModelBuilder, context: DbContext): void;
|
|
1011
1107
|
}
|
|
1012
1108
|
|
|
@@ -1024,6 +1120,8 @@ export type RelationalModelCustomizer = RelationalModelCustomizer$instance & __R
|
|
|
1024
1120
|
|
|
1025
1121
|
|
|
1026
1122
|
export interface RelationalModelDependencies$instance {
|
|
1123
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1124
|
+
|
|
1027
1125
|
RowForeignKeyValueFactoryFactory: IRowForeignKeyValueFactoryFactory;
|
|
1028
1126
|
RowIndexValueFactoryFactory: IRowIndexValueFactoryFactory;
|
|
1029
1127
|
RowKeyValueFactoryFactory: IRowKeyValueFactoryFactory;
|
|
@@ -1044,6 +1142,8 @@ export const RelationalModelDependencies: {
|
|
|
1044
1142
|
export type RelationalModelDependencies = RelationalModelDependencies$instance;
|
|
1045
1143
|
|
|
1046
1144
|
export interface RelationalModelRuntimeInitializer$instance extends ModelRuntimeInitializer {
|
|
1145
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelRuntimeInitializer: never;
|
|
1146
|
+
|
|
1047
1147
|
readonly RelationalDependencies: RelationalModelRuntimeInitializerDependencies;
|
|
1048
1148
|
Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
|
|
1049
1149
|
InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
|
|
@@ -1063,6 +1163,8 @@ export type RelationalModelRuntimeInitializer = RelationalModelRuntimeInitialize
|
|
|
1063
1163
|
|
|
1064
1164
|
|
|
1065
1165
|
export interface RelationalModelRuntimeInitializerDependencies$instance {
|
|
1166
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1167
|
+
|
|
1066
1168
|
RelationalAnnotationProvider: IRelationalAnnotationProvider;
|
|
1067
1169
|
RelationalModelDependencies: RelationalModelDependencies;
|
|
1068
1170
|
_Clone_$(): RelationalModelRuntimeInitializerDependencies;
|
|
@@ -1081,6 +1183,8 @@ export const RelationalModelRuntimeInitializerDependencies: {
|
|
|
1081
1183
|
export type RelationalModelRuntimeInitializerDependencies = RelationalModelRuntimeInitializerDependencies$instance;
|
|
1082
1184
|
|
|
1083
1185
|
export interface RelationalModelValidator$instance extends ModelValidator$instance {
|
|
1186
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
|
|
1187
|
+
|
|
1084
1188
|
readonly RelationalDependencies: RelationalModelValidatorDependencies;
|
|
1085
1189
|
GetDefaultColumnValue(property: IProperty, storeObject: StoreObjectIdentifier): unknown | undefined;
|
|
1086
1190
|
IsRedundant(foreignKey: IForeignKey): boolean;
|
|
@@ -1148,6 +1252,8 @@ export type RelationalModelValidator = RelationalModelValidator$instance & __Rel
|
|
|
1148
1252
|
|
|
1149
1253
|
|
|
1150
1254
|
export interface RelationalModelValidatorDependencies$instance {
|
|
1255
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1256
|
+
|
|
1151
1257
|
TypeMappingSource: IRelationalTypeMappingSource;
|
|
1152
1258
|
_Clone_$(): RelationalModelValidatorDependencies;
|
|
1153
1259
|
Equals(obj: unknown): boolean;
|
|
@@ -1165,6 +1271,8 @@ export const RelationalModelValidatorDependencies: {
|
|
|
1165
1271
|
export type RelationalModelValidatorDependencies = RelationalModelValidatorDependencies$instance;
|
|
1166
1272
|
|
|
1167
1273
|
export interface RelationalOptionsExtension$instance {
|
|
1274
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
|
|
1275
|
+
|
|
1168
1276
|
readonly CommandTimeout: Nullable<System_Internal.Int32>;
|
|
1169
1277
|
readonly Connection: DbConnection | undefined;
|
|
1170
1278
|
readonly ConnectionString: string | undefined;
|
|
@@ -1216,6 +1324,9 @@ export type RelationalOptionsExtension = RelationalOptionsExtension$instance & _
|
|
|
1216
1324
|
|
|
1217
1325
|
|
|
1218
1326
|
export interface RuntimeAnnotatableBase$instance {
|
|
1327
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
1328
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
1329
|
+
|
|
1219
1330
|
[name: string]: unknown | undefined;
|
|
1220
1331
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
1221
1332
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
@@ -1253,6 +1364,8 @@ export type RuntimeAnnotatableBase = RuntimeAnnotatableBase$instance & __Runtime
|
|
|
1253
1364
|
|
|
1254
1365
|
|
|
1255
1366
|
export interface RuntimeModelDependencies$instance {
|
|
1367
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1368
|
+
|
|
1256
1369
|
ConstructorBindingFactory: IConstructorBindingFactory;
|
|
1257
1370
|
ParameterBindingFactories: IParameterBindingFactories;
|
|
1258
1371
|
TypeMappingSource: ITypeMappingSource;
|
|
@@ -1272,6 +1385,8 @@ export const RuntimeModelDependencies: {
|
|
|
1272
1385
|
export type RuntimeModelDependencies = RuntimeModelDependencies$instance;
|
|
1273
1386
|
|
|
1274
1387
|
export interface ServiceCollectionMap$instance {
|
|
1388
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1389
|
+
|
|
1275
1390
|
readonly ServiceCollection: IServiceCollection;
|
|
1276
1391
|
TryAdd(serviceType: Type, implementationType: Type, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
1277
1392
|
TryAdd(serviceType: Type, factory: Func<IServiceProvider, unknown>, lifetime: ServiceLifetime): ServiceCollectionMap;
|
|
@@ -24,17 +24,21 @@ import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
|
24
24
|
import type { IServiceCollection, ServiceDescriptor, ServiceLifetime } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
25
25
|
|
|
26
26
|
export interface ILazyLoaderFactory$instance extends IDisposable, IResettableService {
|
|
27
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_Internal_ILazyLoaderFactory: never;
|
|
28
|
+
|
|
27
29
|
Create(): ILazyLoader;
|
|
28
30
|
ResetState(): void;
|
|
29
31
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
|
|
33
|
-
export interface ILazyLoaderFactory$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
35
|
+
export interface ILazyLoaderFactory$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance, System_Internal.IDisposable {}
|
|
34
36
|
|
|
35
37
|
export type ILazyLoaderFactory = ILazyLoaderFactory$instance;
|
|
36
38
|
|
|
37
39
|
export interface ConcurrencyDetector$instance {
|
|
40
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IConcurrencyDetector: never;
|
|
41
|
+
|
|
38
42
|
EnterCriticalSection(): ConcurrencyDetectorCriticalSectionDisposer;
|
|
39
43
|
ExitCriticalSection(): void;
|
|
40
44
|
}
|
|
@@ -55,6 +59,9 @@ export type ConcurrencyDetector = ConcurrencyDetector$instance & __ConcurrencyDe
|
|
|
55
59
|
|
|
56
60
|
|
|
57
61
|
export interface CoreSingletonOptions$instance {
|
|
62
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICoreSingletonOptions: never;
|
|
63
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ISingletonOptions: never;
|
|
64
|
+
|
|
58
65
|
AreDetailedErrorsEnabled: boolean;
|
|
59
66
|
AreThreadSafetyChecksEnabled: boolean;
|
|
60
67
|
get RootApplicationServiceProvider(): IServiceProvider | undefined;
|
|
@@ -78,6 +85,8 @@ export type CoreSingletonOptions = CoreSingletonOptions$instance & __CoreSinglet
|
|
|
78
85
|
|
|
79
86
|
|
|
80
87
|
export interface CurrentDbContext$instance {
|
|
88
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICurrentDbContext: never;
|
|
89
|
+
|
|
81
90
|
readonly Context: DbContext;
|
|
82
91
|
}
|
|
83
92
|
|
|
@@ -97,6 +106,8 @@ export type CurrentDbContext = CurrentDbContext$instance & __CurrentDbContext$vi
|
|
|
97
106
|
|
|
98
107
|
|
|
99
108
|
export interface DbContextOptionsConfiguration_1$instance<TContext extends DbContext> {
|
|
109
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsConfiguration_1: never;
|
|
110
|
+
|
|
100
111
|
Configure(serviceProvider: IServiceProvider, optionsBuilder: DbContextOptionsBuilder): void;
|
|
101
112
|
}
|
|
102
113
|
|
|
@@ -116,6 +127,8 @@ export type DbContextOptionsConfiguration_1<TContext extends DbContext> = DbCont
|
|
|
116
127
|
|
|
117
128
|
|
|
118
129
|
export interface DbSetFinder$instance {
|
|
130
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbSetFinder: never;
|
|
131
|
+
|
|
119
132
|
FindSets(contextType: Type): IReadOnlyList<DbSetProperty>;
|
|
120
133
|
}
|
|
121
134
|
|
|
@@ -172,6 +185,9 @@ export const InternalServiceCollectionMap: {
|
|
|
172
185
|
export type InternalServiceCollectionMap = InternalServiceCollectionMap$instance;
|
|
173
186
|
|
|
174
187
|
export interface LazyLoader$instance {
|
|
188
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader: never;
|
|
189
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IInjectableService: never;
|
|
190
|
+
|
|
175
191
|
get Context(): DbContext | undefined;
|
|
176
192
|
set Context(value: DbContext | undefined);
|
|
177
193
|
readonly Logger: IDiagnosticsLogger_1<DbLoggerCategory_Infrastructure>;
|
|
@@ -202,6 +218,10 @@ export type LazyLoader = LazyLoader$instance & __LazyLoader$views;
|
|
|
202
218
|
|
|
203
219
|
|
|
204
220
|
export interface LazyLoaderFactory$instance {
|
|
221
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_Internal_ILazyLoaderFactory: never;
|
|
223
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
224
|
+
|
|
205
225
|
Create(): ILazyLoader;
|
|
206
226
|
Dispose(): void;
|
|
207
227
|
ResetState(): void;
|
|
@@ -223,6 +243,8 @@ export type LazyLoaderFactory = LazyLoaderFactory$instance & __LazyLoaderFactory
|
|
|
223
243
|
|
|
224
244
|
|
|
225
245
|
export interface MemberInfoNameComparer$instance {
|
|
246
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
247
|
+
|
|
226
248
|
Compare(x: MemberInfo, y: MemberInfo): int;
|
|
227
249
|
}
|
|
228
250
|
|