@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.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -163,15 +181,13 @@ export interface ChangeTracker$instance extends Microsoft_EntityFrameworkCore_In
|
|
|
163
181
|
export type ChangeTracker = ChangeTracker$instance & __ChangeTracker$views;
|
|
164
182
|
|
|
165
183
|
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
}
|
|
169
|
-
|
|
184
|
+
export interface CollectionEntry$instance extends NavigationEntry$instance {
|
|
185
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
170
186
|
|
|
171
|
-
|
|
172
|
-
CurrentValue: IEnumerable | unknown;
|
|
187
|
+
CurrentValue: IEnumerable | IEnumerable_1<TRelatedEntity> | unknown;
|
|
173
188
|
IsModified: boolean;
|
|
174
189
|
FindEntry(entity: unknown): EntityEntry | undefined;
|
|
190
|
+
GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
|
|
175
191
|
Load(): void;
|
|
176
192
|
Load(options: LoadOptions): void;
|
|
177
193
|
LoadAsync(cancellationToken?: CancellationToken): Task;
|
|
@@ -196,6 +212,8 @@ export type CollectionEntry = CollectionEntry$instance & __CollectionEntry$views
|
|
|
196
212
|
|
|
197
213
|
|
|
198
214
|
export interface CollectionEntry_2$instance<TEntity, TRelatedEntity> extends CollectionEntry$instance {
|
|
215
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
216
|
+
|
|
199
217
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
200
218
|
FindEntry(entity: unknown): EntityEntry | undefined;
|
|
201
219
|
Query(): IQueryable;
|
|
@@ -218,8 +236,10 @@ export type CollectionEntry_2<TEntity, TRelatedEntity> = CollectionEntry_2$insta
|
|
|
218
236
|
|
|
219
237
|
|
|
220
238
|
export interface ComplexCollectionEntry$instance extends MemberEntry$instance {
|
|
239
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
240
|
+
|
|
221
241
|
IsModified: boolean;
|
|
222
|
-
readonly
|
|
242
|
+
readonly [ordinal: number]: ComplexElementEntry;
|
|
223
243
|
GetEnumerator(): IEnumerator<ComplexElementEntry>;
|
|
224
244
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
225
245
|
}
|
|
@@ -240,6 +260,8 @@ export type ComplexCollectionEntry = ComplexCollectionEntry$instance & __Complex
|
|
|
240
260
|
|
|
241
261
|
|
|
242
262
|
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance {
|
|
263
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
264
|
+
|
|
243
265
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
244
266
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
245
267
|
}
|
|
@@ -259,16 +281,14 @@ export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends Mi
|
|
|
259
281
|
export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry_2$instance<TEntity, TElement> & __ComplexCollectionEntry_2$views<TEntity, TElement>;
|
|
260
282
|
|
|
261
283
|
|
|
262
|
-
export
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
|
|
284
|
+
export interface ComplexElementEntry$instance {
|
|
285
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
266
286
|
|
|
267
|
-
export interface ComplexElementEntry$instance extends ComplexElementEntry$protected {
|
|
268
287
|
readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
|
|
269
288
|
readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
|
|
270
289
|
readonly CurrentValue: TComplexProperty | unknown;
|
|
271
290
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
291
|
+
readonly InternalEntry: InternalComplexEntry;
|
|
272
292
|
IsModified: boolean;
|
|
273
293
|
readonly Metadata: IComplexProperty;
|
|
274
294
|
readonly Properties: IEnumerable__System_Collections_Generic<PropertyEntry>;
|
|
@@ -297,6 +317,8 @@ export type ComplexElementEntry = ComplexElementEntry$instance & __ComplexElemen
|
|
|
297
317
|
|
|
298
318
|
|
|
299
319
|
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance {
|
|
320
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
321
|
+
|
|
300
322
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
301
323
|
ComplexCollection<TElement>(propertyName: string): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
302
324
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
@@ -327,6 +349,8 @@ export type ComplexElementEntry_2<TEntity, TComplexProperty> = ComplexElementEnt
|
|
|
327
349
|
|
|
328
350
|
|
|
329
351
|
export interface ComplexPropertyEntry$instance extends MemberEntry$instance {
|
|
352
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
353
|
+
|
|
330
354
|
readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
|
|
331
355
|
readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
|
|
332
356
|
IsModified: boolean;
|
|
@@ -355,6 +379,8 @@ export type ComplexPropertyEntry = ComplexPropertyEntry$instance & __ComplexProp
|
|
|
355
379
|
|
|
356
380
|
|
|
357
381
|
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance {
|
|
382
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
383
|
+
|
|
358
384
|
CurrentValue: TComplexProperty | unknown;
|
|
359
385
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
360
386
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
@@ -433,12 +459,9 @@ export const DetectEntityChangesEventArgs: {
|
|
|
433
459
|
|
|
434
460
|
export type DetectEntityChangesEventArgs = DetectEntityChangesEventArgs$instance;
|
|
435
461
|
|
|
436
|
-
export
|
|
437
|
-
|
|
438
|
-
}
|
|
439
|
-
|
|
462
|
+
export interface EntityEntry$instance {
|
|
463
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
440
464
|
|
|
441
|
-
export interface EntityEntry$instance extends EntityEntry$protected {
|
|
442
465
|
readonly Collections: IEnumerable__System_Collections_Generic<CollectionEntry>;
|
|
443
466
|
readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
|
|
444
467
|
readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
|
|
@@ -446,6 +469,7 @@ export interface EntityEntry$instance extends EntityEntry$protected {
|
|
|
446
469
|
readonly CurrentValues: PropertyValues;
|
|
447
470
|
readonly DebugView: DebugView;
|
|
448
471
|
readonly Entity: TEntity | unknown;
|
|
472
|
+
readonly InternalEntry: InternalEntityEntry;
|
|
449
473
|
readonly IsKeySet: boolean;
|
|
450
474
|
readonly Members: IEnumerable__System_Collections_Generic<MemberEntry>;
|
|
451
475
|
readonly Metadata: IEntityType;
|
|
@@ -494,6 +518,8 @@ export type EntityEntry = EntityEntry$instance & __EntityEntry$views;
|
|
|
494
518
|
|
|
495
519
|
|
|
496
520
|
export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance {
|
|
521
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
522
|
+
|
|
497
523
|
Collection<TProperty>(navigation: INavigationBase): CollectionEntry_2<TEntity, TProperty>;
|
|
498
524
|
Collection<TProperty>(propertyName: string): CollectionEntry_2<TEntity, TProperty>;
|
|
499
525
|
Collection(navigation: INavigationBase): CollectionEntry;
|
|
@@ -544,6 +570,8 @@ export const EntityEntryEventArgs: {
|
|
|
544
570
|
export type EntityEntryEventArgs = EntityEntryEventArgs$instance;
|
|
545
571
|
|
|
546
572
|
export interface EntityEntryGraphNode$instance {
|
|
573
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
574
|
+
|
|
547
575
|
readonly Entry: EntityEntry;
|
|
548
576
|
readonly InboundNavigation: INavigationBase | undefined;
|
|
549
577
|
readonly SourceEntry: EntityEntry | undefined;
|
|
@@ -566,6 +594,8 @@ export type EntityEntryGraphNode = EntityEntryGraphNode$instance & __EntityEntry
|
|
|
566
594
|
|
|
567
595
|
|
|
568
596
|
export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance {
|
|
597
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
598
|
+
|
|
569
599
|
NodeState: TState;
|
|
570
600
|
CreateNode(currentNode: EntityEntryGraphNode, internalEntityEntry: InternalEntityEntry, reachedVia: INavigationBase): EntityEntryGraphNode;
|
|
571
601
|
}
|
|
@@ -638,6 +668,9 @@ export const EntityTrackingEventArgs: {
|
|
|
638
668
|
export type EntityTrackingEventArgs = EntityTrackingEventArgs$instance;
|
|
639
669
|
|
|
640
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
|
+
|
|
641
674
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
642
675
|
Equals(x: IUpdateEntry, y: IUpdateEntry): boolean;
|
|
643
676
|
GetHashCode(obj: IUpdateEntry): int;
|
|
@@ -652,6 +685,9 @@ export const EntryCurrentValueComparer_1: {
|
|
|
652
685
|
export type EntryCurrentValueComparer_1<TProperty> = EntryCurrentValueComparer_1$instance<TProperty>;
|
|
653
686
|
|
|
654
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
|
+
|
|
655
691
|
}
|
|
656
692
|
|
|
657
693
|
|
|
@@ -663,6 +699,10 @@ export const GeometryValueComparer_1: {
|
|
|
663
699
|
export type GeometryValueComparer_1<TGeometry> = GeometryValueComparer_1$instance<TGeometry>;
|
|
664
700
|
|
|
665
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
|
+
|
|
666
706
|
readonly ElementComparer: ValueComparer;
|
|
667
707
|
}
|
|
668
708
|
|
|
@@ -676,12 +716,16 @@ export interface __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElem
|
|
|
676
716
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
677
717
|
}
|
|
678
718
|
|
|
679
|
-
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>>> {}
|
|
680
720
|
|
|
681
721
|
export type ListOfNullableValueTypesComparer_2<TConcreteList, TElement> = ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
682
722
|
|
|
683
723
|
|
|
684
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
|
+
|
|
685
729
|
readonly ElementComparer: ValueComparer;
|
|
686
730
|
}
|
|
687
731
|
|
|
@@ -695,12 +739,16 @@ export interface __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>
|
|
|
695
739
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
696
740
|
}
|
|
697
741
|
|
|
698
|
-
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> {}
|
|
699
743
|
|
|
700
744
|
export type ListOfReferenceTypesComparer_2<TConcreteList, TElement> = ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> & __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>;
|
|
701
745
|
|
|
702
746
|
|
|
703
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
|
+
|
|
704
752
|
readonly ElementComparer: ValueComparer;
|
|
705
753
|
}
|
|
706
754
|
|
|
@@ -714,19 +762,20 @@ export interface __ListOfValueTypesComparer_2$views<TConcreteList, TElement exte
|
|
|
714
762
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
715
763
|
}
|
|
716
764
|
|
|
717
|
-
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>> {}
|
|
718
766
|
|
|
719
767
|
export type ListOfValueTypesComparer_2<TConcreteList, TElement> = ListOfValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
720
768
|
|
|
721
769
|
|
|
722
|
-
export
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
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;
|
|
728
778
|
|
|
729
|
-
export interface LocalView_1$instance<TEntity> extends LocalView_1$protected<TEntity> {
|
|
730
779
|
readonly Count: int;
|
|
731
780
|
readonly IsReadOnly: boolean;
|
|
732
781
|
Add(item: TEntity): void;
|
|
@@ -744,6 +793,9 @@ export interface LocalView_1$instance<TEntity> extends LocalView_1$protected<TEn
|
|
|
744
793
|
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable__System_Collections_Generic<EntityEntry_1<TEntity>>;
|
|
745
794
|
GetEntries(properties: IEnumerable__System_Collections_Generic<IProperty>, propertyValues: IEnumerable__System_Collections_Generic<unknown>): IEnumerable__System_Collections_Generic<EntityEntry_1<TEntity>>;
|
|
746
795
|
GetEnumerator(): IEnumerator<TEntity>;
|
|
796
|
+
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
797
|
+
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
798
|
+
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
747
799
|
Remove(item: TEntity): boolean;
|
|
748
800
|
Reset(): void;
|
|
749
801
|
ToBindingList(): BindingList<TEntity>;
|
|
@@ -758,14 +810,12 @@ export const LocalView_1: {
|
|
|
758
810
|
|
|
759
811
|
export type LocalView_1<TEntity> = LocalView_1$instance<TEntity>;
|
|
760
812
|
|
|
761
|
-
export
|
|
762
|
-
|
|
763
|
-
}
|
|
764
|
-
|
|
813
|
+
export interface MemberEntry$instance {
|
|
814
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
765
815
|
|
|
766
|
-
|
|
767
|
-
CurrentValue: TProperty | unknown;
|
|
816
|
+
CurrentValue: IEnumerable | IEnumerable_1<TRelatedEntity> | unknown;
|
|
768
817
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
818
|
+
readonly InternalEntry: IInternalEntry;
|
|
769
819
|
IsModified: boolean;
|
|
770
820
|
readonly Metadata: INavigationBase | IPropertyBase;
|
|
771
821
|
Equals(obj: unknown): boolean;
|
|
@@ -774,8 +824,7 @@ export interface MemberEntry$instance extends MemberEntry$protected {
|
|
|
774
824
|
}
|
|
775
825
|
|
|
776
826
|
|
|
777
|
-
export const MemberEntry: {
|
|
778
|
-
new(internalEntry: IInternalEntry, metadata: IPropertyBase): MemberEntry;
|
|
827
|
+
export const MemberEntry: (abstract new(internalEntry: IInternalEntry, metadata: IPropertyBase) => MemberEntry) & {
|
|
779
828
|
};
|
|
780
829
|
|
|
781
830
|
|
|
@@ -788,12 +837,10 @@ export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infr
|
|
|
788
837
|
export type MemberEntry = MemberEntry$instance & __MemberEntry$views;
|
|
789
838
|
|
|
790
839
|
|
|
791
|
-
export
|
|
792
|
-
|
|
793
|
-
}
|
|
794
|
-
|
|
840
|
+
export interface NavigationEntry$instance extends MemberEntry$instance {
|
|
841
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
795
842
|
|
|
796
|
-
|
|
843
|
+
readonly InternalEntityEntry: InternalEntityEntry;
|
|
797
844
|
IsLoaded: boolean;
|
|
798
845
|
Load(): void;
|
|
799
846
|
Load(options: LoadOptions): void;
|
|
@@ -803,9 +850,7 @@ export interface NavigationEntry$instance extends NavigationEntry$protected, Mem
|
|
|
803
850
|
}
|
|
804
851
|
|
|
805
852
|
|
|
806
|
-
export const NavigationEntry: {
|
|
807
|
-
new(internalEntry: InternalEntityEntry, name: string, collection: boolean): NavigationEntry;
|
|
808
|
-
new(internalEntry: InternalEntityEntry, navigationBase: INavigationBase, collection: boolean): NavigationEntry;
|
|
853
|
+
export const NavigationEntry: (abstract new(internalEntry: InternalEntityEntry, name: string, collection: boolean) => NavigationEntry) & (abstract new(internalEntry: InternalEntityEntry, navigationBase: INavigationBase, collection: boolean) => NavigationEntry) & {
|
|
809
854
|
};
|
|
810
855
|
|
|
811
856
|
|
|
@@ -819,6 +864,18 @@ export type NavigationEntry = NavigationEntry$instance & __NavigationEntry$views
|
|
|
819
864
|
|
|
820
865
|
|
|
821
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
|
+
|
|
822
879
|
}
|
|
823
880
|
|
|
824
881
|
|
|
@@ -831,14 +888,16 @@ export const ObservableCollectionListSource_1: {
|
|
|
831
888
|
|
|
832
889
|
export type ObservableCollectionListSource_1<T> = ObservableCollectionListSource_1$instance<T>;
|
|
833
890
|
|
|
834
|
-
export
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
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;
|
|
840
900
|
|
|
841
|
-
export interface ObservableHashSet_1$instance<T> extends ObservableHashSet_1$protected<T> {
|
|
842
901
|
readonly Comparer: IEqualityComparer__System_Collections_Generic<T>;
|
|
843
902
|
readonly Count: int;
|
|
844
903
|
readonly IsReadOnly: boolean;
|
|
@@ -855,6 +914,9 @@ export interface ObservableHashSet_1$instance<T> extends ObservableHashSet_1$pro
|
|
|
855
914
|
IsProperSupersetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
856
915
|
IsSubsetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
857
916
|
IsSupersetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
917
|
+
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
918
|
+
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
919
|
+
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
858
920
|
Overlaps(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
859
921
|
Remove(item: T): boolean;
|
|
860
922
|
RemoveWhere(match: Predicate<T>): int;
|
|
@@ -876,6 +938,8 @@ export const ObservableHashSet_1: {
|
|
|
876
938
|
export type ObservableHashSet_1<T> = ObservableHashSet_1$instance<T>;
|
|
877
939
|
|
|
878
940
|
export interface PropertyEntry$instance extends MemberEntry$instance {
|
|
941
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
942
|
+
|
|
879
943
|
IsModified: boolean;
|
|
880
944
|
IsTemporary: boolean;
|
|
881
945
|
OriginalValue: TProperty | unknown;
|
|
@@ -897,6 +961,8 @@ export type PropertyEntry = PropertyEntry$instance & __PropertyEntry$views;
|
|
|
897
961
|
|
|
898
962
|
|
|
899
963
|
export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance {
|
|
964
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
965
|
+
|
|
900
966
|
CurrentValue: TProperty | unknown;
|
|
901
967
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
902
968
|
}
|
|
@@ -916,13 +982,9 @@ export interface PropertyEntry_2$instance<TEntity, TProperty> extends Microsoft_
|
|
|
916
982
|
export type PropertyEntry_2<TEntity, TProperty> = PropertyEntry_2$instance<TEntity, TProperty> & __PropertyEntry_2$views<TEntity, TProperty>;
|
|
917
983
|
|
|
918
984
|
|
|
919
|
-
export
|
|
920
|
-
protected readonly InternalEntry: InternalEntryBase;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
export interface PropertyValues$instance extends PropertyValues$protected {
|
|
985
|
+
export interface PropertyValues$instance {
|
|
925
986
|
readonly ComplexCollectionProperties: IReadOnlyList<IComplexProperty>;
|
|
987
|
+
readonly InternalEntry: InternalEntryBase;
|
|
926
988
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
927
989
|
readonly StructuralType: ITypeBase;
|
|
928
990
|
Clone(): PropertyValues;
|
|
@@ -945,21 +1007,18 @@ export interface PropertyValues$instance extends PropertyValues$protected {
|
|
|
945
1007
|
}
|
|
946
1008
|
|
|
947
1009
|
|
|
948
|
-
export const PropertyValues: {
|
|
949
|
-
new(internalEntry: InternalEntryBase): PropertyValues;
|
|
1010
|
+
export const PropertyValues: (abstract new(internalEntry: InternalEntryBase) => PropertyValues) & {
|
|
950
1011
|
};
|
|
951
1012
|
|
|
952
1013
|
|
|
953
1014
|
export type PropertyValues = PropertyValues$instance;
|
|
954
1015
|
|
|
955
|
-
export
|
|
956
|
-
|
|
957
|
-
}
|
|
958
|
-
|
|
1016
|
+
export interface ReferenceEntry$instance extends NavigationEntry$instance {
|
|
1017
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
959
1018
|
|
|
960
|
-
export interface ReferenceEntry$instance extends ReferenceEntry$protected, NavigationEntry$instance {
|
|
961
1019
|
IsModified: boolean;
|
|
962
1020
|
readonly TargetEntry: EntityEntry | undefined | EntityEntry_1<TProperty> | undefined;
|
|
1021
|
+
GetTargetEntry(): InternalEntityEntry | undefined;
|
|
963
1022
|
Load(): void;
|
|
964
1023
|
Load(options: LoadOptions): void;
|
|
965
1024
|
LoadAsync(cancellationToken?: CancellationToken): Task;
|
|
@@ -984,6 +1043,8 @@ export type ReferenceEntry = ReferenceEntry$instance & __ReferenceEntry$views;
|
|
|
984
1043
|
|
|
985
1044
|
|
|
986
1045
|
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance {
|
|
1046
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1047
|
+
|
|
987
1048
|
CurrentValue: TProperty | unknown;
|
|
988
1049
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
989
1050
|
Query(): IQueryable;
|
|
@@ -1006,6 +1067,9 @@ export type ReferenceEntry_2<TEntity, TProperty> = ReferenceEntry_2$instance<TEn
|
|
|
1006
1067
|
|
|
1007
1068
|
|
|
1008
1069
|
export interface ValueComparer$instance {
|
|
1070
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1071
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1072
|
+
|
|
1009
1073
|
readonly EqualsExpression: LambdaExpression;
|
|
1010
1074
|
readonly HashCodeExpression: LambdaExpression;
|
|
1011
1075
|
readonly ObjectEqualsExpression: LambdaExpression;
|
|
@@ -1020,8 +1084,7 @@ export interface ValueComparer$instance {
|
|
|
1020
1084
|
}
|
|
1021
1085
|
|
|
1022
1086
|
|
|
1023
|
-
export const ValueComparer: {
|
|
1024
|
-
new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression): ValueComparer;
|
|
1087
|
+
export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression) => ValueComparer) & {
|
|
1025
1088
|
readonly HashCodeAddMethod: MethodInfo;
|
|
1026
1089
|
readonly ToHashCodeMethod: MethodInfo;
|
|
1027
1090
|
readonly BoolIdentity: Expression<Func<System_Internal.Boolean, System_Internal.Boolean>>;
|
|
@@ -1035,6 +1098,9 @@ export const ValueComparer: {
|
|
|
1035
1098
|
export type ValueComparer = ValueComparer$instance;
|
|
1036
1099
|
|
|
1037
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
|
+
|
|
1038
1104
|
readonly EqualsExpression: Expression<Func<T | undefined, T | undefined, System_Internal.Boolean>>;
|
|
1039
1105
|
readonly HashCodeExpression: Expression<Func<T, System_Internal.Int32>>;
|
|
1040
1106
|
readonly ObjectEqualsExpression: LambdaExpression;
|