@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.
Files changed (36) hide show
  1. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +36 -1
  2. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
  3. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
  4. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
  5. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
  6. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
  7. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
  8. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
  9. package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
  10. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
  11. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
  12. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
  13. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
  14. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
  15. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
  16. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
  17. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
  18. package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
  19. package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
  20. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
  21. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
  22. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
  23. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
  24. package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
  25. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
  26. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
  27. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
  28. package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
  29. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
  30. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
  31. package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
  32. package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
  33. package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
  34. package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
  35. package/__internal/extensions/index.d.ts +860 -595
  36. package/package.json +1 -1
@@ -123,6 +123,8 @@ export enum WarningBehavior {
123
123
 
124
124
 
125
125
  export interface IDbContextFactory_1$instance<TContext extends DbContext> {
126
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
127
+
126
128
  CreateDbContext(): TContext;
127
129
  CreateDbContextAsync(cancellationToken?: CancellationToken): Task<TContext>;
128
130
  }
@@ -131,6 +133,8 @@ export interface IDbContextFactory_1$instance<TContext extends DbContext> {
131
133
  export type IDbContextFactory_1<TContext extends DbContext> = IDbContextFactory_1$instance<TContext>;
132
134
 
133
135
  export interface IEntityTypeConfiguration_1$instance<TEntity> {
136
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IEntityTypeConfiguration_1: never;
137
+
134
138
  Configure(builder: EntityTypeBuilder_1<TEntity>): void;
135
139
  }
136
140
 
@@ -179,6 +183,14 @@ export const CommentAttribute: {
179
183
  export type CommentAttribute = CommentAttribute$instance;
180
184
 
181
185
  export interface DbContext$instance {
186
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
187
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
188
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies: never;
189
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPoolable: never;
190
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetCache: never;
191
+ readonly __tsonic_iface_System_IAsyncDisposable: never;
192
+ readonly __tsonic_iface_System_IDisposable: never;
193
+
182
194
  readonly ChangeTracker: ChangeTracker;
183
195
  readonly ContextId: DbContextId;
184
196
  readonly Database: DatabaseFacade;
@@ -248,6 +260,8 @@ export type DbContext = DbContext$instance & __DbContext$views;
248
260
 
249
261
 
250
262
  export interface DbContextOptions$instance {
263
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
264
+
251
265
  readonly ContextType: Type;
252
266
  readonly Extensions: IEnumerable__System_Collections_Generic<IDbContextOptionsExtension>;
253
267
  readonly ExtensionsMap: ImmutableSortedDictionary<Type, ValueTuple<IDbContextOptionsExtension, System_Internal.Int32>>;
@@ -276,6 +290,8 @@ export type DbContextOptions = DbContextOptions$instance & __DbContextOptions$vi
276
290
 
277
291
 
278
292
  export interface DbContextOptions_1$instance<TContext extends DbContext> extends DbContextOptions$instance {
293
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
294
+
279
295
  readonly ContextType: Type;
280
296
  FindExtension<TExtension extends IDbContextOptionsExtension>(): TExtension | undefined;
281
297
  WithExtension<TExtension extends IDbContextOptionsExtension>(extension: TExtension): DbContextOptions;
@@ -296,6 +312,8 @@ export type DbContextOptions_1<TContext extends DbContext> = DbContextOptions_1$
296
312
 
297
313
 
298
314
  export interface DbContextOptionsBuilder$instance {
315
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsBuilderInfrastructure: never;
316
+
299
317
  readonly IsConfigured: boolean;
300
318
  readonly Options: DbContextOptions | DbContextOptions_1<TContext>;
301
319
  AddInterceptors(interceptors: IEnumerable__System_Collections_Generic<IInterceptor>): DbContextOptionsBuilder;
@@ -344,6 +362,8 @@ export type DbContextOptionsBuilder = DbContextOptionsBuilder$instance & __DbCon
344
362
 
345
363
 
346
364
  export interface DbContextOptionsBuilder_1$instance<TContext extends DbContext> extends DbContextOptionsBuilder$instance {
365
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsBuilderInfrastructure: never;
366
+
347
367
  AddInterceptors(interceptors: IEnumerable__System_Collections_Generic<IInterceptor>): DbContextOptionsBuilder_1<TContext>;
348
368
  AddInterceptors(interceptors: IEnumerable__System_Collections_Generic<IInterceptor>): DbContextOptionsBuilder;
349
369
  AddInterceptors(...interceptors: IInterceptor[]): DbContextOptionsBuilder;
@@ -556,6 +576,13 @@ export const DbLoggerCategory_Update: {
556
576
  export type DbLoggerCategory_Update = DbLoggerCategory_Update$instance;
557
577
 
558
578
  export interface DbSet_1$instance<TEntity> {
579
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
580
+ readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
581
+ readonly __tsonic_iface_System_Collections_IEnumerable: never;
582
+ readonly __tsonic_iface_System_ComponentModel_IListSource: never;
583
+ readonly __tsonic_iface_System_Linq_IQueryable: never;
584
+ readonly __tsonic_iface_System_Linq_IQueryable_1: never;
585
+
559
586
  readonly EntityType: IEntityType;
560
587
  readonly Local: LocalView_1<TEntity>;
561
588
  Add(entity: TEntity): EntityEntry_1<TEntity>;
@@ -594,12 +621,14 @@ export interface __DbSet_1$views<TEntity> {
594
621
  As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>;
595
622
  }
596
623
 
597
- export interface DbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider> {}
624
+ export interface DbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, System_Collections_Generic_Internal.IEnumerable<TEntity>, System_ComponentModel_Internal.IListSource, System_Linq_Internal.IQueryable<TEntity> {}
598
625
 
599
626
  export type DbSet_1<TEntity> = DbSet_1$instance<TEntity> & __DbSet_1$views<TEntity>;
600
627
 
601
628
 
602
629
  export interface DbUpdateConcurrencyException$instance extends DbUpdateException {
630
+ readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
631
+
603
632
  }
604
633
 
605
634
 
@@ -616,6 +645,8 @@ export const DbUpdateConcurrencyException: {
616
645
  export type DbUpdateConcurrencyException = DbUpdateConcurrencyException$instance;
617
646
 
618
647
  export interface DbUpdateException$instance extends Exception {
648
+ readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
649
+
619
650
  readonly Entries: IReadOnlyList<EntityEntry>;
620
651
  }
621
652
 
@@ -701,6 +732,8 @@ export const KeylessAttribute: {
701
732
  export type KeylessAttribute = KeylessAttribute$instance;
702
733
 
703
734
  export interface ModelBuilder$instance {
735
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
736
+
704
737
  readonly Model: IMutableModel;
705
738
  ApplyConfiguration<TEntity>(configuration: IEntityTypeConfiguration_1<TEntity>): ModelBuilder;
706
739
  ApplyConfigurationsFromAssembly(assembly: Assembly, predicate?: Func<Type, System_Internal.Boolean>): ModelBuilder;
@@ -778,6 +811,8 @@ export const ModelConfigurationBuilder: {
778
811
  export type ModelConfigurationBuilder = ModelConfigurationBuilder$instance;
779
812
 
780
813
  export interface ModelCreationDependencies$instance {
814
+ readonly __tsonic_iface_System_IEquatable_1: never;
815
+
781
816
  ConventionSetBuilder: IConventionSetBuilder;
782
817
  ModelDependencies: ModelDependencies;
783
818
  ModelRuntimeInitializer: IModelRuntimeInitializer;
@@ -57,6 +57,8 @@ export enum LoadOptions {
57
57
 
58
58
 
59
59
  export interface IDependentKeyValueFactory$instance {
60
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
61
+
60
62
  CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
61
63
  }
62
64
 
@@ -64,6 +66,8 @@ export interface IDependentKeyValueFactory$instance {
64
66
  export type IDependentKeyValueFactory = IDependentKeyValueFactory$instance;
65
67
 
66
68
  export interface IDependentKeyValueFactory_1$instance<TKey> extends IDependentKeyValueFactory {
69
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
70
+
67
71
  readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
68
72
  CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
69
73
  TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
@@ -75,6 +79,8 @@ export interface IDependentKeyValueFactory_1$instance<TKey> extends IDependentKe
75
79
  export type IDependentKeyValueFactory_1<TKey> = IDependentKeyValueFactory_1$instance<TKey>;
76
80
 
77
81
  export interface IEntityEntryGraphIterator$instance {
82
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IEntityEntryGraphIterator: never;
83
+
78
84
  TraverseGraph<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, System_Internal.Boolean>): void;
79
85
  TraverseGraphAsync<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, CancellationToken, Task<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
80
86
  }
@@ -83,6 +89,8 @@ export interface IEntityEntryGraphIterator$instance {
83
89
  export type IEntityEntryGraphIterator = IEntityEntryGraphIterator$instance;
84
90
 
85
91
  export interface IPrincipalKeyValueFactory$instance {
92
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory: never;
93
+
86
94
  CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
87
95
  }
88
96
 
@@ -90,6 +98,8 @@ export interface IPrincipalKeyValueFactory$instance {
90
98
  export type IPrincipalKeyValueFactory = IPrincipalKeyValueFactory$instance;
91
99
 
92
100
  export interface IPrincipalKeyValueFactory_1$instance<TKey> extends IPrincipalKeyValueFactory {
101
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory_1: never;
102
+
93
103
  readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
94
104
  CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
95
105
  CreateFromCurrentValues(entry: IUpdateEntry): TKey;
@@ -105,6 +115,9 @@ export interface IPrincipalKeyValueFactory_1$instance<TKey> extends IPrincipalKe
105
115
  export type IPrincipalKeyValueFactory_1<TKey> = IPrincipalKeyValueFactory_1$instance<TKey>;
106
116
 
107
117
  export interface ArrayStructuralComparer_1$instance<TElement> extends ValueComparer_1<TElement[]> {
118
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
119
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
120
+
108
121
  }
109
122
 
110
123
 
@@ -116,6 +129,9 @@ export const ArrayStructuralComparer_1: {
116
129
  export type ArrayStructuralComparer_1<TElement> = ArrayStructuralComparer_1$instance<TElement>;
117
130
 
118
131
  export interface CaseInsensitiveValueComparer$instance extends ValueComparer_1<System_Internal.String> {
132
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
133
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
134
+
119
135
  }
120
136
 
121
137
 
@@ -127,6 +143,8 @@ export const CaseInsensitiveValueComparer: {
127
143
  export type CaseInsensitiveValueComparer = CaseInsensitiveValueComparer$instance;
128
144
 
129
145
  export interface ChangeTracker$instance {
146
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
147
+
130
148
  AutoDetectChangesEnabled: boolean;
131
149
  CascadeDeleteTiming: CascadeTiming;
132
150
  readonly Context: DbContext;
@@ -164,7 +182,9 @@ export type ChangeTracker = ChangeTracker$instance & __ChangeTracker$views;
164
182
 
165
183
 
166
184
  export interface CollectionEntry$instance extends NavigationEntry$instance {
167
- CurrentValue: IEnumerable | unknown;
185
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
186
+
187
+ CurrentValue: IEnumerable | IEnumerable_1<TRelatedEntity> | unknown;
168
188
  IsModified: boolean;
169
189
  FindEntry(entity: unknown): EntityEntry | undefined;
170
190
  GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
@@ -192,6 +212,8 @@ export type CollectionEntry = CollectionEntry$instance & __CollectionEntry$views
192
212
 
193
213
 
194
214
  export interface CollectionEntry_2$instance<TEntity, TRelatedEntity> extends CollectionEntry$instance {
215
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
216
+
195
217
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
196
218
  FindEntry(entity: unknown): EntityEntry | undefined;
197
219
  Query(): IQueryable;
@@ -214,6 +236,8 @@ export type CollectionEntry_2<TEntity, TRelatedEntity> = CollectionEntry_2$insta
214
236
 
215
237
 
216
238
  export interface ComplexCollectionEntry$instance extends MemberEntry$instance {
239
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
240
+
217
241
  IsModified: boolean;
218
242
  readonly [ordinal: number]: ComplexElementEntry;
219
243
  GetEnumerator(): IEnumerator<ComplexElementEntry>;
@@ -236,6 +260,8 @@ export type ComplexCollectionEntry = ComplexCollectionEntry$instance & __Complex
236
260
 
237
261
 
238
262
  export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance {
263
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
264
+
239
265
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
240
266
  GetOriginalEntry(ordinal: int): ComplexElementEntry;
241
267
  }
@@ -256,6 +282,8 @@ export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry
256
282
 
257
283
 
258
284
  export interface ComplexElementEntry$instance {
285
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
286
+
259
287
  readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
260
288
  readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
261
289
  readonly CurrentValue: TComplexProperty | unknown;
@@ -289,6 +317,8 @@ export type ComplexElementEntry = ComplexElementEntry$instance & __ComplexElemen
289
317
 
290
318
 
291
319
  export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance {
320
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
321
+
292
322
  ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
293
323
  ComplexCollection<TElement>(propertyName: string): ComplexCollectionEntry_2<TEntity, TElement>;
294
324
  ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
@@ -319,6 +349,8 @@ export type ComplexElementEntry_2<TEntity, TComplexProperty> = ComplexElementEnt
319
349
 
320
350
 
321
351
  export interface ComplexPropertyEntry$instance extends MemberEntry$instance {
352
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
353
+
322
354
  readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
323
355
  readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
324
356
  IsModified: boolean;
@@ -347,6 +379,8 @@ export type ComplexPropertyEntry = ComplexPropertyEntry$instance & __ComplexProp
347
379
 
348
380
 
349
381
  export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance {
382
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
383
+
350
384
  CurrentValue: TComplexProperty | unknown;
351
385
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
352
386
  ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
@@ -426,6 +460,8 @@ export const DetectEntityChangesEventArgs: {
426
460
  export type DetectEntityChangesEventArgs = DetectEntityChangesEventArgs$instance;
427
461
 
428
462
  export interface EntityEntry$instance {
463
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
464
+
429
465
  readonly Collections: IEnumerable__System_Collections_Generic<CollectionEntry>;
430
466
  readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
431
467
  readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
@@ -482,6 +518,8 @@ export type EntityEntry = EntityEntry$instance & __EntityEntry$views;
482
518
 
483
519
 
484
520
  export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance {
521
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
522
+
485
523
  Collection<TProperty>(navigation: INavigationBase): CollectionEntry_2<TEntity, TProperty>;
486
524
  Collection<TProperty>(propertyName: string): CollectionEntry_2<TEntity, TProperty>;
487
525
  Collection(navigation: INavigationBase): CollectionEntry;
@@ -532,6 +570,8 @@ export const EntityEntryEventArgs: {
532
570
  export type EntityEntryEventArgs = EntityEntryEventArgs$instance;
533
571
 
534
572
  export interface EntityEntryGraphNode$instance {
573
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
574
+
535
575
  readonly Entry: EntityEntry;
536
576
  readonly InboundNavigation: INavigationBase | undefined;
537
577
  readonly SourceEntry: EntityEntry | undefined;
@@ -554,6 +594,8 @@ export type EntityEntryGraphNode = EntityEntryGraphNode$instance & __EntityEntry
554
594
 
555
595
 
556
596
  export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance {
597
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
598
+
557
599
  NodeState: TState;
558
600
  CreateNode(currentNode: EntityEntryGraphNode, internalEntityEntry: InternalEntityEntry, reachedVia: INavigationBase): EntityEntryGraphNode;
559
601
  }
@@ -626,6 +668,9 @@ export const EntityTrackingEventArgs: {
626
668
  export type EntityTrackingEventArgs = EntityTrackingEventArgs$instance;
627
669
 
628
670
  export interface EntryCurrentValueComparer_1$instance<TProperty> {
671
+ readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
672
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
673
+
629
674
  Compare(x: IUpdateEntry, y: IUpdateEntry): int;
630
675
  Equals(x: IUpdateEntry, y: IUpdateEntry): boolean;
631
676
  GetHashCode(obj: IUpdateEntry): int;
@@ -640,6 +685,9 @@ export const EntryCurrentValueComparer_1: {
640
685
  export type EntryCurrentValueComparer_1<TProperty> = EntryCurrentValueComparer_1$instance<TProperty>;
641
686
 
642
687
  export interface GeometryValueComparer_1$instance<TGeometry> extends ValueComparer_1<TGeometry> {
688
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
689
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
690
+
643
691
  }
644
692
 
645
693
 
@@ -651,6 +699,10 @@ export const GeometryValueComparer_1: {
651
699
  export type GeometryValueComparer_1<TGeometry> = GeometryValueComparer_1$instance<TGeometry>;
652
700
 
653
701
  export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<IEnumerable__System_Collections_Generic<Nullable<TElement>>> {
702
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
703
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
704
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
705
+
654
706
  readonly ElementComparer: ValueComparer;
655
707
  }
656
708
 
@@ -664,12 +716,16 @@ export interface __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElem
664
716
  As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
665
717
  }
666
718
 
667
- export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer> {}
719
+ export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<IEnumerable__System_Collections_Generic<Nullable<TElement>>> {}
668
720
 
669
721
  export type ListOfNullableValueTypesComparer_2<TConcreteList, TElement> = ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElement>;
670
722
 
671
723
 
672
724
  export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends ValueComparer_1<unknown> {
725
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
726
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
727
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
728
+
673
729
  readonly ElementComparer: ValueComparer;
674
730
  }
675
731
 
@@ -683,12 +739,16 @@ export interface __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>
683
739
  As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
684
740
  }
685
741
 
686
- export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer> {}
742
+ export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown> {}
687
743
 
688
744
  export type ListOfReferenceTypesComparer_2<TConcreteList, TElement> = ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> & __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>;
689
745
 
690
746
 
691
747
  export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<IEnumerable__System_Collections_Generic<TElement>> {
748
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
749
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
750
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
751
+
692
752
  readonly ElementComparer: ValueComparer;
693
753
  }
694
754
 
@@ -702,12 +762,20 @@ export interface __ListOfValueTypesComparer_2$views<TConcreteList, TElement exte
702
762
  As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
703
763
  }
704
764
 
705
- export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer> {}
765
+ export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<IEnumerable__System_Collections_Generic<TElement>> {}
706
766
 
707
767
  export type ListOfValueTypesComparer_2<TConcreteList, TElement> = ListOfValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfValueTypesComparer_2$views<TConcreteList, TElement>;
708
768
 
709
769
 
710
770
  export interface LocalView_1$instance<TEntity> {
771
+ readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
772
+ readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
773
+ readonly __tsonic_iface_System_Collections_IEnumerable: never;
774
+ readonly __tsonic_iface_System_Collections_Specialized_INotifyCollectionChanged: never;
775
+ readonly __tsonic_iface_System_ComponentModel_IListSource: never;
776
+ readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
777
+ readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanging: never;
778
+
711
779
  readonly Count: int;
712
780
  readonly IsReadOnly: boolean;
713
781
  Add(item: TEntity): void;
@@ -743,11 +811,13 @@ export const LocalView_1: {
743
811
  export type LocalView_1<TEntity> = LocalView_1$instance<TEntity>;
744
812
 
745
813
  export interface MemberEntry$instance {
746
- CurrentValue: TProperty | unknown;
814
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
815
+
816
+ CurrentValue: IEnumerable | IEnumerable_1<TRelatedEntity> | unknown;
747
817
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
748
818
  readonly InternalEntry: IInternalEntry;
749
819
  IsModified: boolean;
750
- readonly Metadata: IProperty | IPropertyBase;
820
+ readonly Metadata: INavigationBase | IPropertyBase;
751
821
  Equals(obj: unknown): boolean;
752
822
  GetHashCode(): int;
753
823
  ToString(): string | undefined;
@@ -768,6 +838,8 @@ export type MemberEntry = MemberEntry$instance & __MemberEntry$views;
768
838
 
769
839
 
770
840
  export interface NavigationEntry$instance extends MemberEntry$instance {
841
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
842
+
771
843
  readonly InternalEntityEntry: InternalEntityEntry;
772
844
  IsLoaded: boolean;
773
845
  Load(): void;
@@ -792,6 +864,18 @@ export type NavigationEntry = NavigationEntry$instance & __NavigationEntry$views
792
864
 
793
865
 
794
866
  export interface ObservableCollectionListSource_1$instance<T> extends ObservableCollection<T> {
867
+ readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
868
+ readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
869
+ readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
870
+ readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
871
+ readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
872
+ readonly __tsonic_iface_System_Collections_ICollection: never;
873
+ readonly __tsonic_iface_System_Collections_IEnumerable: never;
874
+ readonly __tsonic_iface_System_Collections_IList: never;
875
+ readonly __tsonic_iface_System_Collections_Specialized_INotifyCollectionChanged: never;
876
+ readonly __tsonic_iface_System_ComponentModel_IListSource: never;
877
+ readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
878
+
795
879
  }
796
880
 
797
881
 
@@ -805,6 +889,15 @@ export const ObservableCollectionListSource_1: {
805
889
  export type ObservableCollectionListSource_1<T> = ObservableCollectionListSource_1$instance<T>;
806
890
 
807
891
  export interface ObservableHashSet_1$instance<T> {
892
+ readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
893
+ readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
894
+ readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
895
+ readonly __tsonic_iface_System_Collections_Generic_ISet_1: never;
896
+ readonly __tsonic_iface_System_Collections_IEnumerable: never;
897
+ readonly __tsonic_iface_System_Collections_Specialized_INotifyCollectionChanged: never;
898
+ readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
899
+ readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanging: never;
900
+
808
901
  readonly Comparer: IEqualityComparer__System_Collections_Generic<T>;
809
902
  readonly Count: int;
810
903
  readonly IsReadOnly: boolean;
@@ -845,6 +938,8 @@ export const ObservableHashSet_1: {
845
938
  export type ObservableHashSet_1<T> = ObservableHashSet_1$instance<T>;
846
939
 
847
940
  export interface PropertyEntry$instance extends MemberEntry$instance {
941
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
942
+
848
943
  IsModified: boolean;
849
944
  IsTemporary: boolean;
850
945
  OriginalValue: TProperty | unknown;
@@ -866,6 +961,8 @@ export type PropertyEntry = PropertyEntry$instance & __PropertyEntry$views;
866
961
 
867
962
 
868
963
  export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance {
964
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
965
+
869
966
  CurrentValue: TProperty | unknown;
870
967
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
871
968
  }
@@ -917,6 +1014,8 @@ export const PropertyValues: (abstract new(internalEntry: InternalEntryBase) =>
917
1014
  export type PropertyValues = PropertyValues$instance;
918
1015
 
919
1016
  export interface ReferenceEntry$instance extends NavigationEntry$instance {
1017
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
1018
+
920
1019
  IsModified: boolean;
921
1020
  readonly TargetEntry: EntityEntry | undefined | EntityEntry_1<TProperty> | undefined;
922
1021
  GetTargetEntry(): InternalEntityEntry | undefined;
@@ -944,6 +1043,8 @@ export type ReferenceEntry = ReferenceEntry$instance & __ReferenceEntry$views;
944
1043
 
945
1044
 
946
1045
  export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance {
1046
+ readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
1047
+
947
1048
  CurrentValue: TProperty | unknown;
948
1049
  readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
949
1050
  Query(): IQueryable;
@@ -966,6 +1067,9 @@ export type ReferenceEntry_2<TEntity, TProperty> = ReferenceEntry_2$instance<TEn
966
1067
 
967
1068
 
968
1069
  export interface ValueComparer$instance {
1070
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
1071
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
1072
+
969
1073
  readonly EqualsExpression: LambdaExpression;
970
1074
  readonly HashCodeExpression: LambdaExpression;
971
1075
  readonly ObjectEqualsExpression: LambdaExpression;
@@ -994,6 +1098,9 @@ export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, ha
994
1098
  export type ValueComparer = ValueComparer$instance;
995
1099
 
996
1100
  export interface ValueComparer_1$instance<T> extends ValueComparer {
1101
+ readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
1102
+ readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
1103
+
997
1104
  readonly EqualsExpression: Expression<Func<T | undefined, T | undefined, System_Internal.Boolean>>;
998
1105
  readonly HashCodeExpression: Expression<Func<T, System_Internal.Int32>>;
999
1106
  readonly ObjectEqualsExpression: LambdaExpression;