@tsonic/efcore 10.0.3 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -38,6 +38,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
38
38
|
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
39
39
|
|
|
40
40
|
export interface IChangeDetector$instance {
|
|
41
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IChangeDetector: never;
|
|
42
|
+
|
|
41
43
|
CaptureEvents(): ValueTuple<EventHandler<DetectChangesEventArgs>, EventHandler<DetectedChangesEventArgs>, EventHandler<DetectEntityChangesEventArgs>, EventHandler<DetectedEntityChangesEventArgs>>;
|
|
42
44
|
DetectChanges(entry: InternalComplexEntry): void;
|
|
43
45
|
DetectChanges(entry: InternalEntityEntry): void;
|
|
@@ -55,6 +57,8 @@ export interface IChangeDetector$instance {
|
|
|
55
57
|
export type IChangeDetector = IChangeDetector$instance;
|
|
56
58
|
|
|
57
59
|
export interface IChangeTrackerFactory$instance {
|
|
60
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IChangeTrackerFactory: never;
|
|
61
|
+
|
|
58
62
|
Create(): ChangeTracker;
|
|
59
63
|
}
|
|
60
64
|
|
|
@@ -62,6 +66,8 @@ export interface IChangeTrackerFactory$instance {
|
|
|
62
66
|
export type IChangeTrackerFactory = IChangeTrackerFactory$instance;
|
|
63
67
|
|
|
64
68
|
export interface IDependentsMap$instance {
|
|
69
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IDependentsMap: never;
|
|
70
|
+
|
|
65
71
|
Add(entry: IUpdateEntry): void;
|
|
66
72
|
GetDependents(principalEntry: IUpdateEntry): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
67
73
|
GetDependents(keyValues: IReadOnlyList<unknown>): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
@@ -71,6 +77,8 @@ export interface IDependentsMap$instance {
|
|
|
71
77
|
export type IDependentsMap = IDependentsMap$instance;
|
|
72
78
|
|
|
73
79
|
export interface IEntityGraphAttacher$instance {
|
|
80
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IEntityGraphAttacher: never;
|
|
81
|
+
|
|
74
82
|
AttachGraph(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean): void;
|
|
75
83
|
AttachGraphAsync(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean, cancellationToken?: CancellationToken): Task;
|
|
76
84
|
}
|
|
@@ -79,6 +87,8 @@ export interface IEntityGraphAttacher$instance {
|
|
|
79
87
|
export type IEntityGraphAttacher = IEntityGraphAttacher$instance;
|
|
80
88
|
|
|
81
89
|
export interface IIdentityMap$instance {
|
|
90
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap: never;
|
|
91
|
+
|
|
82
92
|
readonly Key: IKey;
|
|
83
93
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
84
94
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
@@ -95,6 +105,8 @@ export interface IIdentityMap$instance {
|
|
|
95
105
|
export type IIdentityMap = IIdentityMap$instance;
|
|
96
106
|
|
|
97
107
|
export interface IIdentityMap_1$instance<TKey> extends IIdentityMap {
|
|
108
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap_1: never;
|
|
109
|
+
|
|
98
110
|
readonly Key: IKey;
|
|
99
111
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
100
112
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
@@ -112,6 +124,8 @@ export interface IIdentityMap_1$instance<TKey> extends IIdentityMap {
|
|
|
112
124
|
export type IIdentityMap_1<TKey> = IIdentityMap_1$instance<TKey>;
|
|
113
125
|
|
|
114
126
|
export interface IInternalEntityEntryNotifier$instance {
|
|
127
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntityEntryNotifier: never;
|
|
128
|
+
|
|
115
129
|
FixupResolved(entry: InternalEntityEntry, duplicateEntry: InternalEntityEntry): void;
|
|
116
130
|
KeyPropertyChanged(entry: InternalEntityEntry, property: IProperty, keys: IEnumerable__System_Collections_Generic<IKey>, foreignKeys: IEnumerable__System_Collections_Generic<IForeignKey>, oldValue: unknown, newValue: unknown): void;
|
|
117
131
|
NavigationCollectionChanged(entry: InternalEntityEntry, navigationBase: INavigationBase, added: IEnumerable__System_Collections_Generic<unknown>, removed: IEnumerable__System_Collections_Generic<unknown>): void;
|
|
@@ -127,6 +141,8 @@ export interface IInternalEntityEntryNotifier$instance {
|
|
|
127
141
|
export type IInternalEntityEntryNotifier = IInternalEntityEntryNotifier$instance;
|
|
128
142
|
|
|
129
143
|
export interface IInternalEntry$instance {
|
|
144
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
145
|
+
|
|
130
146
|
get Item(): unknown | undefined;
|
|
131
147
|
set Item(value: unknown | undefined);
|
|
132
148
|
readonly EntityState: EntityState;
|
|
@@ -168,6 +184,8 @@ export interface IInternalEntry$instance {
|
|
|
168
184
|
export type IInternalEntry = IInternalEntry$instance;
|
|
169
185
|
|
|
170
186
|
export interface IInternalEntrySubscriber$instance {
|
|
187
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntrySubscriber: never;
|
|
188
|
+
|
|
171
189
|
SnapshotAndSubscribe(entry: InternalComplexEntry): boolean;
|
|
172
190
|
SnapshotAndSubscribe(entry: InternalEntityEntry): boolean;
|
|
173
191
|
SubscribeCollectionChanged(entry: InternalEntityEntry, navigation: INavigationBase): void;
|
|
@@ -180,6 +198,8 @@ export interface IInternalEntrySubscriber$instance {
|
|
|
180
198
|
export type IInternalEntrySubscriber = IInternalEntrySubscriber$instance;
|
|
181
199
|
|
|
182
200
|
export interface IKeyPropagator$instance {
|
|
201
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IKeyPropagator: never;
|
|
202
|
+
|
|
183
203
|
PropagateValue(entry: InternalEntityEntry, property: IProperty): InternalEntityEntry | undefined;
|
|
184
204
|
PropagateValueAsync(entry: InternalEntityEntry, property: IProperty, cancellationToken?: CancellationToken): Task<InternalEntityEntry | undefined>;
|
|
185
205
|
}
|
|
@@ -188,6 +208,8 @@ export interface IKeyPropagator$instance {
|
|
|
188
208
|
export type IKeyPropagator = IKeyPropagator$instance;
|
|
189
209
|
|
|
190
210
|
export interface ILocalViewListener$instance {
|
|
211
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ILocalViewListener: never;
|
|
212
|
+
|
|
191
213
|
RegisterView(viewAction: Action<InternalEntityEntry, EntityState>): void;
|
|
192
214
|
StateChanged(entry: InternalEntityEntry, oldState: EntityState, fromQuery: boolean): void;
|
|
193
215
|
StateChanging(entry: InternalEntityEntry, newState: EntityState): void;
|
|
@@ -197,6 +219,8 @@ export interface ILocalViewListener$instance {
|
|
|
197
219
|
export type ILocalViewListener = ILocalViewListener$instance;
|
|
198
220
|
|
|
199
221
|
export interface INavigationFixer$instance {
|
|
222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_INavigationFixer: never;
|
|
223
|
+
|
|
200
224
|
BeginDelayedFixup(): boolean;
|
|
201
225
|
CompleteDelayedFixup(): void;
|
|
202
226
|
FixupResolved(entry: InternalEntityEntry, duplicateEntry: InternalEntityEntry): void;
|
|
@@ -212,6 +236,8 @@ export interface INavigationFixer$instance {
|
|
|
212
236
|
export type INavigationFixer = INavigationFixer$instance;
|
|
213
237
|
|
|
214
238
|
export interface ISnapshot$instance {
|
|
239
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
240
|
+
|
|
215
241
|
[index: number]: unknown | undefined;
|
|
216
242
|
readonly IsEmpty: boolean;
|
|
217
243
|
GetValue<T>(index: int): T;
|
|
@@ -221,6 +247,8 @@ export interface ISnapshot$instance {
|
|
|
221
247
|
export type ISnapshot = ISnapshot$instance;
|
|
222
248
|
|
|
223
249
|
export interface IStateManager$instance extends IResettableService {
|
|
250
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager: never;
|
|
251
|
+
|
|
224
252
|
readonly Dependencies: StateManagerDependencies;
|
|
225
253
|
DeleteOrphansTiming: CascadeTiming;
|
|
226
254
|
CascadeDeleteTiming: CascadeTiming;
|
|
@@ -283,6 +311,8 @@ export interface IStateManager$instance extends Microsoft_EntityFrameworkCore_In
|
|
|
283
311
|
export type IStateManager = IStateManager$instance;
|
|
284
312
|
|
|
285
313
|
export interface IValueGenerationManager$instance {
|
|
314
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IValueGenerationManager: never;
|
|
315
|
+
|
|
286
316
|
Generate(entry: InternalEntityEntry, includePrimaryKey?: boolean): boolean;
|
|
287
317
|
GenerateAsync(entry: InternalEntityEntry, includePrimaryKey?: boolean, cancellationToken?: CancellationToken): Task<System_Internal.Boolean>;
|
|
288
318
|
Propagate(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|
|
@@ -293,6 +323,8 @@ export interface IValueGenerationManager$instance {
|
|
|
293
323
|
export type IValueGenerationManager = IValueGenerationManager$instance;
|
|
294
324
|
|
|
295
325
|
export interface MultiSnapshot$instance {
|
|
326
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
327
|
+
|
|
296
328
|
[index: number]: unknown | undefined;
|
|
297
329
|
GetValue<T>(index: int): T;
|
|
298
330
|
}
|
|
@@ -337,6 +369,8 @@ export const ArrayPropertyValues: {
|
|
|
337
369
|
export type ArrayPropertyValues = ArrayPropertyValues$instance;
|
|
338
370
|
|
|
339
371
|
export interface ChangeDetector$instance {
|
|
372
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IChangeDetector: never;
|
|
373
|
+
|
|
340
374
|
CaptureEvents(): ValueTuple<EventHandler<DetectChangesEventArgs>, EventHandler<DetectedChangesEventArgs>, EventHandler<DetectEntityChangesEventArgs>, EventHandler<DetectedEntityChangesEventArgs>>;
|
|
341
375
|
DetectChanges(stateManager: IStateManager): void;
|
|
342
376
|
DetectChanges(entry: InternalEntityEntry): void;
|
|
@@ -368,6 +402,8 @@ export type ChangeDetector = ChangeDetector$instance & __ChangeDetector$views;
|
|
|
368
402
|
|
|
369
403
|
|
|
370
404
|
export interface ChangeTrackerFactory$instance {
|
|
405
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IChangeTrackerFactory: never;
|
|
406
|
+
|
|
371
407
|
Create(): ChangeTracker;
|
|
372
408
|
}
|
|
373
409
|
|
|
@@ -387,6 +423,9 @@ export type ChangeTrackerFactory = ChangeTrackerFactory$instance & __ChangeTrack
|
|
|
387
423
|
|
|
388
424
|
|
|
389
425
|
export interface CompositeDependentKeyValueFactory$instance extends CompositeValueFactory$instance {
|
|
426
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
427
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
428
|
+
|
|
390
429
|
CreateDependentEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown | undefined;
|
|
391
430
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
392
431
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
@@ -408,6 +447,11 @@ export type CompositeDependentKeyValueFactory = CompositeDependentKeyValueFactor
|
|
|
408
447
|
|
|
409
448
|
|
|
410
449
|
export interface CompositePrincipalKeyValueFactory$instance extends CompositeValueFactory$instance {
|
|
450
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
451
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
452
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory: never;
|
|
453
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory_1: never;
|
|
454
|
+
|
|
411
455
|
CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
412
456
|
CreateFromBuffer(valueBuffer: ValueBuffer): unknown | undefined;
|
|
413
457
|
CreateFromCurrentValues(entry: IUpdateEntry): IReadOnlyList<unknown | undefined>;
|
|
@@ -438,6 +482,9 @@ export type CompositePrincipalKeyValueFactory = CompositePrincipalKeyValueFactor
|
|
|
438
482
|
|
|
439
483
|
|
|
440
484
|
export interface CompositeValueFactory$instance {
|
|
485
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
486
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
487
|
+
|
|
441
488
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<IReadOnlyList<unknown | undefined>>;
|
|
442
489
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
443
490
|
CreateDependentEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown | undefined;
|
|
@@ -466,6 +513,10 @@ export type CompositeValueFactory = CompositeValueFactory$instance & __Composite
|
|
|
466
513
|
|
|
467
514
|
|
|
468
515
|
export interface ConvertingValueComparer_2$instance<TTo, TFrom> extends ValueComparer_1<TTo> {
|
|
516
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
517
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
518
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
519
|
+
|
|
469
520
|
}
|
|
470
521
|
|
|
471
522
|
|
|
@@ -478,7 +529,7 @@ export interface __ConvertingValueComparer_2$views<TTo, TFrom> {
|
|
|
478
529
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
479
530
|
}
|
|
480
531
|
|
|
481
|
-
export interface ConvertingValueComparer_2$instance<TTo, TFrom> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer> {}
|
|
532
|
+
export interface ConvertingValueComparer_2$instance<TTo, TFrom> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<TTo> {}
|
|
482
533
|
|
|
483
534
|
export type ConvertingValueComparer_2<TTo, TFrom> = ConvertingValueComparer_2$instance<TTo, TFrom> & __ConvertingValueComparer_2$views<TTo, TFrom>;
|
|
484
535
|
|
|
@@ -500,6 +551,8 @@ export const CurrentPropertyValues: {
|
|
|
500
551
|
export type CurrentPropertyValues = CurrentPropertyValues$instance;
|
|
501
552
|
|
|
502
553
|
export interface CurrentProviderValueComparer_2$instance<TModel, TProvider> {
|
|
554
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
555
|
+
|
|
503
556
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
504
557
|
}
|
|
505
558
|
|
|
@@ -554,6 +607,8 @@ export const DependentKeyValueFactoryFactory: {
|
|
|
554
607
|
export type DependentKeyValueFactoryFactory = DependentKeyValueFactoryFactory$instance;
|
|
555
608
|
|
|
556
609
|
export interface DependentsMap_1$instance<TKey> {
|
|
610
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IDependentsMap: never;
|
|
611
|
+
|
|
557
612
|
Add(entry: IUpdateEntry): void;
|
|
558
613
|
GetDependents(principalEntry: IUpdateEntry): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
559
614
|
GetDependents(keyValues: IReadOnlyList<unknown>): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
@@ -594,6 +649,8 @@ export const EmptyShadowValuesFactoryFactory: {
|
|
|
594
649
|
export type EmptyShadowValuesFactoryFactory = EmptyShadowValuesFactoryFactory$instance;
|
|
595
650
|
|
|
596
651
|
export interface EntityEntryGraphIterator$instance {
|
|
652
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IEntityEntryGraphIterator: never;
|
|
653
|
+
|
|
597
654
|
TraverseGraph<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, System_Internal.Boolean>): void;
|
|
598
655
|
TraverseGraphAsync<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, CancellationToken, Task<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
|
|
599
656
|
}
|
|
@@ -614,6 +671,8 @@ export type EntityEntryGraphIterator = EntityEntryGraphIterator$instance & __Ent
|
|
|
614
671
|
|
|
615
672
|
|
|
616
673
|
export interface EntityGraphAttacher$instance {
|
|
674
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IEntityGraphAttacher: never;
|
|
675
|
+
|
|
617
676
|
AttachGraph(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean): void;
|
|
618
677
|
AttachGraphAsync(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean, cancellationToken?: CancellationToken): Task;
|
|
619
678
|
}
|
|
@@ -651,6 +710,9 @@ export const EntityReferenceMap: {
|
|
|
651
710
|
export type EntityReferenceMap = EntityReferenceMap$instance;
|
|
652
711
|
|
|
653
712
|
export interface EntryCurrentProviderValueComparer$instance extends EntryCurrentValueComparer {
|
|
713
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
714
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
715
|
+
|
|
654
716
|
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
655
717
|
}
|
|
656
718
|
|
|
@@ -663,6 +725,9 @@ export const EntryCurrentProviderValueComparer: {
|
|
|
663
725
|
export type EntryCurrentProviderValueComparer = EntryCurrentProviderValueComparer$instance;
|
|
664
726
|
|
|
665
727
|
export interface EntryCurrentValueComparer$instance {
|
|
728
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
729
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
730
|
+
|
|
666
731
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
667
732
|
ComparePropertyValues(x: unknown, y: unknown): int;
|
|
668
733
|
Equals(x: IUpdateEntry, y: IUpdateEntry): boolean;
|
|
@@ -705,6 +770,9 @@ export const EntryPropertyValues: (abstract new(internalEntry: InternalEntryBase
|
|
|
705
770
|
export type EntryPropertyValues = EntryPropertyValues$instance;
|
|
706
771
|
|
|
707
772
|
export interface IdentityMap_1$instance<TKey> {
|
|
773
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap: never;
|
|
774
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap_1: never;
|
|
775
|
+
|
|
708
776
|
readonly Key: IKey;
|
|
709
777
|
readonly PrincipalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>;
|
|
710
778
|
Add(entry: InternalEntityEntry): void;
|
|
@@ -755,6 +823,8 @@ export const IdentityMapFactoryFactory: {
|
|
|
755
823
|
export type IdentityMapFactoryFactory = IdentityMapFactoryFactory$instance;
|
|
756
824
|
|
|
757
825
|
export interface InternalComplexEntry$instance extends InternalEntryBase$instance {
|
|
826
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
827
|
+
|
|
758
828
|
readonly ComplexProperty: IComplexProperty;
|
|
759
829
|
readonly ComplexType: IRuntimeComplexType;
|
|
760
830
|
readonly ContainingEntry: InternalEntryBase;
|
|
@@ -815,6 +885,9 @@ export type InternalComplexEntry = InternalComplexEntry$instance & __InternalCom
|
|
|
815
885
|
|
|
816
886
|
|
|
817
887
|
export interface InternalEntityEntry$instance extends InternalEntryBase$instance {
|
|
888
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
889
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateEntry: never;
|
|
890
|
+
|
|
818
891
|
readonly DebugView: DebugView;
|
|
819
892
|
readonly Entity: unknown;
|
|
820
893
|
readonly EntityType: IRuntimeEntityType;
|
|
@@ -921,6 +994,8 @@ export const InternalEntityEntryNotifier: {
|
|
|
921
994
|
export type InternalEntityEntryNotifier = InternalEntityEntryNotifier$instance;
|
|
922
995
|
|
|
923
996
|
export interface InternalEntryBase$instance {
|
|
997
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
998
|
+
|
|
924
999
|
readonly ContainingEntry: InternalEntryBase;
|
|
925
1000
|
readonly Context: DbContext;
|
|
926
1001
|
readonly EntityEntry: InternalEntityEntry;
|
|
@@ -1027,6 +1102,8 @@ export const InternalEntrySubscriber: {
|
|
|
1027
1102
|
export type InternalEntrySubscriber = InternalEntrySubscriber$instance;
|
|
1028
1103
|
|
|
1029
1104
|
export interface KeyPropagator$instance {
|
|
1105
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IKeyPropagator: never;
|
|
1106
|
+
|
|
1030
1107
|
PropagateValue(entry: InternalEntityEntry, property: IProperty): InternalEntityEntry | undefined;
|
|
1031
1108
|
PropagateValueAsync(entry: InternalEntityEntry, property: IProperty, cancellationToken?: CancellationToken): Task<InternalEntityEntry | undefined>;
|
|
1032
1109
|
}
|
|
@@ -1062,6 +1139,8 @@ export const KeyValueFactoryFactory: {
|
|
|
1062
1139
|
export type KeyValueFactoryFactory = KeyValueFactoryFactory$instance;
|
|
1063
1140
|
|
|
1064
1141
|
export interface LocalViewListener$instance {
|
|
1142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ILocalViewListener: never;
|
|
1143
|
+
|
|
1065
1144
|
RegisterView(viewAction: Action<InternalEntityEntry, EntityState>): void;
|
|
1066
1145
|
StateChanged(entry: InternalEntityEntry, oldState: EntityState, fromQuery: boolean): void;
|
|
1067
1146
|
StateChanging(entry: InternalEntityEntry, newState: EntityState): void;
|
|
@@ -1083,6 +1162,8 @@ export type LocalViewListener = LocalViewListener$instance & __LocalViewListener
|
|
|
1083
1162
|
|
|
1084
1163
|
|
|
1085
1164
|
export interface NavigationFixer$instance {
|
|
1165
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_INavigationFixer: never;
|
|
1166
|
+
|
|
1086
1167
|
AbortDelayedFixup(): void;
|
|
1087
1168
|
BeginDelayedFixup(): boolean;
|
|
1088
1169
|
CompleteDelayedFixup(): void;
|
|
@@ -1111,6 +1192,8 @@ export type NavigationFixer = NavigationFixer$instance & __NavigationFixer$views
|
|
|
1111
1192
|
|
|
1112
1193
|
|
|
1113
1194
|
export interface NullableClassCurrentProviderValueComparer_2$instance<TModel, TProvider> {
|
|
1195
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1196
|
+
|
|
1114
1197
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
1115
1198
|
}
|
|
1116
1199
|
|
|
@@ -1123,6 +1206,9 @@ export const NullableClassCurrentProviderValueComparer_2: {
|
|
|
1123
1206
|
export type NullableClassCurrentProviderValueComparer_2<TModel, TProvider> = NullableClassCurrentProviderValueComparer_2$instance<TModel, TProvider>;
|
|
1124
1207
|
|
|
1125
1208
|
export interface NullableKeyIdentityMap_1$instance<TKey> extends IdentityMap_1$instance<TKey> {
|
|
1209
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap: never;
|
|
1210
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IIdentityMap_1: never;
|
|
1211
|
+
|
|
1126
1212
|
Add(entry: InternalEntityEntry): void;
|
|
1127
1213
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
1128
1214
|
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
@@ -1153,6 +1239,8 @@ export type NullableKeyIdentityMap_1<TKey> = NullableKeyIdentityMap_1$instance<T
|
|
|
1153
1239
|
|
|
1154
1240
|
|
|
1155
1241
|
export interface NullableStructCurrentProviderValueComparer_2$instance<TModel extends unknown, TProvider> {
|
|
1242
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1243
|
+
|
|
1156
1244
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
1157
1245
|
}
|
|
1158
1246
|
|
|
@@ -1165,6 +1253,10 @@ export const NullableStructCurrentProviderValueComparer_2: {
|
|
|
1165
1253
|
export type NullableStructCurrentProviderValueComparer_2<TModel, TProvider> = NullableStructCurrentProviderValueComparer_2$instance<TModel, TProvider>;
|
|
1166
1254
|
|
|
1167
1255
|
export interface NullableValueComparer_1$instance<T extends unknown> extends ValueComparer_1<Nullable<T>> {
|
|
1256
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1257
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1258
|
+
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1259
|
+
|
|
1168
1260
|
}
|
|
1169
1261
|
|
|
1170
1262
|
|
|
@@ -1177,12 +1269,24 @@ export interface __NullableValueComparer_1$views<T extends unknown> {
|
|
|
1177
1269
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
1178
1270
|
}
|
|
1179
1271
|
|
|
1180
|
-
export interface NullableValueComparer_1$instance<T extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer
|
|
1272
|
+
export interface NullableValueComparer_1$instance<T extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<Nullable<T>> {}
|
|
1181
1273
|
|
|
1182
1274
|
export type NullableValueComparer_1<T> = NullableValueComparer_1$instance<T> & __NullableValueComparer_1$views<T>;
|
|
1183
1275
|
|
|
1184
1276
|
|
|
1185
1277
|
export interface ObservableBackedBindingList_1$instance<T> extends SortableBindingList_1<T> {
|
|
1278
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1279
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1280
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
1281
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1282
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1283
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
1284
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1285
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
1286
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
1287
|
+
readonly __tsonic_iface_System_ComponentModel_ICancelAddNew: never;
|
|
1288
|
+
readonly __tsonic_iface_System_ComponentModel_IRaiseItemChangedEvents: never;
|
|
1289
|
+
|
|
1186
1290
|
AddNewCore(): unknown | undefined;
|
|
1187
1291
|
CancelNew(itemIndex: int): void;
|
|
1188
1292
|
ClearItems(): void;
|
|
@@ -1280,6 +1384,9 @@ export const SidecarValuesFactoryFactory: (abstract new() => SidecarValuesFactor
|
|
|
1280
1384
|
export type SidecarValuesFactoryFactory = SidecarValuesFactoryFactory$instance;
|
|
1281
1385
|
|
|
1282
1386
|
export interface SimpleFullyNullableDependentKeyValueFactory_1$instance<TKey> extends DependentKeyValueFactory_1<TKey> {
|
|
1387
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
1388
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1389
|
+
|
|
1283
1390
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1284
1391
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1285
1392
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1303,6 +1410,9 @@ export type SimpleFullyNullableDependentKeyValueFactory_1<TKey> = SimpleFullyNul
|
|
|
1303
1410
|
|
|
1304
1411
|
|
|
1305
1412
|
export interface SimpleNonNullableDependentKeyValueFactory_1$instance<TKey> extends DependentKeyValueFactory_1<TKey> {
|
|
1413
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
1414
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1415
|
+
|
|
1306
1416
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1307
1417
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1308
1418
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1326,6 +1436,9 @@ export type SimpleNonNullableDependentKeyValueFactory_1<TKey> = SimpleNonNullabl
|
|
|
1326
1436
|
|
|
1327
1437
|
|
|
1328
1438
|
export interface SimpleNullableDependentKeyValueFactory_1$instance<TKey extends unknown> extends DependentKeyValueFactory_1<TKey> {
|
|
1439
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
1440
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1441
|
+
|
|
1329
1442
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1330
1443
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1331
1444
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1349,6 +1462,9 @@ export type SimpleNullableDependentKeyValueFactory_1<TKey> = SimpleNullableDepen
|
|
|
1349
1462
|
|
|
1350
1463
|
|
|
1351
1464
|
export interface SimpleNullablePrincipalDependentKeyValueFactory_2$instance<TKey, TNonNullableKey extends unknown> extends DependentKeyValueFactory_1<TKey> {
|
|
1465
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
1466
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
1467
|
+
|
|
1352
1468
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1353
1469
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1354
1470
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1372,6 +1488,9 @@ export type SimpleNullablePrincipalDependentKeyValueFactory_2<TKey, TNonNullable
|
|
|
1372
1488
|
|
|
1373
1489
|
|
|
1374
1490
|
export interface SimplePrincipalKeyValueFactory_1$instance<TKey> {
|
|
1491
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory: never;
|
|
1492
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory_1: never;
|
|
1493
|
+
|
|
1375
1494
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1376
1495
|
CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1377
1496
|
CreateFromCurrentValues(entry: IUpdateEntry): TKey;
|
|
@@ -1397,6 +1516,8 @@ export type SimplePrincipalKeyValueFactory_1<TKey> = SimplePrincipalKeyValueFact
|
|
|
1397
1516
|
|
|
1398
1517
|
|
|
1399
1518
|
export interface Snapshot$instance {
|
|
1519
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1520
|
+
|
|
1400
1521
|
[index: number]: unknown | undefined;
|
|
1401
1522
|
GetValue<T>(index: int): T;
|
|
1402
1523
|
}
|
|
@@ -1421,6 +1542,8 @@ export type Snapshot = Snapshot$instance & __Snapshot$views;
|
|
|
1421
1542
|
|
|
1422
1543
|
|
|
1423
1544
|
export interface Snapshot_1$instance<T0> {
|
|
1545
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1546
|
+
|
|
1424
1547
|
[index: number]: unknown | undefined;
|
|
1425
1548
|
GetValue<T>(index: int): T;
|
|
1426
1549
|
}
|
|
@@ -1441,6 +1564,8 @@ export type Snapshot_1<T0> = Snapshot_1$instance<T0> & __Snapshot_1$views<T0>;
|
|
|
1441
1564
|
|
|
1442
1565
|
|
|
1443
1566
|
export interface Snapshot_10$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> {
|
|
1567
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1568
|
+
|
|
1444
1569
|
[index: number]: unknown | undefined;
|
|
1445
1570
|
GetValue<T>(index: int): T;
|
|
1446
1571
|
}
|
|
@@ -1461,6 +1586,8 @@ export type Snapshot_10<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> = Snapshot_10$in
|
|
|
1461
1586
|
|
|
1462
1587
|
|
|
1463
1588
|
export interface Snapshot_11$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> {
|
|
1589
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1590
|
+
|
|
1464
1591
|
[index: number]: unknown | undefined;
|
|
1465
1592
|
GetValue<T>(index: int): T;
|
|
1466
1593
|
}
|
|
@@ -1481,6 +1608,8 @@ export type Snapshot_11<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> = Snapshot_
|
|
|
1481
1608
|
|
|
1482
1609
|
|
|
1483
1610
|
export interface Snapshot_12$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> {
|
|
1611
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1612
|
+
|
|
1484
1613
|
[index: number]: unknown | undefined;
|
|
1485
1614
|
GetValue<T>(index: int): T;
|
|
1486
1615
|
}
|
|
@@ -1501,6 +1630,8 @@ export type Snapshot_12<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> = Snap
|
|
|
1501
1630
|
|
|
1502
1631
|
|
|
1503
1632
|
export interface Snapshot_13$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> {
|
|
1633
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1634
|
+
|
|
1504
1635
|
[index: number]: unknown | undefined;
|
|
1505
1636
|
GetValue<T>(index: int): T;
|
|
1506
1637
|
}
|
|
@@ -1521,6 +1652,8 @@ export type Snapshot_13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> =
|
|
|
1521
1652
|
|
|
1522
1653
|
|
|
1523
1654
|
export interface Snapshot_14$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> {
|
|
1655
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1656
|
+
|
|
1524
1657
|
[index: number]: unknown | undefined;
|
|
1525
1658
|
GetValue<T>(index: int): T;
|
|
1526
1659
|
}
|
|
@@ -1541,6 +1674,8 @@ export type Snapshot_14<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1541
1674
|
|
|
1542
1675
|
|
|
1543
1676
|
export interface Snapshot_15$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> {
|
|
1677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1678
|
+
|
|
1544
1679
|
[index: number]: unknown | undefined;
|
|
1545
1680
|
GetValue<T>(index: int): T;
|
|
1546
1681
|
}
|
|
@@ -1561,6 +1696,8 @@ export type Snapshot_15<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1561
1696
|
|
|
1562
1697
|
|
|
1563
1698
|
export interface Snapshot_16$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> {
|
|
1699
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1700
|
+
|
|
1564
1701
|
[index: number]: unknown | undefined;
|
|
1565
1702
|
GetValue<T>(index: int): T;
|
|
1566
1703
|
}
|
|
@@ -1581,6 +1718,8 @@ export type Snapshot_16<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1581
1718
|
|
|
1582
1719
|
|
|
1583
1720
|
export interface Snapshot_17$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> {
|
|
1721
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1722
|
+
|
|
1584
1723
|
[index: number]: unknown | undefined;
|
|
1585
1724
|
GetValue<T>(index: int): T;
|
|
1586
1725
|
}
|
|
@@ -1601,6 +1740,8 @@ export type Snapshot_17<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1601
1740
|
|
|
1602
1741
|
|
|
1603
1742
|
export interface Snapshot_18$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> {
|
|
1743
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1744
|
+
|
|
1604
1745
|
[index: number]: unknown | undefined;
|
|
1605
1746
|
GetValue<T>(index: int): T;
|
|
1606
1747
|
}
|
|
@@ -1621,6 +1762,8 @@ export type Snapshot_18<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1621
1762
|
|
|
1622
1763
|
|
|
1623
1764
|
export interface Snapshot_19$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> {
|
|
1765
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1766
|
+
|
|
1624
1767
|
[index: number]: unknown | undefined;
|
|
1625
1768
|
GetValue<T>(index: int): T;
|
|
1626
1769
|
}
|
|
@@ -1641,6 +1784,8 @@ export type Snapshot_19<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1641
1784
|
|
|
1642
1785
|
|
|
1643
1786
|
export interface Snapshot_2$instance<T0, T1> {
|
|
1787
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1788
|
+
|
|
1644
1789
|
[index: number]: unknown | undefined;
|
|
1645
1790
|
GetValue<T>(index: int): T;
|
|
1646
1791
|
}
|
|
@@ -1661,6 +1806,8 @@ export type Snapshot_2<T0, T1> = Snapshot_2$instance<T0, T1> & __Snapshot_2$view
|
|
|
1661
1806
|
|
|
1662
1807
|
|
|
1663
1808
|
export interface Snapshot_20$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> {
|
|
1809
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1810
|
+
|
|
1664
1811
|
[index: number]: unknown | undefined;
|
|
1665
1812
|
GetValue<T>(index: int): T;
|
|
1666
1813
|
}
|
|
@@ -1681,6 +1828,8 @@ export type Snapshot_20<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1681
1828
|
|
|
1682
1829
|
|
|
1683
1830
|
export interface Snapshot_21$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> {
|
|
1831
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1832
|
+
|
|
1684
1833
|
[index: number]: unknown | undefined;
|
|
1685
1834
|
GetValue<T>(index: int): T;
|
|
1686
1835
|
}
|
|
@@ -1701,6 +1850,8 @@ export type Snapshot_21<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1701
1850
|
|
|
1702
1851
|
|
|
1703
1852
|
export interface Snapshot_22$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> {
|
|
1853
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1854
|
+
|
|
1704
1855
|
[index: number]: unknown | undefined;
|
|
1705
1856
|
GetValue<T>(index: int): T;
|
|
1706
1857
|
}
|
|
@@ -1721,6 +1872,8 @@ export type Snapshot_22<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1721
1872
|
|
|
1722
1873
|
|
|
1723
1874
|
export interface Snapshot_23$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> {
|
|
1875
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1876
|
+
|
|
1724
1877
|
[index: number]: unknown | undefined;
|
|
1725
1878
|
GetValue<T>(index: int): T;
|
|
1726
1879
|
}
|
|
@@ -1741,6 +1894,8 @@ export type Snapshot_23<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1741
1894
|
|
|
1742
1895
|
|
|
1743
1896
|
export interface Snapshot_24$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23> {
|
|
1897
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1898
|
+
|
|
1744
1899
|
[index: number]: unknown | undefined;
|
|
1745
1900
|
GetValue<T>(index: int): T;
|
|
1746
1901
|
}
|
|
@@ -1761,6 +1916,8 @@ export type Snapshot_24<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1761
1916
|
|
|
1762
1917
|
|
|
1763
1918
|
export interface Snapshot_25$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> {
|
|
1919
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1920
|
+
|
|
1764
1921
|
[index: number]: unknown | undefined;
|
|
1765
1922
|
GetValue<T>(index: int): T;
|
|
1766
1923
|
}
|
|
@@ -1781,6 +1938,8 @@ export type Snapshot_25<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1781
1938
|
|
|
1782
1939
|
|
|
1783
1940
|
export interface Snapshot_26$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> {
|
|
1941
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1942
|
+
|
|
1784
1943
|
[index: number]: unknown | undefined;
|
|
1785
1944
|
GetValue<T>(index: int): T;
|
|
1786
1945
|
}
|
|
@@ -1801,6 +1960,8 @@ export type Snapshot_26<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1801
1960
|
|
|
1802
1961
|
|
|
1803
1962
|
export interface Snapshot_27$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> {
|
|
1963
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1964
|
+
|
|
1804
1965
|
[index: number]: unknown | undefined;
|
|
1805
1966
|
GetValue<T>(index: int): T;
|
|
1806
1967
|
}
|
|
@@ -1821,6 +1982,8 @@ export type Snapshot_27<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1821
1982
|
|
|
1822
1983
|
|
|
1823
1984
|
export interface Snapshot_28$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> {
|
|
1985
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1986
|
+
|
|
1824
1987
|
[index: number]: unknown | undefined;
|
|
1825
1988
|
GetValue<T>(index: int): T;
|
|
1826
1989
|
}
|
|
@@ -1841,6 +2004,8 @@ export type Snapshot_28<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1841
2004
|
|
|
1842
2005
|
|
|
1843
2006
|
export interface Snapshot_29$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> {
|
|
2007
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2008
|
+
|
|
1844
2009
|
[index: number]: unknown | undefined;
|
|
1845
2010
|
GetValue<T>(index: int): T;
|
|
1846
2011
|
}
|
|
@@ -1861,6 +2026,8 @@ export type Snapshot_29<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1861
2026
|
|
|
1862
2027
|
|
|
1863
2028
|
export interface Snapshot_3$instance<T0, T1, T2> {
|
|
2029
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2030
|
+
|
|
1864
2031
|
[index: number]: unknown | undefined;
|
|
1865
2032
|
GetValue<T>(index: int): T;
|
|
1866
2033
|
}
|
|
@@ -1881,6 +2048,8 @@ export type Snapshot_3<T0, T1, T2> = Snapshot_3$instance<T0, T1, T2> & __Snapsho
|
|
|
1881
2048
|
|
|
1882
2049
|
|
|
1883
2050
|
export interface Snapshot_30$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29> {
|
|
2051
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2052
|
+
|
|
1884
2053
|
[index: number]: unknown | undefined;
|
|
1885
2054
|
GetValue<T>(index: int): T;
|
|
1886
2055
|
}
|
|
@@ -1901,6 +2070,8 @@ export type Snapshot_30<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1901
2070
|
|
|
1902
2071
|
|
|
1903
2072
|
export interface Snapshot_4$instance<T0, T1, T2, T3> {
|
|
2073
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2074
|
+
|
|
1904
2075
|
[index: number]: unknown | undefined;
|
|
1905
2076
|
GetValue<T>(index: int): T;
|
|
1906
2077
|
}
|
|
@@ -1921,6 +2092,8 @@ export type Snapshot_4<T0, T1, T2, T3> = Snapshot_4$instance<T0, T1, T2, T3> & _
|
|
|
1921
2092
|
|
|
1922
2093
|
|
|
1923
2094
|
export interface Snapshot_5$instance<T0, T1, T2, T3, T4> {
|
|
2095
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2096
|
+
|
|
1924
2097
|
[index: number]: unknown | undefined;
|
|
1925
2098
|
GetValue<T>(index: int): T;
|
|
1926
2099
|
}
|
|
@@ -1941,6 +2114,8 @@ export type Snapshot_5<T0, T1, T2, T3, T4> = Snapshot_5$instance<T0, T1, T2, T3,
|
|
|
1941
2114
|
|
|
1942
2115
|
|
|
1943
2116
|
export interface Snapshot_6$instance<T0, T1, T2, T3, T4, T5> {
|
|
2117
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2118
|
+
|
|
1944
2119
|
[index: number]: unknown | undefined;
|
|
1945
2120
|
GetValue<T>(index: int): T;
|
|
1946
2121
|
}
|
|
@@ -1961,6 +2136,8 @@ export type Snapshot_6<T0, T1, T2, T3, T4, T5> = Snapshot_6$instance<T0, T1, T2,
|
|
|
1961
2136
|
|
|
1962
2137
|
|
|
1963
2138
|
export interface Snapshot_7$instance<T0, T1, T2, T3, T4, T5, T6> {
|
|
2139
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2140
|
+
|
|
1964
2141
|
[index: number]: unknown | undefined;
|
|
1965
2142
|
GetValue<T>(index: int): T;
|
|
1966
2143
|
}
|
|
@@ -1981,6 +2158,8 @@ export type Snapshot_7<T0, T1, T2, T3, T4, T5, T6> = Snapshot_7$instance<T0, T1,
|
|
|
1981
2158
|
|
|
1982
2159
|
|
|
1983
2160
|
export interface Snapshot_8$instance<T0, T1, T2, T3, T4, T5, T6, T7> {
|
|
2161
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2162
|
+
|
|
1984
2163
|
[index: number]: unknown | undefined;
|
|
1985
2164
|
GetValue<T>(index: int): T;
|
|
1986
2165
|
}
|
|
@@ -2001,6 +2180,8 @@ export type Snapshot_8<T0, T1, T2, T3, T4, T5, T6, T7> = Snapshot_8$instance<T0,
|
|
|
2001
2180
|
|
|
2002
2181
|
|
|
2003
2182
|
export interface Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> {
|
|
2183
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2184
|
+
|
|
2004
2185
|
[index: number]: unknown | undefined;
|
|
2005
2186
|
GetValue<T>(index: int): T;
|
|
2006
2187
|
}
|
|
@@ -2056,6 +2237,18 @@ export const SnapshotFactoryFactory_1: (abstract new<TInput>() => SnapshotFactor
|
|
|
2056
2237
|
export type SnapshotFactoryFactory_1<TInput> = SnapshotFactoryFactory_1$instance<TInput>;
|
|
2057
2238
|
|
|
2058
2239
|
export interface SortableBindingList_1$instance<T> extends BindingList<T> {
|
|
2240
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
2241
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
2242
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
2243
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
2244
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
2245
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
2246
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
2247
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
2248
|
+
readonly __tsonic_iface_System_ComponentModel_IBindingList: never;
|
|
2249
|
+
readonly __tsonic_iface_System_ComponentModel_ICancelAddNew: never;
|
|
2250
|
+
readonly __tsonic_iface_System_ComponentModel_IRaiseItemChangedEvents: never;
|
|
2251
|
+
|
|
2059
2252
|
readonly IsSortedCore: boolean;
|
|
2060
2253
|
readonly SortDirectionCore: ListSortDirection;
|
|
2061
2254
|
readonly SortPropertyCore: PropertyDescriptor | undefined;
|
|
@@ -2073,6 +2266,9 @@ export const SortableBindingList_1: {
|
|
|
2073
2266
|
export type SortableBindingList_1<T> = SortableBindingList_1$instance<T>;
|
|
2074
2267
|
|
|
2075
2268
|
export interface StateManager$instance {
|
|
2269
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager: never;
|
|
2270
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
2271
|
+
|
|
2076
2272
|
CascadeDeleteTiming: CascadeTiming;
|
|
2077
2273
|
ChangedCount: int;
|
|
2078
2274
|
readonly ChangeDetector: IChangeDetector;
|
|
@@ -2160,6 +2356,8 @@ export type StateManager = StateManager$instance & __StateManager$views;
|
|
|
2160
2356
|
|
|
2161
2357
|
|
|
2162
2358
|
export interface StateManagerDependencies$instance {
|
|
2359
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2360
|
+
|
|
2163
2361
|
ChangeTrackingLogger: IDiagnosticsLogger_1<DbLoggerCategory_ChangeTracking>;
|
|
2164
2362
|
ConcurrencyDetector: IConcurrencyDetector;
|
|
2165
2363
|
CoreSingletonOptions: ICoreSingletonOptions;
|
|
@@ -2206,6 +2404,9 @@ export const StoreGeneratedValuesFactoryFactory: {
|
|
|
2206
2404
|
export type StoreGeneratedValuesFactoryFactory = StoreGeneratedValuesFactoryFactory$instance;
|
|
2207
2405
|
|
|
2208
2406
|
export interface StructuralEntryCurrentProviderValueComparer$instance extends StructuralEntryCurrentValueComparer {
|
|
2407
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
2408
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
2409
|
+
|
|
2209
2410
|
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
2210
2411
|
}
|
|
2211
2412
|
|
|
@@ -2218,6 +2419,9 @@ export const StructuralEntryCurrentProviderValueComparer: {
|
|
|
2218
2419
|
export type StructuralEntryCurrentProviderValueComparer = StructuralEntryCurrentProviderValueComparer$instance;
|
|
2219
2420
|
|
|
2220
2421
|
export interface StructuralEntryCurrentValueComparer$instance extends EntryCurrentValueComparer {
|
|
2422
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
2423
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
2424
|
+
|
|
2221
2425
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
2222
2426
|
}
|
|
2223
2427
|
|
|
@@ -2242,6 +2446,8 @@ export const TemporaryValuesFactoryFactory: {
|
|
|
2242
2446
|
export type TemporaryValuesFactoryFactory = TemporaryValuesFactoryFactory$instance;
|
|
2243
2447
|
|
|
2244
2448
|
export interface ValueGenerationManager$instance {
|
|
2449
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IValueGenerationManager: never;
|
|
2450
|
+
|
|
2245
2451
|
Generate(entry: InternalEntityEntry, includePrimaryKey?: boolean): boolean;
|
|
2246
2452
|
GenerateAsync(entry: InternalEntityEntry, includePrimaryKey?: boolean, cancellationToken?: CancellationToken): Task<System_Internal.Boolean>;
|
|
2247
2453
|
Propagate(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|