@tsonic/efcore 10.0.2 → 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.
Files changed (37) hide show
  1. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
  2. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
  3. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
  4. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
  5. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
  6. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
  7. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
  8. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
  9. package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
  10. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
  11. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
  12. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
  13. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
  14. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
  15. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
  16. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
  17. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
  18. package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
  19. package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
  20. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
  21. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
  22. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
  23. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
  24. package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
  25. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
  26. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
  27. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
  28. package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
  29. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
  30. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
  31. package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
  32. package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
  33. package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
  34. package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
  35. package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
  36. package/__internal/extensions/index.d.ts +860 -595
  37. package/package.json +1 -1
@@ -48,7 +48,9 @@ export enum MetadataDebugStringOptions {
48
48
 
49
49
 
50
50
  export interface IAnnotatable$instance extends IReadOnlyAnnotatable {
51
- readonly Item: unknown | undefined;
51
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
52
+
53
+ readonly [name: string]: unknown | undefined;
52
54
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
53
55
  AnnotationsToDebugString(indent?: int): string;
54
56
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
@@ -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,7 +235,9 @@ export interface IModelValidator$instance {
199
235
  export type IModelValidator = IModelValidator$instance;
200
236
 
201
237
  export interface IReadOnlyAnnotatable$instance {
202
- readonly Item: unknown | undefined;
238
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
239
+
240
+ readonly [name: string]: unknown | undefined;
203
241
  AnnotationsToDebugString(indent?: int): string;
204
242
  FindAnnotation(name: string): IAnnotation | undefined;
205
243
  GetAnnotations(): IEnumerable<IAnnotation>;
@@ -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
 
@@ -269,22 +315,21 @@ export const ServiceCharacteristics: {
269
315
 
270
316
  export type ServiceCharacteristics = ServiceCharacteristics$instance;
271
317
 
272
- export abstract class Annotatable$protected {
273
- protected AddAnnotation2(name: string, annotation: Annotation): Annotation;
274
- protected AddRuntimeAnnotation2(name: string, annotation: Annotation): Annotation;
275
- protected EnsureMutable(): void;
276
- protected EnsureReadOnly(): void;
277
- protected SetAnnotation2(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
278
- }
279
-
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;
280
322
 
281
- export interface Annotatable$instance extends Annotatable$protected, AnnotatableBase$instance {
282
323
  AddAnnotation(name: string, value: unknown): Annotation;
324
+ AddAnnotation(name: string, annotation: Annotation): Annotation;
283
325
  AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
284
326
  AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
285
327
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
328
+ AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
286
329
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
287
330
  AnnotationsToDebugString(indent?: int): string;
331
+ EnsureMutable(): void;
332
+ EnsureReadOnly(): void;
288
333
  FindAnnotation(name: string): Annotation | undefined;
289
334
  FindAnnotation(name: string): IAnnotation | undefined;
290
335
  FindRuntimeAnnotation(name: string): Annotation | undefined;
@@ -295,6 +340,7 @@ export interface Annotatable$instance extends Annotatable$protected, Annotatable
295
340
  GetRuntimeAnnotations(): IEnumerable<Annotation>;
296
341
  RemoveAnnotation(name: string): Annotation | undefined;
297
342
  SetAnnotation(name: string, value: unknown): void;
343
+ SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
298
344
  }
299
345
 
300
346
 
@@ -312,39 +358,37 @@ export interface __Annotatable$views {
312
358
  export type Annotatable = Annotatable$instance & __Annotatable$views;
313
359
 
314
360
 
315
- export abstract class AnnotatableBase$protected {
316
- protected AddAnnotation(name: string, annotation: Annotation): Annotation;
317
- protected AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
318
- protected CreateAnnotation(name: string, value: unknown): Annotation;
319
- protected CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
320
- protected EnsureMutable(): void;
321
- protected EnsureReadOnly(): void;
322
- protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
323
- protected SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
324
- protected SetRuntimeAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation;
325
- }
326
-
361
+ export interface AnnotatableBase$instance {
362
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
363
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
327
364
 
328
- export interface AnnotatableBase$instance extends AnnotatableBase$protected {
329
365
  readonly IsReadOnly: boolean;
330
- get Item(): unknown | undefined;
331
- set Item(value: unknown);
366
+ [name: string]: unknown | undefined;
332
367
  AddAnnotation(name: string, value: unknown): Annotation;
368
+ AddAnnotation(name: string, annotation: Annotation): Annotation;
333
369
  AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
334
370
  AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
335
371
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
372
+ AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
336
373
  AddRuntimeAnnotations(annotations: IEnumerable<Annotation>): void;
337
374
  AddRuntimeAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
375
+ CreateAnnotation(name: string, value: unknown): Annotation;
376
+ CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
377
+ EnsureMutable(): void;
378
+ EnsureReadOnly(): void;
338
379
  FindAnnotation(name: string): Annotation | undefined;
339
380
  FindRuntimeAnnotation(name: string): Annotation | undefined;
340
381
  GetAnnotation(annotationName: string): Annotation;
341
382
  GetAnnotations(): IEnumerable<Annotation>;
342
383
  GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
343
384
  GetRuntimeAnnotations(): IEnumerable<Annotation>;
385
+ OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
344
386
  RemoveAnnotation(name: string): Annotation | undefined;
345
387
  RemoveRuntimeAnnotation(name: string): Annotation | undefined;
346
388
  SetAnnotation(name: string, value: unknown): void;
389
+ SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
347
390
  SetRuntimeAnnotation(name: string, value: unknown): Annotation;
391
+ SetRuntimeAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation;
348
392
  }
349
393
 
350
394
 
@@ -362,7 +406,9 @@ export type AnnotatableBase = AnnotatableBase$instance & __AnnotatableBase$views
362
406
 
363
407
 
364
408
  export interface AnnotatableBuilder_2$instance<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder> {
365
- readonly Metadata: ComplexType | TMetadata;
409
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
410
+
411
+ readonly Metadata: EntityType | TMetadata;
366
412
  readonly ModelBuilder: InternalModelBuilder | TModelBuilder;
367
413
  CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
368
414
  CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
@@ -375,8 +421,7 @@ export interface AnnotatableBuilder_2$instance<TMetadata extends ConventionAnnot
375
421
  }
376
422
 
377
423
 
378
- export const AnnotatableBuilder_2: {
379
- new<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder>(metadata: TMetadata, modelBuilder: TModelBuilder): AnnotatableBuilder_2<TMetadata, TModelBuilder>;
424
+ export const AnnotatableBuilder_2: (abstract new<TMetadata extends ConventionAnnotatable, TModelBuilder extends IConventionModelBuilder>(metadata: TMetadata, modelBuilder: TModelBuilder) => AnnotatableBuilder_2<TMetadata, TModelBuilder>) & {
380
425
  };
381
426
 
382
427
 
@@ -388,6 +433,8 @@ export type AnnotatableBuilder_2<TMetadata extends ConventionAnnotatable, TModel
388
433
 
389
434
 
390
435
  export interface Annotation$instance {
436
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotation: never;
437
+
391
438
  readonly Name: string;
392
439
  readonly Value: unknown | undefined;
393
440
  }
@@ -407,24 +454,22 @@ export interface Annotation$instance extends IAnnotation$instance {}
407
454
  export type Annotation = Annotation$instance & __Annotation$views;
408
455
 
409
456
 
410
- export abstract class ConventionAnnotatable$protected {
411
- protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
412
- protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
413
- protected CreateAnnotation(name: string, value: unknown): Annotation;
414
- protected OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
415
- protected OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
416
- protected SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
417
- }
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;
418
462
 
419
-
420
- export interface ConventionAnnotatable$instance extends ConventionAnnotatable$protected, Annotatable$instance {
421
463
  AddAnnotation(name: string, value: unknown): IAnnotation;
422
464
  AddAnnotation(name: string, value: unknown): Annotation;
465
+ AddAnnotation(name: string, annotation: Annotation): Annotation;
423
466
  AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
424
467
  AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
425
468
  AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
426
469
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
470
+ AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
427
471
  AnnotationsToDebugString(indent?: int): string;
472
+ CreateAnnotation(name: string, value: unknown): Annotation;
428
473
  FindAnnotation(name: string): IAnnotation | undefined;
429
474
  FindAnnotation(name: string): Annotation | undefined;
430
475
  FindRuntimeAnnotation(name: string): IAnnotation | undefined;
@@ -433,15 +478,17 @@ export interface ConventionAnnotatable$instance extends ConventionAnnotatable$pr
433
478
  GetAnnotations(): IEnumerable<IAnnotation>;
434
479
  GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func<TArg, TValue>, factoryArgument: TArg): TValue;
435
480
  GetRuntimeAnnotations(): IEnumerable<IAnnotation>;
481
+ OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
482
+ OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
436
483
  RemoveAnnotation(name: string): IAnnotation | undefined;
437
484
  RemoveAnnotation(name: string): Annotation | undefined;
438
- SetAnnotation2(name: string, value: unknown): void;
485
+ SetAnnotation(name: string, value: unknown): void;
486
+ SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
439
487
  SetOrRemoveAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
440
488
  }
441
489
 
442
490
 
443
- export const ConventionAnnotatable: {
444
- new(): ConventionAnnotatable;
491
+ export const ConventionAnnotatable: (abstract new() => ConventionAnnotatable) & {
445
492
  };
446
493
 
447
494
 
@@ -455,35 +502,33 @@ export interface __ConventionAnnotatable$views {
455
502
  export type ConventionAnnotatable = ConventionAnnotatable$instance & __ConventionAnnotatable$views;
456
503
 
457
504
 
458
- export abstract class CoreOptionsExtension$protected {
459
- protected Clone(): CoreOptionsExtension;
460
- }
461
-
505
+ export interface CoreOptionsExtension$instance {
506
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
462
507
 
463
- export interface CoreOptionsExtension$instance extends CoreOptionsExtension$protected {
464
508
  readonly ApplicationServiceProvider: IServiceProvider | undefined;
465
509
  readonly AsyncSeeder: Func<DbContext, System_Internal.Boolean, CancellationToken, Task> | undefined;
466
510
  readonly AutoResolveRootProvider: boolean;
467
- readonly DbContextLogger: IDbContextLogger;
511
+ readonly DbContextLogger: IDbContextLogger | undefined;
468
512
  readonly DetailedErrorsEnabled: boolean;
469
513
  readonly Info: DbContextOptionsExtensionInfo;
470
- readonly Interceptors: IEnumerable<IInterceptor>;
471
- readonly InternalServiceProvider: IServiceProvider;
514
+ readonly Interceptors: IEnumerable<IInterceptor> | undefined;
515
+ readonly InternalServiceProvider: IServiceProvider | undefined;
472
516
  readonly IsSensitiveDataLoggingEnabled: boolean;
473
517
  readonly LoggerFactory: ILoggerFactory | undefined;
474
518
  readonly LoggingCacheTime: TimeSpan;
475
519
  readonly MaxPoolSize: Nullable<System_Internal.Int32>;
476
- readonly MemoryCache: IMemoryCache;
477
- readonly Model: IModel;
520
+ readonly MemoryCache: IMemoryCache | undefined;
521
+ readonly Model: IModel | undefined;
478
522
  readonly QueryTrackingBehavior: QueryTrackingBehavior;
479
523
  readonly ReplacedServices: IReadOnlyDictionary<ValueTuple<Type, Type>, Type | undefined> | undefined;
480
524
  readonly RootApplicationServiceProvider: IServiceProvider | undefined;
481
525
  readonly Seeder: Action<DbContext, System_Internal.Boolean> | undefined;
482
526
  readonly ServiceProviderCachingEnabled: boolean;
483
- readonly SingletonInterceptors: IEnumerable<ISingletonInterceptor>;
527
+ readonly SingletonInterceptors: IEnumerable<ISingletonInterceptor> | undefined;
484
528
  readonly ThreadSafetyChecksEnabled: boolean;
485
529
  readonly WarningsConfiguration: WarningsConfiguration;
486
530
  ApplyServices(services: IServiceCollection): void;
531
+ Clone(): CoreOptionsExtension;
487
532
  Validate(options: IDbContextOptions): void;
488
533
  WithApplicationServiceProvider(applicationServiceProvider: IServiceProvider): CoreOptionsExtension;
489
534
  WithAsyncSeeding(seedAsync: Func<DbContext, System_Internal.Boolean, CancellationToken, Task>): CoreOptionsExtension;
@@ -511,7 +556,6 @@ export interface CoreOptionsExtension$instance extends CoreOptionsExtension$prot
511
556
 
512
557
  export const CoreOptionsExtension: {
513
558
  new(): CoreOptionsExtension;
514
- new(copyFrom: CoreOptionsExtension): CoreOptionsExtension;
515
559
  };
516
560
 
517
561
 
@@ -525,6 +569,10 @@ export type CoreOptionsExtension = CoreOptionsExtension$instance & __CoreOptions
525
569
 
526
570
 
527
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
+
528
576
  AutoSavepointsEnabled: boolean;
529
577
  AutoTransactionBehavior: AutoTransactionBehavior;
530
578
  AutoTransactionsEnabled: boolean;
@@ -600,8 +648,7 @@ export interface DbContextOptionsExtensionInfo$instance {
600
648
  }
601
649
 
602
650
 
603
- export const DbContextOptionsExtensionInfo: {
604
- new(extension: IDbContextOptionsExtension): DbContextOptionsExtensionInfo;
651
+ export const DbContextOptionsExtensionInfo: (abstract new(extension: IDbContextOptionsExtension) => DbContextOptionsExtensionInfo) & {
605
652
  };
606
653
 
607
654
 
@@ -620,17 +667,15 @@ export const DebugView: {
620
667
 
621
668
  export type DebugView = DebugView$instance;
622
669
 
623
- export abstract class EntityFrameworkEventSource$protected {
624
- protected OnEventCommand(command: EventCommandEventArgs): void;
625
- }
626
-
670
+ export interface EntityFrameworkEventSource$instance extends EventSource {
671
+ readonly __tsonic_iface_System_IDisposable: never;
627
672
 
628
- export interface EntityFrameworkEventSource$instance extends EntityFrameworkEventSource$protected, EventSource {
629
673
  CompiledQueryCacheHit(): void;
630
674
  CompiledQueryCacheMiss(): void;
631
675
  DbContextDisposing(): void;
632
676
  DbContextInitializing(): void;
633
677
  ExecutionStrategyOperationFailure(): void;
678
+ OnEventCommand(command: EventCommandEventArgs): void;
634
679
  OptimisticConcurrencyFailure(): void;
635
680
  QueryExecuting(): void;
636
681
  SavingChanges(): void;
@@ -638,7 +683,6 @@ export interface EntityFrameworkEventSource$instance extends EntityFrameworkEven
638
683
 
639
684
 
640
685
  export const EntityFrameworkEventSource: {
641
- new(): EntityFrameworkEventSource;
642
686
  readonly Log: EntityFrameworkEventSource;
643
687
  };
644
688
 
@@ -656,14 +700,10 @@ export const EntityFrameworkInternalAttribute: {
656
700
 
657
701
  export type EntityFrameworkInternalAttribute = EntityFrameworkInternalAttribute$instance;
658
702
 
659
- export abstract class EntityFrameworkRelationalServicesBuilder$protected {
660
- protected TryGetServiceCharacteristics2(serviceType: Type): Nullable<ServiceCharacteristics>;
661
- protected TryGetServiceCharacteristics(serviceType: Type): Nullable<ServiceCharacteristics>;
662
- }
663
-
664
-
665
- export interface EntityFrameworkRelationalServicesBuilder$instance extends EntityFrameworkRelationalServicesBuilder$protected, EntityFrameworkServicesBuilder {
703
+ export interface EntityFrameworkRelationalServicesBuilder$instance extends EntityFrameworkServicesBuilder {
666
704
  TryAddCoreServices(): EntityFrameworkServicesBuilder;
705
+ TryGetServiceCharacteristics(serviceType: Type): Nullable<ServiceCharacteristics>;
706
+ TryGetServiceCharacteristics(serviceType: Type): Nullable<ServiceCharacteristics>;
667
707
  }
668
708
 
669
709
 
@@ -675,14 +715,9 @@ export const EntityFrameworkRelationalServicesBuilder: {
675
715
 
676
716
  export type EntityFrameworkRelationalServicesBuilder = EntityFrameworkRelationalServicesBuilder$instance;
677
717
 
678
- export abstract class EntityFrameworkServicesBuilder$protected {
679
- protected readonly ServiceCollectionMap: ServiceCollectionMap;
680
- protected GetServiceCharacteristics(serviceType: Type): ServiceCharacteristics;
681
- protected TryGetServiceCharacteristics(serviceType: Type): Nullable<ServiceCharacteristics>;
682
- }
683
-
684
-
685
- export interface EntityFrameworkServicesBuilder$instance extends EntityFrameworkServicesBuilder$protected {
718
+ export interface EntityFrameworkServicesBuilder$instance {
719
+ readonly ServiceCollectionMap: ServiceCollectionMap;
720
+ GetServiceCharacteristics(serviceType: Type): ServiceCharacteristics;
686
721
  TryAdd<TService, TImplementation extends TService>(): EntityFrameworkServicesBuilder;
687
722
  TryAdd(serviceType: Type, implementationType: Type): EntityFrameworkServicesBuilder;
688
723
  TryAdd<TService>(factory: Func<IServiceProvider, TService>): EntityFrameworkServicesBuilder;
@@ -691,6 +726,7 @@ export interface EntityFrameworkServicesBuilder$instance extends EntityFramework
691
726
  TryAdd(serviceType: Type, implementation: unknown): EntityFrameworkServicesBuilder;
692
727
  TryAddCoreServices(): EntityFrameworkServicesBuilder;
693
728
  TryAddProviderSpecificServices(serviceMap: Action<ServiceCollectionMap>): EntityFrameworkServicesBuilder;
729
+ TryGetServiceCharacteristics(serviceType: Type): Nullable<ServiceCharacteristics>;
694
730
  }
695
731
 
696
732
 
@@ -733,12 +769,8 @@ export const IndentedStringBuilder: {
733
769
 
734
770
  export type IndentedStringBuilder = IndentedStringBuilder$instance;
735
771
 
736
- export abstract class ModelCacheKey$protected {
737
- protected Equals(other: ModelCacheKey): boolean;
738
- }
739
-
740
-
741
- export interface ModelCacheKey$instance extends ModelCacheKey$protected {
772
+ export interface ModelCacheKey$instance {
773
+ Equals(other: ModelCacheKey): boolean;
742
774
  Equals(obj: unknown): boolean;
743
775
  GetHashCode(): int;
744
776
  }
@@ -752,12 +784,10 @@ export const ModelCacheKey: {
752
784
 
753
785
  export type ModelCacheKey = ModelCacheKey$instance;
754
786
 
755
- export abstract class ModelCacheKeyFactory$protected {
756
- protected readonly Dependencies: ModelCacheKeyFactoryDependencies;
757
- }
787
+ export interface ModelCacheKeyFactory$instance {
788
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCacheKeyFactory: never;
758
789
 
759
-
760
- export interface ModelCacheKeyFactory$instance extends ModelCacheKeyFactory$protected {
790
+ readonly Dependencies: ModelCacheKeyFactoryDependencies;
761
791
  Create(context: DbContext): unknown;
762
792
  Create(context: DbContext, designTime: boolean): unknown;
763
793
  }
@@ -776,6 +806,8 @@ export type ModelCacheKeyFactory = ModelCacheKeyFactory$instance & __ModelCacheK
776
806
 
777
807
 
778
808
  export interface ModelCacheKeyFactoryDependencies$instance {
809
+ readonly __tsonic_iface_System_IEquatable_1: never;
810
+
779
811
  _Clone_$(): ModelCacheKeyFactoryDependencies;
780
812
  Equals(obj: unknown): boolean;
781
813
  Equals(other: ModelCacheKeyFactoryDependencies): boolean;
@@ -791,12 +823,10 @@ export const ModelCacheKeyFactoryDependencies: {
791
823
 
792
824
  export type ModelCacheKeyFactoryDependencies = ModelCacheKeyFactoryDependencies$instance;
793
825
 
794
- export abstract class ModelCustomizer$protected {
795
- protected readonly Dependencies: ModelCustomizerDependencies;
796
- }
826
+ export interface ModelCustomizer$instance {
827
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
797
828
 
798
-
799
- export interface ModelCustomizer$instance extends ModelCustomizer$protected {
829
+ readonly Dependencies: ModelCustomizerDependencies;
800
830
  Customize(modelBuilder: ModelBuilder, context: DbContext): void;
801
831
  }
802
832
 
@@ -816,6 +846,8 @@ export type ModelCustomizer = ModelCustomizer$instance & __ModelCustomizer$views
816
846
 
817
847
 
818
848
  export interface ModelCustomizerDependencies$instance {
849
+ readonly __tsonic_iface_System_IEquatable_1: never;
850
+
819
851
  _Clone_$(): ModelCustomizerDependencies;
820
852
  Equals(obj: unknown): boolean;
821
853
  Equals(other: ModelCustomizerDependencies): boolean;
@@ -832,6 +864,8 @@ export const ModelCustomizerDependencies: {
832
864
  export type ModelCustomizerDependencies = ModelCustomizerDependencies$instance;
833
865
 
834
866
  export interface ModelDependencies$instance {
867
+ readonly __tsonic_iface_System_IEquatable_1: never;
868
+
835
869
  Logger: IDiagnosticsLogger_1<DbLoggerCategory_Model>;
836
870
  _Clone_$(): ModelDependencies;
837
871
  Equals(obj: unknown): boolean;
@@ -848,14 +882,10 @@ export const ModelDependencies: {
848
882
 
849
883
  export type ModelDependencies = ModelDependencies$instance;
850
884
 
851
- export abstract class ModelRuntimeInitializer$protected {
852
- protected readonly Dependencies: ModelRuntimeInitializerDependencies;
853
- protected InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
854
- }
855
-
856
-
857
- export interface ModelRuntimeInitializer$instance extends ModelRuntimeInitializer$protected {
885
+ export interface ModelRuntimeInitializer$instance {
886
+ readonly Dependencies: ModelRuntimeInitializerDependencies;
858
887
  Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
888
+ InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
859
889
  }
860
890
 
861
891
 
@@ -867,6 +897,8 @@ export const ModelRuntimeInitializer: {
867
897
  export type ModelRuntimeInitializer = ModelRuntimeInitializer$instance;
868
898
 
869
899
  export interface ModelRuntimeInitializerDependencies$instance {
900
+ readonly __tsonic_iface_System_IEquatable_1: never;
901
+
870
902
  ModelDependencies: RuntimeModelDependencies;
871
903
  ModelValidator: IModelValidator;
872
904
  _Clone_$(): ModelRuntimeInitializerDependencies;
@@ -884,31 +916,24 @@ export const ModelRuntimeInitializerDependencies: {
884
916
 
885
917
  export type ModelRuntimeInitializerDependencies = ModelRuntimeInitializerDependencies$instance;
886
918
 
887
- export abstract class ModelSnapshot$protected {
888
- protected abstract BuildModel(modelBuilder: ModelBuilder): void;
889
- }
890
-
891
-
892
- export interface ModelSnapshot$instance extends ModelSnapshot$protected {
919
+ export interface ModelSnapshot$instance {
893
920
  readonly Model: IModel;
921
+ BuildModel(modelBuilder: ModelBuilder): void;
894
922
  }
895
923
 
896
924
 
897
- export const ModelSnapshot: {
898
- new(): ModelSnapshot;
925
+ export const ModelSnapshot: (abstract new() => ModelSnapshot) & {
899
926
  };
900
927
 
901
928
 
902
929
  export type ModelSnapshot = ModelSnapshot$instance;
903
930
 
904
- export abstract class ModelSource$protected {
905
- protected readonly Dependencies: ModelSourceDependencies;
906
- protected CreateModel(context: DbContext, conventionSetBuilder: IConventionSetBuilder, modelDependencies: ModelDependencies): IModel;
907
- }
908
-
931
+ export interface ModelSource$instance {
932
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelSource: never;
909
933
 
910
- export interface ModelSource$instance extends ModelSource$protected {
934
+ readonly Dependencies: ModelSourceDependencies;
911
935
  CreateModel(context: DbContext, modelCreationDependencies: ModelCreationDependencies, designTime: boolean): IModel;
936
+ CreateModel(context: DbContext, conventionSetBuilder: IConventionSetBuilder, modelDependencies: ModelDependencies): IModel;
912
937
  GetModel(context: DbContext, modelCreationDependencies: ModelCreationDependencies, designTime: boolean): IModel;
913
938
  }
914
939
 
@@ -928,6 +953,8 @@ export type ModelSource = ModelSource$instance & __ModelSource$views;
928
953
 
929
954
 
930
955
  export interface ModelSourceDependencies$instance {
956
+ readonly __tsonic_iface_System_IEquatable_1: never;
957
+
931
958
  MemoryCache: IMemoryCache;
932
959
  ModelCacheKeyFactory: IModelCacheKeyFactory;
933
960
  ModelCustomizer: IModelCustomizer;
@@ -946,40 +973,38 @@ export const ModelSourceDependencies: {
946
973
 
947
974
  export type ModelSourceDependencies = ModelSourceDependencies$instance;
948
975
 
949
- export abstract class ModelValidator$protected {
950
- protected readonly Dependencies: ModelValidatorDependencies;
951
- protected IsOwned(targetType: Type, conventionModel: IConventionModel): boolean;
952
- protected IsRedundant(foreignKey: IForeignKey): boolean;
953
- protected LogShadowProperties(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
954
- protected ThrowPropertyNotMappedException(propertyType: string, structuralType: IConventionTypeBase, unmappedProperty: IConventionProperty): void;
955
- protected ValidateChangeTrackingStrategy(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
956
- protected ValidateClrInheritance(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
957
- protected ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
958
- protected ValidateDiscriminatorValues(rootEntityType: IEntityType): void;
959
- protected ValidateDiscriminatorValues(complexType: IComplexType): void;
960
- protected ValidateEntityClrTypes(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
961
- protected ValidateFieldMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
962
- protected ValidateForeignKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
963
- protected ValidateIgnoredMembers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
964
- protected ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
965
- protected ValidateNoCycles(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
966
- protected ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
967
- protected ValidateNonNullPrimaryKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
968
- protected ValidateNoShadowKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
969
- protected ValidateOwnership(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
970
- protected ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
971
- protected ValidatePropertyMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
972
- protected ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
973
- protected ValidatePropertyMapping(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
974
- protected ValidateQueryFilters(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
975
- protected ValidateRelationships(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
976
- protected ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
977
- protected ValidateTypeMappings(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
978
- }
979
-
980
-
981
- export interface ModelValidator$instance extends ModelValidator$protected {
976
+ export interface ModelValidator$instance {
977
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
978
+
979
+ readonly Dependencies: ModelValidatorDependencies;
980
+ IsOwned(targetType: Type, conventionModel: IConventionModel): boolean;
981
+ IsRedundant(foreignKey: IForeignKey): boolean;
982
+ LogShadowProperties(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
983
+ ThrowPropertyNotMappedException(propertyType: string, structuralType: IConventionTypeBase, unmappedProperty: IConventionProperty): void;
982
984
  Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
985
+ ValidateChangeTrackingStrategy(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
986
+ ValidateClrInheritance(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
987
+ ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
988
+ ValidateDiscriminatorValues(rootEntityType: IEntityType): void;
989
+ ValidateDiscriminatorValues(complexType: IComplexType): void;
990
+ ValidateEntityClrTypes(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
991
+ ValidateFieldMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
992
+ ValidateForeignKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
993
+ ValidateIgnoredMembers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
994
+ ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
995
+ ValidateNoCycles(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
996
+ ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
997
+ ValidateNonNullPrimaryKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
998
+ ValidateNoShadowKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
999
+ ValidateOwnership(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1000
+ ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1001
+ ValidatePropertyMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1002
+ ValidatePropertyMapping(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1003
+ ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1004
+ ValidateQueryFilters(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1005
+ ValidateRelationships(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1006
+ ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1007
+ ValidateTypeMappings(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
983
1008
  }
984
1009
 
985
1010
 
@@ -998,6 +1023,8 @@ export type ModelValidator = ModelValidator$instance & __ModelValidator$views;
998
1023
 
999
1024
 
1000
1025
  export interface ModelValidatorDependencies$instance {
1026
+ readonly __tsonic_iface_System_IEquatable_1: never;
1027
+
1001
1028
  MemberClassifier: IMemberClassifier;
1002
1029
  _Clone_$(): ModelValidatorDependencies;
1003
1030
  Equals(obj: unknown): boolean;
@@ -1015,6 +1042,8 @@ export const ModelValidatorDependencies: {
1015
1042
  export type ModelValidatorDependencies = ModelValidatorDependencies$instance;
1016
1043
 
1017
1044
  export interface PooledDbContextFactory_1$instance<TContext extends DbContext> {
1045
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
1046
+
1018
1047
  CreateDbContext(): TContext;
1019
1048
  CreateDbContextAsync(cancellationToken?: CancellationToken): Task<TContext>;
1020
1049
  }
@@ -1035,13 +1064,10 @@ export interface PooledDbContextFactory_1$instance<TContext extends DbContext> e
1035
1064
  export type PooledDbContextFactory_1<TContext extends DbContext> = PooledDbContextFactory_1$instance<TContext> & __PooledDbContextFactory_1$views<TContext>;
1036
1065
 
1037
1066
 
1038
- export abstract class RelationalDbContextOptionsBuilder_2$protected<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> {
1039
- protected readonly OptionsBuilder: DbContextOptionsBuilder;
1040
- protected WithOption(setAction: Func<TExtension, TExtension>): TBuilder;
1041
- }
1042
-
1067
+ export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> {
1068
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IRelationalDbContextOptionsBuilderInfrastructure: never;
1043
1069
 
1044
- export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension> extends RelationalDbContextOptionsBuilder_2$protected<TBuilder, TExtension> {
1070
+ readonly OptionsBuilder: DbContextOptionsBuilder;
1045
1071
  CommandTimeout(commandTimeout: Nullable<System_Internal.Int32>): TBuilder;
1046
1072
  Equals(obj: unknown): boolean;
1047
1073
  ExecutionStrategy(getExecutionStrategy: Func<ExecutionStrategyDependencies, IExecutionStrategy>): TBuilder;
@@ -1057,11 +1083,11 @@ export interface RelationalDbContextOptionsBuilder_2$instance<TBuilder extends R
1057
1083
  UseParameterizedCollectionMode(parameterizedCollectionMode: ParameterTranslationMode): TBuilder;
1058
1084
  UseQuerySplittingBehavior(querySplittingBehavior: QuerySplittingBehavior): TBuilder;
1059
1085
  UseRelationalNulls(useRelationalNulls?: boolean): TBuilder;
1086
+ WithOption(setAction: Func<TExtension, TExtension>): TBuilder;
1060
1087
  }
1061
1088
 
1062
1089
 
1063
- export const RelationalDbContextOptionsBuilder_2: {
1064
- new<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension>(optionsBuilder: DbContextOptionsBuilder): RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>;
1090
+ export const RelationalDbContextOptionsBuilder_2: (abstract new<TBuilder extends RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>, TExtension extends RelationalOptionsExtension>(optionsBuilder: DbContextOptionsBuilder) => RelationalDbContextOptionsBuilder_2<TBuilder, TExtension>) & {
1065
1091
  };
1066
1092
 
1067
1093
 
@@ -1075,6 +1101,8 @@ export type RelationalDbContextOptionsBuilder_2<TBuilder extends RelationalDbCon
1075
1101
 
1076
1102
 
1077
1103
  export interface RelationalModelCustomizer$instance extends ModelCustomizer$instance {
1104
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelCustomizer: never;
1105
+
1078
1106
  Customize(modelBuilder: ModelBuilder, context: DbContext): void;
1079
1107
  }
1080
1108
 
@@ -1092,6 +1120,8 @@ export type RelationalModelCustomizer = RelationalModelCustomizer$instance & __R
1092
1120
 
1093
1121
 
1094
1122
  export interface RelationalModelDependencies$instance {
1123
+ readonly __tsonic_iface_System_IEquatable_1: never;
1124
+
1095
1125
  RowForeignKeyValueFactoryFactory: IRowForeignKeyValueFactoryFactory;
1096
1126
  RowIndexValueFactoryFactory: IRowIndexValueFactoryFactory;
1097
1127
  RowKeyValueFactoryFactory: IRowKeyValueFactoryFactory;
@@ -1111,14 +1141,12 @@ export const RelationalModelDependencies: {
1111
1141
 
1112
1142
  export type RelationalModelDependencies = RelationalModelDependencies$instance;
1113
1143
 
1114
- export abstract class RelationalModelRuntimeInitializer$protected {
1115
- protected readonly RelationalDependencies: RelationalModelRuntimeInitializerDependencies;
1116
- protected InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
1117
- }
1118
-
1144
+ export interface RelationalModelRuntimeInitializer$instance extends ModelRuntimeInitializer {
1145
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelRuntimeInitializer: never;
1119
1146
 
1120
- export interface RelationalModelRuntimeInitializer$instance extends RelationalModelRuntimeInitializer$protected, ModelRuntimeInitializer {
1147
+ readonly RelationalDependencies: RelationalModelRuntimeInitializerDependencies;
1121
1148
  Initialize(model: IModel, designTime?: boolean, validationLogger?: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): IModel;
1149
+ InitializeModel(model: IModel, designTime: boolean, prevalidation: boolean): void;
1122
1150
  }
1123
1151
 
1124
1152
 
@@ -1135,6 +1163,8 @@ export type RelationalModelRuntimeInitializer = RelationalModelRuntimeInitialize
1135
1163
 
1136
1164
 
1137
1165
  export interface RelationalModelRuntimeInitializerDependencies$instance {
1166
+ readonly __tsonic_iface_System_IEquatable_1: never;
1167
+
1138
1168
  RelationalAnnotationProvider: IRelationalAnnotationProvider;
1139
1169
  RelationalModelDependencies: RelationalModelDependencies;
1140
1170
  _Clone_$(): RelationalModelRuntimeInitializerDependencies;
@@ -1152,62 +1182,60 @@ export const RelationalModelRuntimeInitializerDependencies: {
1152
1182
 
1153
1183
  export type RelationalModelRuntimeInitializerDependencies = RelationalModelRuntimeInitializerDependencies$instance;
1154
1184
 
1155
- export abstract class RelationalModelValidator$protected {
1156
- protected readonly RelationalDependencies: RelationalModelValidatorDependencies;
1157
- protected GetDefaultColumnValue(property: IProperty, storeObject: StoreObjectIdentifier): unknown | undefined;
1158
- protected IsRedundant(foreignKey: IForeignKey): boolean;
1159
- protected ThrowPropertyNotMappedException(propertyType: string, typeBase: IConventionTypeBase, unmappedProperty: IConventionProperty): void;
1160
- protected ValidateBoolsWithDefaults(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1161
- protected ValidateCompatible(property: IProperty, duplicateProperty: IProperty, columnName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1162
- protected ValidateCompatible(foreignKey: IForeignKey, duplicateForeignKey: IForeignKey, foreignKeyName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1163
- protected ValidateCompatible(index: IIndex, duplicateIndex: IIndex, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1164
- protected ValidateCompatible(key: IKey, duplicateKey: IKey, keyName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1165
- protected ValidateCompatible(checkConstraint: ICheckConstraint, duplicateCheckConstraint: ICheckConstraint, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1166
- protected ValidateCompatible(trigger: ITrigger, duplicateTrigger: ITrigger, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1167
- protected ValidateData2(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1168
- protected ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1169
- protected ValidateDbFunctions(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1170
- protected ValidateDefaultValuesOnKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1171
- protected ValidateIndexProperties(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1172
- protected ValidateInheritanceMapping2(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1173
- protected ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1174
- protected ValidateJsonEntities(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1175
- protected ValidateJsonEntityKey(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1176
- protected ValidateJsonEntityNavigations(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1177
- protected ValidateJsonEntityProperties(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1178
- protected ValidateJsonEntityRoot(storeObject: StoreObjectIdentifier, rootType: IEntityType): void;
1179
- protected ValidateMappingFragments(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1180
- protected ValidateMappingStrategy(entityType: IEntityType, mappingStrategy: string): void;
1181
- protected ValidateNoMutableKeys2(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1182
- protected ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1183
- protected ValidatePrimitiveCollections2(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1184
- protected ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1185
- protected ValidatePropertyMapping4(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1186
- protected ValidatePropertyMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1187
- protected ValidatePropertyMapping3(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1188
- protected ValidatePropertyMapping2(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1189
- protected ValidatePropertyOverrides(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1190
- protected ValidateSharedCheckConstraintCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1191
- protected ValidateSharedColumnsCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1192
- protected ValidateSharedForeignKeysCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1193
- protected ValidateSharedIndexesCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1194
- protected ValidateSharedKeysCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1195
- protected ValidateSharedTableCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1196
- protected ValidateSharedTableCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1197
- protected ValidateSharedTriggerCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1198
- protected ValidateSharedViewCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1199
- protected ValidateSharedViewCompatibility(mappedTypes: IReadOnlyList<IEntityType>, viewName: string, schema: string, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1200
- protected ValidateSqlQueries(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1201
- protected ValidateStoredProcedures(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1202
- protected ValidateTriggers2(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1203
- protected ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1204
- protected ValidateValueGeneration(entityType: IEntityType, key: IKey, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1205
- }
1206
-
1207
-
1208
- export interface RelationalModelValidator$instance extends RelationalModelValidator$protected, ModelValidator$instance {
1185
+ export interface RelationalModelValidator$instance extends ModelValidator$instance {
1186
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IModelValidator: never;
1187
+
1188
+ readonly RelationalDependencies: RelationalModelValidatorDependencies;
1189
+ GetDefaultColumnValue(property: IProperty, storeObject: StoreObjectIdentifier): unknown | undefined;
1190
+ IsRedundant(foreignKey: IForeignKey): boolean;
1191
+ ThrowPropertyNotMappedException(propertyType: string, typeBase: IConventionTypeBase, unmappedProperty: IConventionProperty): void;
1209
1192
  Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1210
1193
  Validate(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1194
+ ValidateBoolsWithDefaults(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1195
+ ValidateCompatible(property: IProperty, duplicateProperty: IProperty, columnName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1196
+ ValidateCompatible(foreignKey: IForeignKey, duplicateForeignKey: IForeignKey, foreignKeyName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1197
+ ValidateCompatible(index: IIndex, duplicateIndex: IIndex, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1198
+ ValidateCompatible(key: IKey, duplicateKey: IKey, keyName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1199
+ ValidateCompatible(checkConstraint: ICheckConstraint, duplicateCheckConstraint: ICheckConstraint, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1200
+ ValidateCompatible(trigger: ITrigger, duplicateTrigger: ITrigger, indexName: string, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1201
+ ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1202
+ ValidateData(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1203
+ ValidateDbFunctions(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1204
+ ValidateDefaultValuesOnKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1205
+ ValidateIndexProperties(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1206
+ ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1207
+ ValidateInheritanceMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1208
+ ValidateJsonEntities(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1209
+ ValidateJsonEntityKey(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1210
+ ValidateJsonEntityNavigations(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1211
+ ValidateJsonEntityProperties(storeObject: StoreObjectIdentifier, jsonEntityType: IEntityType): void;
1212
+ ValidateJsonEntityRoot(storeObject: StoreObjectIdentifier, rootType: IEntityType): void;
1213
+ ValidateMappingFragments(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1214
+ ValidateMappingStrategy(entityType: IEntityType, mappingStrategy: string): void;
1215
+ ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1216
+ ValidateNoMutableKeys(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1217
+ ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1218
+ ValidatePrimitiveCollections(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1219
+ ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1220
+ ValidatePropertyMapping(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1221
+ ValidatePropertyMapping(structuralType: IConventionTypeBase, model: IConventionModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1222
+ ValidatePropertyMapping(complexProperty: IConventionComplexProperty, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1223
+ ValidatePropertyOverrides(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1224
+ ValidateSharedCheckConstraintCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1225
+ ValidateSharedColumnsCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1226
+ ValidateSharedForeignKeysCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1227
+ ValidateSharedIndexesCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1228
+ ValidateSharedKeysCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1229
+ ValidateSharedTableCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1230
+ ValidateSharedTableCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1231
+ ValidateSharedTriggerCompatibility(mappedTypes: IReadOnlyList<IEntityType>, storeObject: StoreObjectIdentifier, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1232
+ ValidateSharedViewCompatibility(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1233
+ ValidateSharedViewCompatibility(mappedTypes: IReadOnlyList<IEntityType>, viewName: string, schema: string, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1234
+ ValidateSqlQueries(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1235
+ ValidateStoredProcedures(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1236
+ ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1237
+ ValidateTriggers(model: IModel, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1238
+ ValidateValueGeneration(entityType: IEntityType, key: IKey, logger: IDiagnosticsLogger_1<DbLoggerCategory_Model_Validation>): void;
1211
1239
  }
1212
1240
 
1213
1241
 
@@ -1224,6 +1252,8 @@ export type RelationalModelValidator = RelationalModelValidator$instance & __Rel
1224
1252
 
1225
1253
 
1226
1254
  export interface RelationalModelValidatorDependencies$instance {
1255
+ readonly __tsonic_iface_System_IEquatable_1: never;
1256
+
1227
1257
  TypeMappingSource: IRelationalTypeMappingSource;
1228
1258
  _Clone_$(): RelationalModelValidatorDependencies;
1229
1259
  Equals(obj: unknown): boolean;
@@ -1240,20 +1270,17 @@ export const RelationalModelValidatorDependencies: {
1240
1270
 
1241
1271
  export type RelationalModelValidatorDependencies = RelationalModelValidatorDependencies$instance;
1242
1272
 
1243
- export abstract class RelationalOptionsExtension$protected {
1244
- protected abstract Clone(): RelationalOptionsExtension;
1245
- }
1246
-
1273
+ export interface RelationalOptionsExtension$instance {
1274
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsExtension: never;
1247
1275
 
1248
- export interface RelationalOptionsExtension$instance extends RelationalOptionsExtension$protected {
1249
1276
  readonly CommandTimeout: Nullable<System_Internal.Int32>;
1250
- readonly Connection: DbConnection;
1277
+ readonly Connection: DbConnection | undefined;
1251
1278
  readonly ConnectionString: string | undefined;
1252
- readonly ExecutionStrategyFactory: Func<ExecutionStrategyDependencies, IExecutionStrategy>;
1279
+ readonly ExecutionStrategyFactory: Func<ExecutionStrategyDependencies, IExecutionStrategy> | undefined;
1253
1280
  readonly Info: DbContextOptionsExtensionInfo;
1254
1281
  readonly IsConnectionOwned: boolean;
1255
1282
  readonly MaxBatchSize: Nullable<System_Internal.Int32>;
1256
- readonly MigrationsAssembly: string;
1283
+ readonly MigrationsAssembly: string | undefined;
1257
1284
  readonly MigrationsAssemblyObject: Assembly | undefined;
1258
1285
  readonly MigrationsHistoryTableName: string | undefined;
1259
1286
  readonly MigrationsHistoryTableSchema: string | undefined;
@@ -1262,6 +1289,7 @@ export interface RelationalOptionsExtension$instance extends RelationalOptionsEx
1262
1289
  readonly QuerySplittingBehavior: Nullable<QuerySplittingBehavior>;
1263
1290
  readonly UseRelationalNulls: boolean;
1264
1291
  ApplyServices(services: IServiceCollection): void;
1292
+ Clone(): RelationalOptionsExtension;
1265
1293
  Validate(options: IDbContextOptions): void;
1266
1294
  WithCommandTimeout(commandTimeout: Nullable<System_Internal.Int32>): RelationalOptionsExtension;
1267
1295
  WithConnection(connection: DbConnection): RelationalOptionsExtension;
@@ -1280,9 +1308,7 @@ export interface RelationalOptionsExtension$instance extends RelationalOptionsEx
1280
1308
  }
1281
1309
 
1282
1310
 
1283
- export const RelationalOptionsExtension: {
1284
- new(): RelationalOptionsExtension;
1285
- new(copyFrom: RelationalOptionsExtension): RelationalOptionsExtension;
1311
+ export const RelationalOptionsExtension: (abstract new() => RelationalOptionsExtension) & (abstract new(copyFrom: RelationalOptionsExtension) => RelationalOptionsExtension) & {
1286
1312
  Extract(options: IDbContextOptions): RelationalOptionsExtension;
1287
1313
  WithDefaultWarningConfiguration(coreOptionsExtension: CoreOptionsExtension): CoreOptionsExtension;
1288
1314
  };
@@ -1297,23 +1323,20 @@ export interface RelationalOptionsExtension$instance extends IDbContextOptionsEx
1297
1323
  export type RelationalOptionsExtension = RelationalOptionsExtension$instance & __RelationalOptionsExtension$views;
1298
1324
 
1299
1325
 
1300
- export abstract class RuntimeAnnotatableBase$protected {
1301
- protected AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1302
- protected CreateAnnotation(name: string, value: unknown): Annotation;
1303
- protected CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
1304
- protected SetRuntimeAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation;
1305
- }
1306
-
1326
+ export interface RuntimeAnnotatableBase$instance {
1327
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
1328
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1307
1329
 
1308
- export interface RuntimeAnnotatableBase$instance extends RuntimeAnnotatableBase$protected {
1309
- get Item(): unknown | undefined;
1310
- set Item(value: unknown);
1330
+ [name: string]: unknown | undefined;
1311
1331
  AddAnnotation(name: string, value: unknown): Annotation;
1312
1332
  AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
1313
1333
  AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1314
1334
  AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1335
+ AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1315
1336
  AddRuntimeAnnotations(annotations: IEnumerable<Annotation>): void;
1316
1337
  AddRuntimeAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
1338
+ CreateAnnotation(name: string, value: unknown): Annotation;
1339
+ CreateRuntimeAnnotation(name: string, value: unknown): Annotation;
1317
1340
  FindAnnotation(name: string): Annotation | undefined;
1318
1341
  FindRuntimeAnnotation(name: string): Annotation | undefined;
1319
1342
  GetAnnotation(annotationName: string): Annotation;
@@ -1323,6 +1346,7 @@ export interface RuntimeAnnotatableBase$instance extends RuntimeAnnotatableBase$
1323
1346
  RemoveRuntimeAnnotation(name: string): Annotation | undefined;
1324
1347
  SetAnnotation(name: string, value: unknown): void;
1325
1348
  SetRuntimeAnnotation(name: string, value: unknown): Annotation;
1349
+ SetRuntimeAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation;
1326
1350
  }
1327
1351
 
1328
1352
 
@@ -1340,6 +1364,8 @@ export type RuntimeAnnotatableBase = RuntimeAnnotatableBase$instance & __Runtime
1340
1364
 
1341
1365
 
1342
1366
  export interface RuntimeModelDependencies$instance {
1367
+ readonly __tsonic_iface_System_IEquatable_1: never;
1368
+
1343
1369
  ConstructorBindingFactory: IConstructorBindingFactory;
1344
1370
  ParameterBindingFactories: IParameterBindingFactories;
1345
1371
  TypeMappingSource: ITypeMappingSource;
@@ -1359,6 +1385,8 @@ export const RuntimeModelDependencies: {
1359
1385
  export type RuntimeModelDependencies = RuntimeModelDependencies$instance;
1360
1386
 
1361
1387
  export interface ServiceCollectionMap$instance {
1388
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
1389
+
1362
1390
  readonly ServiceCollection: IServiceCollection;
1363
1391
  TryAdd(serviceType: Type, implementationType: Type, lifetime: ServiceLifetime): ServiceCollectionMap;
1364
1392
  TryAdd(serviceType: Type, factory: Func<IServiceProvider, unknown>, lifetime: ServiceLifetime): ServiceCollectionMap;