@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
|
@@ -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,8 +141,10 @@ 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
|
-
set Item(value: unknown);
|
|
147
|
+
set Item(value: unknown | undefined);
|
|
132
148
|
readonly EntityState: EntityState;
|
|
133
149
|
readonly Context: DbContext;
|
|
134
150
|
readonly StructuralType: IRuntimeTypeBase;
|
|
@@ -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,7 +236,9 @@ export interface INavigationFixer$instance {
|
|
|
212
236
|
export type INavigationFixer = INavigationFixer$instance;
|
|
213
237
|
|
|
214
238
|
export interface ISnapshot$instance {
|
|
215
|
-
|
|
239
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
240
|
+
|
|
241
|
+
[index: number]: unknown | undefined;
|
|
216
242
|
readonly IsEmpty: boolean;
|
|
217
243
|
GetValue<T>(index: int): T;
|
|
218
244
|
}
|
|
@@ -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,7 +323,9 @@ export interface IValueGenerationManager$instance {
|
|
|
293
323
|
export type IValueGenerationManager = IValueGenerationManager$instance;
|
|
294
324
|
|
|
295
325
|
export interface MultiSnapshot$instance {
|
|
296
|
-
|
|
326
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
327
|
+
|
|
328
|
+
[index: number]: unknown | undefined;
|
|
297
329
|
GetValue<T>(index: int): T;
|
|
298
330
|
}
|
|
299
331
|
|
|
@@ -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>;
|
|
@@ -437,18 +481,17 @@ export interface __CompositePrincipalKeyValueFactory$views {
|
|
|
437
481
|
export type CompositePrincipalKeyValueFactory = CompositePrincipalKeyValueFactory$instance & __CompositePrincipalKeyValueFactory$views;
|
|
438
482
|
|
|
439
483
|
|
|
440
|
-
export
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
}
|
|
444
|
-
|
|
484
|
+
export interface CompositeValueFactory$instance {
|
|
485
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory: never;
|
|
486
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
445
487
|
|
|
446
|
-
export interface CompositeValueFactory$instance extends CompositeValueFactory$protected {
|
|
447
488
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<IReadOnlyList<unknown | undefined>>;
|
|
489
|
+
readonly Properties: IReadOnlyList<IProperty>;
|
|
448
490
|
CreateDependentEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown | undefined;
|
|
449
491
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
450
492
|
TryCreateFromBuffer(valueBuffer: ValueBuffer, key: IReadOnlyList<unknown>): boolean;
|
|
451
493
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
494
|
+
TryCreateFromEntry(entry: IUpdateEntry, getValue: Func<IUpdateEntry, IProperty, unknown>, key: IReadOnlyList<unknown>): boolean;
|
|
452
495
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
453
496
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
454
497
|
TryCreateFromRelationshipSnapshot(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
@@ -470,6 +513,10 @@ export type CompositeValueFactory = CompositeValueFactory$instance & __Composite
|
|
|
470
513
|
|
|
471
514
|
|
|
472
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
|
+
|
|
473
520
|
}
|
|
474
521
|
|
|
475
522
|
|
|
@@ -482,21 +529,17 @@ export interface __ConvertingValueComparer_2$views<TTo, TFrom> {
|
|
|
482
529
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
483
530
|
}
|
|
484
531
|
|
|
485
|
-
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> {}
|
|
486
533
|
|
|
487
534
|
export type ConvertingValueComparer_2<TTo, TFrom> = ConvertingValueComparer_2$instance<TTo, TFrom> & __ConvertingValueComparer_2$views<TTo, TFrom>;
|
|
488
535
|
|
|
489
536
|
|
|
490
|
-
export
|
|
491
|
-
|
|
492
|
-
protected GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
493
|
-
protected SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
export interface CurrentPropertyValues$instance extends CurrentPropertyValues$protected, EntryPropertyValues {
|
|
537
|
+
export interface CurrentPropertyValues$instance extends EntryPropertyValues {
|
|
538
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
498
539
|
GetValue<TValue>(propertyName: string): TValue;
|
|
499
540
|
GetValue<TValue>(property: IProperty): TValue;
|
|
541
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
542
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
500
543
|
}
|
|
501
544
|
|
|
502
545
|
|
|
@@ -508,6 +551,8 @@ export const CurrentPropertyValues: {
|
|
|
508
551
|
export type CurrentPropertyValues = CurrentPropertyValues$instance;
|
|
509
552
|
|
|
510
553
|
export interface CurrentProviderValueComparer_2$instance<TModel, TProvider> {
|
|
554
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
555
|
+
|
|
511
556
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
512
557
|
}
|
|
513
558
|
|
|
@@ -526,7 +571,6 @@ export interface CurrentValueComparerFactory$instance {
|
|
|
526
571
|
|
|
527
572
|
|
|
528
573
|
export const CurrentValueComparerFactory: {
|
|
529
|
-
new(): CurrentValueComparerFactory;
|
|
530
574
|
readonly Instance: CurrentValueComparerFactory;
|
|
531
575
|
};
|
|
532
576
|
|
|
@@ -542,8 +586,7 @@ export interface DependentKeyValueFactory_1$instance<TKey> {
|
|
|
542
586
|
}
|
|
543
587
|
|
|
544
588
|
|
|
545
|
-
export const DependentKeyValueFactory_1: {
|
|
546
|
-
new<TKey>(foreignKey: IForeignKey, principalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>): DependentKeyValueFactory_1<TKey>;
|
|
589
|
+
export const DependentKeyValueFactory_1: (abstract new<TKey>(foreignKey: IForeignKey, principalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>) => DependentKeyValueFactory_1<TKey>) & {
|
|
547
590
|
};
|
|
548
591
|
|
|
549
592
|
|
|
@@ -564,6 +607,8 @@ export const DependentKeyValueFactoryFactory: {
|
|
|
564
607
|
export type DependentKeyValueFactoryFactory = DependentKeyValueFactoryFactory$instance;
|
|
565
608
|
|
|
566
609
|
export interface DependentsMap_1$instance<TKey> {
|
|
610
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IDependentsMap: never;
|
|
611
|
+
|
|
567
612
|
Add(entry: IUpdateEntry): void;
|
|
568
613
|
GetDependents(principalEntry: IUpdateEntry): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
569
614
|
GetDependents(keyValues: IReadOnlyList<unknown>): IEnumerable__System_Collections_Generic<IUpdateEntry>;
|
|
@@ -585,23 +630,18 @@ export interface __DependentsMap_1$views<TKey> {
|
|
|
585
630
|
export type DependentsMap_1<TKey> = DependentsMap_1$instance<TKey> & __DependentsMap_1$views<TKey>;
|
|
586
631
|
|
|
587
632
|
|
|
588
|
-
export
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
export interface EmptyShadowValuesFactoryFactory$instance extends EmptyShadowValuesFactoryFactory$protected, SnapshotFactoryFactory {
|
|
633
|
+
export interface EmptyShadowValuesFactoryFactory$instance extends SnapshotFactoryFactory {
|
|
634
|
+
readonly UseEntityVariable: boolean;
|
|
635
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
636
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
637
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
638
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
639
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
640
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
600
641
|
}
|
|
601
642
|
|
|
602
643
|
|
|
603
644
|
export const EmptyShadowValuesFactoryFactory: {
|
|
604
|
-
new(): EmptyShadowValuesFactoryFactory;
|
|
605
645
|
readonly Instance: EmptyShadowValuesFactoryFactory;
|
|
606
646
|
};
|
|
607
647
|
|
|
@@ -609,6 +649,8 @@ export const EmptyShadowValuesFactoryFactory: {
|
|
|
609
649
|
export type EmptyShadowValuesFactoryFactory = EmptyShadowValuesFactoryFactory$instance;
|
|
610
650
|
|
|
611
651
|
export interface EntityEntryGraphIterator$instance {
|
|
652
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IEntityEntryGraphIterator: never;
|
|
653
|
+
|
|
612
654
|
TraverseGraph<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, System_Internal.Boolean>): void;
|
|
613
655
|
TraverseGraphAsync<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func<EntityEntryGraphNode_1<TState>, CancellationToken, Task<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
|
|
614
656
|
}
|
|
@@ -629,6 +671,8 @@ export type EntityEntryGraphIterator = EntityEntryGraphIterator$instance & __Ent
|
|
|
629
671
|
|
|
630
672
|
|
|
631
673
|
export interface EntityGraphAttacher$instance {
|
|
674
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IEntityGraphAttacher: never;
|
|
675
|
+
|
|
632
676
|
AttachGraph(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean): void;
|
|
633
677
|
AttachGraphAsync(rootEntry: InternalEntityEntry, targetState: EntityState, storeGeneratedWithKeySetTargetState: EntityState, forceStateWhenUnknownKey: boolean, cancellationToken?: CancellationToken): Task;
|
|
634
678
|
}
|
|
@@ -665,12 +709,11 @@ export const EntityReferenceMap: {
|
|
|
665
709
|
|
|
666
710
|
export type EntityReferenceMap = EntityReferenceMap$instance;
|
|
667
711
|
|
|
668
|
-
export
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
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;
|
|
672
715
|
|
|
673
|
-
|
|
716
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
674
717
|
}
|
|
675
718
|
|
|
676
719
|
|
|
@@ -681,16 +724,15 @@ export const EntryCurrentProviderValueComparer: {
|
|
|
681
724
|
|
|
682
725
|
export type EntryCurrentProviderValueComparer = EntryCurrentProviderValueComparer$instance;
|
|
683
726
|
|
|
684
|
-
export
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
}
|
|
688
|
-
|
|
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;
|
|
689
730
|
|
|
690
|
-
export interface EntryCurrentValueComparer$instance extends EntryCurrentValueComparer$protected {
|
|
691
731
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
732
|
+
ComparePropertyValues(x: unknown, y: unknown): int;
|
|
692
733
|
Equals(x: IUpdateEntry, y: IUpdateEntry): boolean;
|
|
693
734
|
GetHashCode(obj: IUpdateEntry): int;
|
|
735
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
694
736
|
}
|
|
695
737
|
|
|
696
738
|
|
|
@@ -702,21 +744,17 @@ export const EntryCurrentValueComparer: {
|
|
|
702
744
|
|
|
703
745
|
export type EntryCurrentValueComparer = EntryCurrentValueComparer$instance;
|
|
704
746
|
|
|
705
|
-
export
|
|
706
|
-
protected abstract GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
707
|
-
protected abstract GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
708
|
-
protected abstract SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
export interface EntryPropertyValues$instance extends EntryPropertyValues$protected, PropertyValues {
|
|
747
|
+
export interface EntryPropertyValues$instance extends PropertyValues {
|
|
713
748
|
Clone(): PropertyValues;
|
|
714
749
|
get_Item(propertyName: string): unknown | undefined;
|
|
715
750
|
get_Item(property: IProperty): unknown | undefined;
|
|
716
751
|
get_Item(complexProperty: IComplexProperty): IList | undefined;
|
|
752
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
753
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
717
754
|
set_Item(propertyName: string, value: unknown | undefined): void;
|
|
718
755
|
set_Item(property: IProperty, value: unknown | undefined): void;
|
|
719
756
|
set_Item(complexProperty: IComplexProperty, value: IList | undefined): void;
|
|
757
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
720
758
|
SetValues(obj: unknown): void;
|
|
721
759
|
SetValues(propertyValues: PropertyValues): void;
|
|
722
760
|
SetValues<TProperty>(values: IDictionary<System_Internal.String, TProperty>): void;
|
|
@@ -725,30 +763,28 @@ export interface EntryPropertyValues$instance extends EntryPropertyValues$protec
|
|
|
725
763
|
}
|
|
726
764
|
|
|
727
765
|
|
|
728
|
-
export const EntryPropertyValues: {
|
|
729
|
-
new(internalEntry: InternalEntryBase): EntryPropertyValues;
|
|
766
|
+
export const EntryPropertyValues: (abstract new(internalEntry: InternalEntryBase) => EntryPropertyValues) & {
|
|
730
767
|
};
|
|
731
768
|
|
|
732
769
|
|
|
733
770
|
export type EntryPropertyValues = EntryPropertyValues$instance;
|
|
734
771
|
|
|
735
|
-
export
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
protected Remove(key: TKey, entry: InternalEntityEntry): void;
|
|
739
|
-
}
|
|
740
|
-
|
|
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;
|
|
741
775
|
|
|
742
|
-
export interface IdentityMap_1$instance<TKey> extends IdentityMap_1$protected<TKey> {
|
|
743
776
|
readonly Key: IKey;
|
|
777
|
+
readonly PrincipalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>;
|
|
744
778
|
Add(entry: InternalEntityEntry): void;
|
|
745
779
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
780
|
+
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
746
781
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
747
782
|
All(): IEnumerable__System_Collections_Generic<InternalEntityEntry>;
|
|
748
783
|
Clear(): void;
|
|
749
784
|
FindDependentsMap(foreignKey: IForeignKey): IDependentsMap | undefined;
|
|
750
785
|
GetDependentsMap(foreignKey: IForeignKey): IDependentsMap;
|
|
751
786
|
Remove(entry: InternalEntityEntry): void;
|
|
787
|
+
Remove(key: TKey, entry: InternalEntityEntry): void;
|
|
752
788
|
RemoveUsingRelationshipSnapshot(entry: InternalEntityEntry): void;
|
|
753
789
|
TryGetEntry(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|
|
754
790
|
TryGetEntry(keyValues: IReadOnlyList<unknown>): InternalEntityEntry | undefined;
|
|
@@ -786,14 +822,9 @@ export const IdentityMapFactoryFactory: {
|
|
|
786
822
|
|
|
787
823
|
export type IdentityMapFactoryFactory = IdentityMapFactoryFactory$instance;
|
|
788
824
|
|
|
789
|
-
export
|
|
790
|
-
|
|
791
|
-
protected OnStateChanging(newState: EntityState): void;
|
|
792
|
-
protected SetEntityState2(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
793
|
-
}
|
|
794
|
-
|
|
825
|
+
export interface InternalComplexEntry$instance extends InternalEntryBase$instance {
|
|
826
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
795
827
|
|
|
796
|
-
export interface InternalComplexEntry$instance extends InternalComplexEntry$protected, InternalEntryBase$instance {
|
|
797
828
|
readonly ComplexProperty: IComplexProperty;
|
|
798
829
|
readonly ComplexType: IRuntimeComplexType;
|
|
799
830
|
readonly ContainingEntry: InternalEntryBase;
|
|
@@ -824,10 +855,13 @@ export interface InternalComplexEntry$instance extends InternalComplexEntry$prot
|
|
|
824
855
|
MarkUnknown(property: IProperty): void;
|
|
825
856
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
826
857
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
858
|
+
OnStateChanged(oldState: EntityState): void;
|
|
859
|
+
OnStateChanging(newState: EntityState): void;
|
|
827
860
|
PrepareToSave(): IInternalEntry;
|
|
828
861
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
829
862
|
ReadPropertyValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
830
863
|
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
864
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
831
865
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
832
866
|
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
833
867
|
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
@@ -850,16 +884,10 @@ export interface __InternalComplexEntry$views {
|
|
|
850
884
|
export type InternalComplexEntry = InternalComplexEntry$instance & __InternalComplexEntry$views;
|
|
851
885
|
|
|
852
886
|
|
|
853
|
-
export
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
protected OnStateChanging(newState: EntityState): void;
|
|
857
|
-
protected SetEntityState2(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
858
|
-
protected SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
859
|
-
}
|
|
860
|
-
|
|
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;
|
|
861
890
|
|
|
862
|
-
export interface InternalEntityEntry$instance extends InternalEntityEntry$protected, InternalEntryBase$instance {
|
|
863
891
|
readonly DebugView: DebugView;
|
|
864
892
|
readonly Entity: unknown;
|
|
865
893
|
readonly EntityType: IRuntimeEntityType;
|
|
@@ -867,7 +895,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
867
895
|
readonly IsKeySet: ValueTuple<System_Internal.Boolean, System_Internal.Boolean>;
|
|
868
896
|
readonly IsKeyUnknown: boolean;
|
|
869
897
|
get SharedIdentityEntry(): InternalEntityEntry | undefined;
|
|
870
|
-
set SharedIdentityEntry(value: InternalEntityEntry);
|
|
898
|
+
set SharedIdentityEntry(value: InternalEntityEntry | undefined);
|
|
871
899
|
readonly StateManager: IStateManager;
|
|
872
900
|
AcceptChanges(): void;
|
|
873
901
|
AddRangeToCollectionSnapshot(navigation: INavigationBase, addedEntities: IEnumerable__System_Collections_Generic<unknown>): void;
|
|
@@ -902,6 +930,9 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
902
930
|
MarkUnknown(property: IProperty): void;
|
|
903
931
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
904
932
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
933
|
+
OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
934
|
+
OnStateChanged(oldState: EntityState): void;
|
|
935
|
+
OnStateChanging(newState: EntityState): void;
|
|
905
936
|
PrepareToSave(): IInternalEntry;
|
|
906
937
|
PropagateValue(principalEntry: InternalEntityEntry, principalProperty: IProperty, dependentProperty: IProperty, isMaterialization?: boolean, setModified?: boolean): void;
|
|
907
938
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
@@ -911,6 +942,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
911
942
|
RemoveFromCollectionSnapshot(navigation: INavigationBase, removedEntity: unknown): void;
|
|
912
943
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
913
944
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
945
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
914
946
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
915
947
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
916
948
|
SetIsLoaded(navigation: INavigationBase, loaded?: boolean): void;
|
|
@@ -919,6 +951,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
919
951
|
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
920
952
|
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
921
953
|
SetRelationshipSnapshotValue(propertyBase: IPropertyBase, value: unknown): void;
|
|
954
|
+
SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
922
955
|
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
923
956
|
ToEntityEntry(): EntityEntry;
|
|
924
957
|
ToString(): string;
|
|
@@ -960,20 +993,9 @@ export const InternalEntityEntryNotifier: {
|
|
|
960
993
|
|
|
961
994
|
export type InternalEntityEntryNotifier = InternalEntityEntryNotifier$instance;
|
|
962
995
|
|
|
963
|
-
export
|
|
964
|
-
|
|
965
|
-
protected GetOrCreateShadowCollection(navigation: INavigationBase): unknown;
|
|
966
|
-
protected GetValueType(property: IProperty): InternalEntryBase_CurrentValueType;
|
|
967
|
-
protected OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
968
|
-
protected OnStateChanged(oldState: EntityState): void;
|
|
969
|
-
protected OnStateChanging(newState: EntityState): void;
|
|
970
|
-
protected PrepareForAdd(newState: EntityState): boolean;
|
|
971
|
-
protected SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
972
|
-
protected SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
973
|
-
}
|
|
974
|
-
|
|
996
|
+
export interface InternalEntryBase$instance {
|
|
997
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IInternalEntry: never;
|
|
975
998
|
|
|
976
|
-
export interface InternalEntryBase$instance extends InternalEntryBase$protected {
|
|
977
999
|
readonly ContainingEntry: InternalEntryBase;
|
|
978
1000
|
readonly Context: DbContext;
|
|
979
1001
|
readonly EntityEntry: InternalEntityEntry;
|
|
@@ -981,7 +1003,8 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
981
1003
|
readonly HasConceptualNull: boolean;
|
|
982
1004
|
readonly HasOriginalValuesSnapshot: boolean;
|
|
983
1005
|
get Item(): unknown | undefined;
|
|
984
|
-
set Item(value: unknown);
|
|
1006
|
+
set Item(value: unknown | undefined);
|
|
1007
|
+
readonly PropertyStateData: unknown;
|
|
985
1008
|
readonly StateManager: IStateManager;
|
|
986
1009
|
readonly StructuralType: IRuntimeTypeBase;
|
|
987
1010
|
AcceptChanges(): void;
|
|
@@ -1000,10 +1023,12 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1000
1023
|
GetCurrentValue<TProperty>(propertyBase: IPropertyBase): TProperty;
|
|
1001
1024
|
GetCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
1002
1025
|
GetFlattenedComplexEntries(): IEnumerable__System_Collections_Generic<InternalComplexEntry>;
|
|
1026
|
+
GetOrCreateShadowCollection(navigation: INavigationBase): unknown;
|
|
1003
1027
|
GetOrdinals(): IReadOnlyList<System_Internal.Int32>;
|
|
1004
1028
|
GetOriginalValue<TProperty>(property: IProperty): TProperty;
|
|
1005
1029
|
GetOriginalValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
1006
1030
|
GetPreStoreGeneratedCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
1031
|
+
GetValueType(property: IProperty): unknown;
|
|
1007
1032
|
HandleConceptualNulls(sensitiveLoggingEnabled: boolean, force: boolean, isCascadeDelete: boolean): void;
|
|
1008
1033
|
HandleNullForeignKey(property: IProperty, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
1009
1034
|
HasExplicitValue(property: IProperty): boolean;
|
|
@@ -1020,6 +1045,10 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1020
1045
|
MoveComplexCollectionEntry(property: IComplexProperty, fromOrdinal: int, toOrdinal: int, original?: boolean): void;
|
|
1021
1046
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
1022
1047
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
1048
|
+
OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
1049
|
+
OnStateChanged(oldState: EntityState): void;
|
|
1050
|
+
OnStateChanging(newState: EntityState): void;
|
|
1051
|
+
PrepareForAdd(newState: EntityState): boolean;
|
|
1023
1052
|
PrepareToSave(): IInternalEntry;
|
|
1024
1053
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
1025
1054
|
ReadPropertyValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
@@ -1027,21 +1056,20 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1027
1056
|
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
1028
1057
|
ReadTemporaryValue<T>(storeGeneratedIndex: int): T;
|
|
1029
1058
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
1059
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
1030
1060
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
1031
1061
|
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
1032
1062
|
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
1033
1063
|
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
1034
1064
|
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
1065
|
+
SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
1035
1066
|
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
1036
1067
|
SetTemporaryValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
1037
1068
|
ValidateOrdinal(entry: InternalComplexEntry, original: boolean): int;
|
|
1038
1069
|
}
|
|
1039
1070
|
|
|
1040
1071
|
|
|
1041
|
-
export const InternalEntryBase: {
|
|
1042
|
-
new(structuralType: IRuntimeTypeBase): InternalEntryBase;
|
|
1043
|
-
new(structuralType: IRuntimeTypeBase, shadowValues: ISnapshot): InternalEntryBase;
|
|
1044
|
-
new(structuralType: IRuntimeTypeBase, shadowValues: IDictionary<System_Internal.String, unknown>): InternalEntryBase;
|
|
1072
|
+
export const InternalEntryBase: (abstract new(structuralType: IRuntimeTypeBase) => InternalEntryBase) & (abstract new(structuralType: IRuntimeTypeBase, shadowValues: ISnapshot) => InternalEntryBase) & (abstract new(structuralType: IRuntimeTypeBase, shadowValues: IDictionary<System_Internal.String, unknown>) => InternalEntryBase) & {
|
|
1045
1073
|
readonly FlaggedAsTemporaryMethod: MethodInfo;
|
|
1046
1074
|
readonly FlaggedAsStoreGeneratedMethod: MethodInfo;
|
|
1047
1075
|
};
|
|
@@ -1074,6 +1102,8 @@ export const InternalEntrySubscriber: {
|
|
|
1074
1102
|
export type InternalEntrySubscriber = InternalEntrySubscriber$instance;
|
|
1075
1103
|
|
|
1076
1104
|
export interface KeyPropagator$instance {
|
|
1105
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IKeyPropagator: never;
|
|
1106
|
+
|
|
1077
1107
|
PropagateValue(entry: InternalEntityEntry, property: IProperty): InternalEntityEntry | undefined;
|
|
1078
1108
|
PropagateValueAsync(entry: InternalEntityEntry, property: IProperty, cancellationToken?: CancellationToken): Task<InternalEntityEntry | undefined>;
|
|
1079
1109
|
}
|
|
@@ -1109,6 +1139,8 @@ export const KeyValueFactoryFactory: {
|
|
|
1109
1139
|
export type KeyValueFactoryFactory = KeyValueFactoryFactory$instance;
|
|
1110
1140
|
|
|
1111
1141
|
export interface LocalViewListener$instance {
|
|
1142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ILocalViewListener: never;
|
|
1143
|
+
|
|
1112
1144
|
RegisterView(viewAction: Action<InternalEntityEntry, EntityState>): void;
|
|
1113
1145
|
StateChanged(entry: InternalEntityEntry, oldState: EntityState, fromQuery: boolean): void;
|
|
1114
1146
|
StateChanging(entry: InternalEntityEntry, newState: EntityState): void;
|
|
@@ -1130,6 +1162,8 @@ export type LocalViewListener = LocalViewListener$instance & __LocalViewListener
|
|
|
1130
1162
|
|
|
1131
1163
|
|
|
1132
1164
|
export interface NavigationFixer$instance {
|
|
1165
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_INavigationFixer: never;
|
|
1166
|
+
|
|
1133
1167
|
AbortDelayedFixup(): void;
|
|
1134
1168
|
BeginDelayedFixup(): boolean;
|
|
1135
1169
|
CompleteDelayedFixup(): void;
|
|
@@ -1158,6 +1192,8 @@ export type NavigationFixer = NavigationFixer$instance & __NavigationFixer$views
|
|
|
1158
1192
|
|
|
1159
1193
|
|
|
1160
1194
|
export interface NullableClassCurrentProviderValueComparer_2$instance<TModel, TProvider> {
|
|
1195
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1196
|
+
|
|
1161
1197
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
1162
1198
|
}
|
|
1163
1199
|
|
|
@@ -1169,14 +1205,13 @@ export const NullableClassCurrentProviderValueComparer_2: {
|
|
|
1169
1205
|
|
|
1170
1206
|
export type NullableClassCurrentProviderValueComparer_2<TModel, TProvider> = NullableClassCurrentProviderValueComparer_2$instance<TModel, TProvider>;
|
|
1171
1207
|
|
|
1172
|
-
export
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
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;
|
|
1176
1211
|
|
|
1177
|
-
export interface NullableKeyIdentityMap_1$instance<TKey> extends NullableKeyIdentityMap_1$protected<TKey>, IdentityMap_1$instance<TKey> {
|
|
1178
1212
|
Add(entry: InternalEntityEntry): void;
|
|
1179
1213
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
1214
|
+
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
1180
1215
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
1181
1216
|
All(): IEnumerable__System_Collections_Generic<InternalEntityEntry>;
|
|
1182
1217
|
Clear(): void;
|
|
@@ -1204,6 +1239,8 @@ export type NullableKeyIdentityMap_1<TKey> = NullableKeyIdentityMap_1$instance<T
|
|
|
1204
1239
|
|
|
1205
1240
|
|
|
1206
1241
|
export interface NullableStructCurrentProviderValueComparer_2$instance<TModel extends unknown, TProvider> {
|
|
1242
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
1243
|
+
|
|
1207
1244
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
1208
1245
|
}
|
|
1209
1246
|
|
|
@@ -1216,6 +1253,10 @@ export const NullableStructCurrentProviderValueComparer_2: {
|
|
|
1216
1253
|
export type NullableStructCurrentProviderValueComparer_2<TModel, TProvider> = NullableStructCurrentProviderValueComparer_2$instance<TModel, TProvider>;
|
|
1217
1254
|
|
|
1218
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
|
+
|
|
1219
1260
|
}
|
|
1220
1261
|
|
|
1221
1262
|
|
|
@@ -1228,23 +1269,31 @@ export interface __NullableValueComparer_1$views<T extends unknown> {
|
|
|
1228
1269
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
1229
1270
|
}
|
|
1230
1271
|
|
|
1231
|
-
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>> {}
|
|
1232
1273
|
|
|
1233
1274
|
export type NullableValueComparer_1<T> = NullableValueComparer_1$instance<T> & __NullableValueComparer_1$views<T>;
|
|
1234
1275
|
|
|
1235
1276
|
|
|
1236
|
-
export
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
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
|
+
|
|
1290
|
+
AddNewCore(): unknown | undefined;
|
|
1246
1291
|
CancelNew(itemIndex: int): void;
|
|
1292
|
+
ClearItems(): void;
|
|
1247
1293
|
EndNew(itemIndex: int): void;
|
|
1294
|
+
InsertItem(index: int, item: T): void;
|
|
1295
|
+
RemoveItem(index: int): void;
|
|
1296
|
+
SetItem(index: int, item: T): void;
|
|
1248
1297
|
}
|
|
1249
1298
|
|
|
1250
1299
|
|
|
@@ -1255,16 +1304,12 @@ export const ObservableBackedBindingList_1: {
|
|
|
1255
1304
|
|
|
1256
1305
|
export type ObservableBackedBindingList_1<T> = ObservableBackedBindingList_1$instance<T>;
|
|
1257
1306
|
|
|
1258
|
-
export
|
|
1259
|
-
|
|
1260
|
-
protected GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
1261
|
-
protected SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
export interface OriginalPropertyValues$instance extends OriginalPropertyValues$protected, EntryPropertyValues {
|
|
1307
|
+
export interface OriginalPropertyValues$instance extends EntryPropertyValues {
|
|
1308
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
1266
1309
|
GetValue<TValue>(propertyName: string): TValue;
|
|
1267
1310
|
GetValue<TValue>(property: IProperty): TValue;
|
|
1311
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
1312
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
1268
1313
|
}
|
|
1269
1314
|
|
|
1270
1315
|
|
|
@@ -1275,83 +1320,63 @@ export const OriginalPropertyValues: {
|
|
|
1275
1320
|
|
|
1276
1321
|
export type OriginalPropertyValues = OriginalPropertyValues$instance;
|
|
1277
1322
|
|
|
1278
|
-
export
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
export interface OriginalValuesFactoryFactory$instance extends OriginalValuesFactoryFactory$protected, SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1323
|
+
export interface OriginalValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1324
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1325
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1326
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1327
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1287
1328
|
}
|
|
1288
1329
|
|
|
1289
1330
|
|
|
1290
1331
|
export const OriginalValuesFactoryFactory: {
|
|
1291
|
-
new(): OriginalValuesFactoryFactory;
|
|
1292
1332
|
readonly Instance: OriginalValuesFactoryFactory;
|
|
1293
1333
|
};
|
|
1294
1334
|
|
|
1295
1335
|
|
|
1296
1336
|
export type OriginalValuesFactoryFactory = OriginalValuesFactoryFactory$instance;
|
|
1297
1337
|
|
|
1298
|
-
export
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
export interface RelationshipSnapshotFactoryFactory$instance extends RelationshipSnapshotFactoryFactory$protected, SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1338
|
+
export interface RelationshipSnapshotFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1339
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1340
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1341
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1342
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1307
1343
|
}
|
|
1308
1344
|
|
|
1309
1345
|
|
|
1310
1346
|
export const RelationshipSnapshotFactoryFactory: {
|
|
1311
|
-
new(): RelationshipSnapshotFactoryFactory;
|
|
1312
1347
|
readonly Instance: RelationshipSnapshotFactoryFactory;
|
|
1313
1348
|
};
|
|
1314
1349
|
|
|
1315
1350
|
|
|
1316
1351
|
export type RelationshipSnapshotFactoryFactory = RelationshipSnapshotFactoryFactory$instance;
|
|
1317
1352
|
|
|
1318
|
-
export
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
export interface ShadowValuesFactoryFactory$instance extends ShadowValuesFactoryFactory$protected, SnapshotFactoryFactory_1<IDictionary<System_Internal.String, unknown>> {
|
|
1353
|
+
export interface ShadowValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IDictionary<System_Internal.String, unknown>> {
|
|
1354
|
+
readonly UseEntityVariable: boolean;
|
|
1355
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
1356
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
1357
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1358
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1359
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1360
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1330
1361
|
}
|
|
1331
1362
|
|
|
1332
1363
|
|
|
1333
1364
|
export const ShadowValuesFactoryFactory: {
|
|
1334
|
-
new(): ShadowValuesFactoryFactory;
|
|
1335
1365
|
readonly Instance: ShadowValuesFactoryFactory;
|
|
1336
1366
|
};
|
|
1337
1367
|
|
|
1338
1368
|
|
|
1339
1369
|
export type ShadowValuesFactoryFactory = ShadowValuesFactoryFactory$instance;
|
|
1340
1370
|
|
|
1341
|
-
export
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
export interface SidecarValuesFactoryFactory$instance extends SidecarValuesFactoryFactory$protected, SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1371
|
+
export interface SidecarValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1372
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1373
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1374
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1375
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1350
1376
|
}
|
|
1351
1377
|
|
|
1352
1378
|
|
|
1353
|
-
export const SidecarValuesFactoryFactory: {
|
|
1354
|
-
new(): SidecarValuesFactoryFactory;
|
|
1379
|
+
export const SidecarValuesFactoryFactory: (abstract new() => SidecarValuesFactoryFactory) & {
|
|
1355
1380
|
readonly Instance: SidecarValuesFactoryFactory;
|
|
1356
1381
|
};
|
|
1357
1382
|
|
|
@@ -1359,6 +1384,9 @@ export const SidecarValuesFactoryFactory: {
|
|
|
1359
1384
|
export type SidecarValuesFactoryFactory = SidecarValuesFactoryFactory$instance;
|
|
1360
1385
|
|
|
1361
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
|
+
|
|
1362
1390
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1363
1391
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1364
1392
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1382,6 +1410,9 @@ export type SimpleFullyNullableDependentKeyValueFactory_1<TKey> = SimpleFullyNul
|
|
|
1382
1410
|
|
|
1383
1411
|
|
|
1384
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
|
+
|
|
1385
1416
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1386
1417
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1387
1418
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1405,6 +1436,9 @@ export type SimpleNonNullableDependentKeyValueFactory_1<TKey> = SimpleNonNullabl
|
|
|
1405
1436
|
|
|
1406
1437
|
|
|
1407
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
|
+
|
|
1408
1442
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1409
1443
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1410
1444
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1428,6 +1462,9 @@ export type SimpleNullableDependentKeyValueFactory_1<TKey> = SimpleNullableDepen
|
|
|
1428
1462
|
|
|
1429
1463
|
|
|
1430
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
|
+
|
|
1431
1468
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1432
1469
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1433
1470
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
@@ -1451,6 +1488,9 @@ export type SimpleNullablePrincipalDependentKeyValueFactory_2<TKey, TNonNullable
|
|
|
1451
1488
|
|
|
1452
1489
|
|
|
1453
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
|
+
|
|
1454
1494
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<TKey>;
|
|
1455
1495
|
CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
1456
1496
|
CreateFromCurrentValues(entry: IUpdateEntry): TKey;
|
|
@@ -1476,13 +1516,14 @@ export type SimplePrincipalKeyValueFactory_1<TKey> = SimplePrincipalKeyValueFact
|
|
|
1476
1516
|
|
|
1477
1517
|
|
|
1478
1518
|
export interface Snapshot$instance {
|
|
1479
|
-
|
|
1519
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1520
|
+
|
|
1521
|
+
[index: number]: unknown | undefined;
|
|
1480
1522
|
GetValue<T>(index: int): T;
|
|
1481
1523
|
}
|
|
1482
1524
|
|
|
1483
1525
|
|
|
1484
1526
|
export const Snapshot: {
|
|
1485
|
-
new(): Snapshot;
|
|
1486
1527
|
Empty: ISnapshot;
|
|
1487
1528
|
readonly EmptyField: FieldInfo;
|
|
1488
1529
|
readonly GetValueMethod: MethodInfo;
|
|
@@ -1501,7 +1542,9 @@ export type Snapshot = Snapshot$instance & __Snapshot$views;
|
|
|
1501
1542
|
|
|
1502
1543
|
|
|
1503
1544
|
export interface Snapshot_1$instance<T0> {
|
|
1504
|
-
|
|
1545
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1546
|
+
|
|
1547
|
+
[index: number]: unknown | undefined;
|
|
1505
1548
|
GetValue<T>(index: int): T;
|
|
1506
1549
|
}
|
|
1507
1550
|
|
|
@@ -1521,7 +1564,9 @@ export type Snapshot_1<T0> = Snapshot_1$instance<T0> & __Snapshot_1$views<T0>;
|
|
|
1521
1564
|
|
|
1522
1565
|
|
|
1523
1566
|
export interface Snapshot_10$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> {
|
|
1524
|
-
|
|
1567
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1568
|
+
|
|
1569
|
+
[index: number]: unknown | undefined;
|
|
1525
1570
|
GetValue<T>(index: int): T;
|
|
1526
1571
|
}
|
|
1527
1572
|
|
|
@@ -1541,7 +1586,9 @@ export type Snapshot_10<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> = Snapshot_10$in
|
|
|
1541
1586
|
|
|
1542
1587
|
|
|
1543
1588
|
export interface Snapshot_11$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> {
|
|
1544
|
-
|
|
1589
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1590
|
+
|
|
1591
|
+
[index: number]: unknown | undefined;
|
|
1545
1592
|
GetValue<T>(index: int): T;
|
|
1546
1593
|
}
|
|
1547
1594
|
|
|
@@ -1561,7 +1608,9 @@ export type Snapshot_11<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> = Snapshot_
|
|
|
1561
1608
|
|
|
1562
1609
|
|
|
1563
1610
|
export interface Snapshot_12$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> {
|
|
1564
|
-
|
|
1611
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1612
|
+
|
|
1613
|
+
[index: number]: unknown | undefined;
|
|
1565
1614
|
GetValue<T>(index: int): T;
|
|
1566
1615
|
}
|
|
1567
1616
|
|
|
@@ -1581,7 +1630,9 @@ export type Snapshot_12<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> = Snap
|
|
|
1581
1630
|
|
|
1582
1631
|
|
|
1583
1632
|
export interface Snapshot_13$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> {
|
|
1584
|
-
|
|
1633
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1634
|
+
|
|
1635
|
+
[index: number]: unknown | undefined;
|
|
1585
1636
|
GetValue<T>(index: int): T;
|
|
1586
1637
|
}
|
|
1587
1638
|
|
|
@@ -1601,7 +1652,9 @@ export type Snapshot_13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> =
|
|
|
1601
1652
|
|
|
1602
1653
|
|
|
1603
1654
|
export interface Snapshot_14$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> {
|
|
1604
|
-
|
|
1655
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1656
|
+
|
|
1657
|
+
[index: number]: unknown | undefined;
|
|
1605
1658
|
GetValue<T>(index: int): T;
|
|
1606
1659
|
}
|
|
1607
1660
|
|
|
@@ -1621,7 +1674,9 @@ export type Snapshot_14<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1621
1674
|
|
|
1622
1675
|
|
|
1623
1676
|
export interface Snapshot_15$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> {
|
|
1624
|
-
|
|
1677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1678
|
+
|
|
1679
|
+
[index: number]: unknown | undefined;
|
|
1625
1680
|
GetValue<T>(index: int): T;
|
|
1626
1681
|
}
|
|
1627
1682
|
|
|
@@ -1641,7 +1696,9 @@ export type Snapshot_15<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1641
1696
|
|
|
1642
1697
|
|
|
1643
1698
|
export interface Snapshot_16$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> {
|
|
1644
|
-
|
|
1699
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1700
|
+
|
|
1701
|
+
[index: number]: unknown | undefined;
|
|
1645
1702
|
GetValue<T>(index: int): T;
|
|
1646
1703
|
}
|
|
1647
1704
|
|
|
@@ -1661,7 +1718,9 @@ export type Snapshot_16<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1661
1718
|
|
|
1662
1719
|
|
|
1663
1720
|
export interface Snapshot_17$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> {
|
|
1664
|
-
|
|
1721
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1722
|
+
|
|
1723
|
+
[index: number]: unknown | undefined;
|
|
1665
1724
|
GetValue<T>(index: int): T;
|
|
1666
1725
|
}
|
|
1667
1726
|
|
|
@@ -1681,7 +1740,9 @@ export type Snapshot_17<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1681
1740
|
|
|
1682
1741
|
|
|
1683
1742
|
export interface Snapshot_18$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> {
|
|
1684
|
-
|
|
1743
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1744
|
+
|
|
1745
|
+
[index: number]: unknown | undefined;
|
|
1685
1746
|
GetValue<T>(index: int): T;
|
|
1686
1747
|
}
|
|
1687
1748
|
|
|
@@ -1701,7 +1762,9 @@ export type Snapshot_18<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1701
1762
|
|
|
1702
1763
|
|
|
1703
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> {
|
|
1704
|
-
|
|
1765
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1766
|
+
|
|
1767
|
+
[index: number]: unknown | undefined;
|
|
1705
1768
|
GetValue<T>(index: int): T;
|
|
1706
1769
|
}
|
|
1707
1770
|
|
|
@@ -1721,7 +1784,9 @@ export type Snapshot_19<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1721
1784
|
|
|
1722
1785
|
|
|
1723
1786
|
export interface Snapshot_2$instance<T0, T1> {
|
|
1724
|
-
|
|
1787
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1788
|
+
|
|
1789
|
+
[index: number]: unknown | undefined;
|
|
1725
1790
|
GetValue<T>(index: int): T;
|
|
1726
1791
|
}
|
|
1727
1792
|
|
|
@@ -1741,7 +1806,9 @@ export type Snapshot_2<T0, T1> = Snapshot_2$instance<T0, T1> & __Snapshot_2$view
|
|
|
1741
1806
|
|
|
1742
1807
|
|
|
1743
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> {
|
|
1744
|
-
|
|
1809
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1810
|
+
|
|
1811
|
+
[index: number]: unknown | undefined;
|
|
1745
1812
|
GetValue<T>(index: int): T;
|
|
1746
1813
|
}
|
|
1747
1814
|
|
|
@@ -1761,7 +1828,9 @@ export type Snapshot_20<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1761
1828
|
|
|
1762
1829
|
|
|
1763
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> {
|
|
1764
|
-
|
|
1831
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1832
|
+
|
|
1833
|
+
[index: number]: unknown | undefined;
|
|
1765
1834
|
GetValue<T>(index: int): T;
|
|
1766
1835
|
}
|
|
1767
1836
|
|
|
@@ -1781,7 +1850,9 @@ export type Snapshot_21<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1781
1850
|
|
|
1782
1851
|
|
|
1783
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> {
|
|
1784
|
-
|
|
1853
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1854
|
+
|
|
1855
|
+
[index: number]: unknown | undefined;
|
|
1785
1856
|
GetValue<T>(index: int): T;
|
|
1786
1857
|
}
|
|
1787
1858
|
|
|
@@ -1801,7 +1872,9 @@ export type Snapshot_22<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1801
1872
|
|
|
1802
1873
|
|
|
1803
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> {
|
|
1804
|
-
|
|
1875
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1876
|
+
|
|
1877
|
+
[index: number]: unknown | undefined;
|
|
1805
1878
|
GetValue<T>(index: int): T;
|
|
1806
1879
|
}
|
|
1807
1880
|
|
|
@@ -1821,7 +1894,9 @@ export type Snapshot_23<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1821
1894
|
|
|
1822
1895
|
|
|
1823
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> {
|
|
1824
|
-
|
|
1897
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1898
|
+
|
|
1899
|
+
[index: number]: unknown | undefined;
|
|
1825
1900
|
GetValue<T>(index: int): T;
|
|
1826
1901
|
}
|
|
1827
1902
|
|
|
@@ -1841,7 +1916,9 @@ export type Snapshot_24<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1841
1916
|
|
|
1842
1917
|
|
|
1843
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> {
|
|
1844
|
-
|
|
1919
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1920
|
+
|
|
1921
|
+
[index: number]: unknown | undefined;
|
|
1845
1922
|
GetValue<T>(index: int): T;
|
|
1846
1923
|
}
|
|
1847
1924
|
|
|
@@ -1861,7 +1938,9 @@ export type Snapshot_25<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1861
1938
|
|
|
1862
1939
|
|
|
1863
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> {
|
|
1864
|
-
|
|
1941
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1942
|
+
|
|
1943
|
+
[index: number]: unknown | undefined;
|
|
1865
1944
|
GetValue<T>(index: int): T;
|
|
1866
1945
|
}
|
|
1867
1946
|
|
|
@@ -1881,7 +1960,9 @@ export type Snapshot_26<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1881
1960
|
|
|
1882
1961
|
|
|
1883
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> {
|
|
1884
|
-
|
|
1963
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1964
|
+
|
|
1965
|
+
[index: number]: unknown | undefined;
|
|
1885
1966
|
GetValue<T>(index: int): T;
|
|
1886
1967
|
}
|
|
1887
1968
|
|
|
@@ -1901,7 +1982,9 @@ export type Snapshot_27<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1901
1982
|
|
|
1902
1983
|
|
|
1903
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> {
|
|
1904
|
-
|
|
1985
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
1986
|
+
|
|
1987
|
+
[index: number]: unknown | undefined;
|
|
1905
1988
|
GetValue<T>(index: int): T;
|
|
1906
1989
|
}
|
|
1907
1990
|
|
|
@@ -1921,7 +2004,9 @@ export type Snapshot_28<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1921
2004
|
|
|
1922
2005
|
|
|
1923
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> {
|
|
1924
|
-
|
|
2007
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2008
|
+
|
|
2009
|
+
[index: number]: unknown | undefined;
|
|
1925
2010
|
GetValue<T>(index: int): T;
|
|
1926
2011
|
}
|
|
1927
2012
|
|
|
@@ -1941,7 +2026,9 @@ export type Snapshot_29<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1941
2026
|
|
|
1942
2027
|
|
|
1943
2028
|
export interface Snapshot_3$instance<T0, T1, T2> {
|
|
1944
|
-
|
|
2029
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2030
|
+
|
|
2031
|
+
[index: number]: unknown | undefined;
|
|
1945
2032
|
GetValue<T>(index: int): T;
|
|
1946
2033
|
}
|
|
1947
2034
|
|
|
@@ -1961,7 +2048,9 @@ export type Snapshot_3<T0, T1, T2> = Snapshot_3$instance<T0, T1, T2> & __Snapsho
|
|
|
1961
2048
|
|
|
1962
2049
|
|
|
1963
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> {
|
|
1964
|
-
|
|
2051
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2052
|
+
|
|
2053
|
+
[index: number]: unknown | undefined;
|
|
1965
2054
|
GetValue<T>(index: int): T;
|
|
1966
2055
|
}
|
|
1967
2056
|
|
|
@@ -1981,7 +2070,9 @@ export type Snapshot_30<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1981
2070
|
|
|
1982
2071
|
|
|
1983
2072
|
export interface Snapshot_4$instance<T0, T1, T2, T3> {
|
|
1984
|
-
|
|
2073
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2074
|
+
|
|
2075
|
+
[index: number]: unknown | undefined;
|
|
1985
2076
|
GetValue<T>(index: int): T;
|
|
1986
2077
|
}
|
|
1987
2078
|
|
|
@@ -2001,7 +2092,9 @@ export type Snapshot_4<T0, T1, T2, T3> = Snapshot_4$instance<T0, T1, T2, T3> & _
|
|
|
2001
2092
|
|
|
2002
2093
|
|
|
2003
2094
|
export interface Snapshot_5$instance<T0, T1, T2, T3, T4> {
|
|
2004
|
-
|
|
2095
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2096
|
+
|
|
2097
|
+
[index: number]: unknown | undefined;
|
|
2005
2098
|
GetValue<T>(index: int): T;
|
|
2006
2099
|
}
|
|
2007
2100
|
|
|
@@ -2021,7 +2114,9 @@ export type Snapshot_5<T0, T1, T2, T3, T4> = Snapshot_5$instance<T0, T1, T2, T3,
|
|
|
2021
2114
|
|
|
2022
2115
|
|
|
2023
2116
|
export interface Snapshot_6$instance<T0, T1, T2, T3, T4, T5> {
|
|
2024
|
-
|
|
2117
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2118
|
+
|
|
2119
|
+
[index: number]: unknown | undefined;
|
|
2025
2120
|
GetValue<T>(index: int): T;
|
|
2026
2121
|
}
|
|
2027
2122
|
|
|
@@ -2041,7 +2136,9 @@ export type Snapshot_6<T0, T1, T2, T3, T4, T5> = Snapshot_6$instance<T0, T1, T2,
|
|
|
2041
2136
|
|
|
2042
2137
|
|
|
2043
2138
|
export interface Snapshot_7$instance<T0, T1, T2, T3, T4, T5, T6> {
|
|
2044
|
-
|
|
2139
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2140
|
+
|
|
2141
|
+
[index: number]: unknown | undefined;
|
|
2045
2142
|
GetValue<T>(index: int): T;
|
|
2046
2143
|
}
|
|
2047
2144
|
|
|
@@ -2061,7 +2158,9 @@ export type Snapshot_7<T0, T1, T2, T3, T4, T5, T6> = Snapshot_7$instance<T0, T1,
|
|
|
2061
2158
|
|
|
2062
2159
|
|
|
2063
2160
|
export interface Snapshot_8$instance<T0, T1, T2, T3, T4, T5, T6, T7> {
|
|
2064
|
-
|
|
2161
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2162
|
+
|
|
2163
|
+
[index: number]: unknown | undefined;
|
|
2065
2164
|
GetValue<T>(index: int): T;
|
|
2066
2165
|
}
|
|
2067
2166
|
|
|
@@ -2081,7 +2180,9 @@ export type Snapshot_8<T0, T1, T2, T3, T4, T5, T6, T7> = Snapshot_8$instance<T0,
|
|
|
2081
2180
|
|
|
2082
2181
|
|
|
2083
2182
|
export interface Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> {
|
|
2084
|
-
|
|
2183
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ISnapshot: never;
|
|
2184
|
+
|
|
2185
|
+
[index: number]: unknown | undefined;
|
|
2085
2186
|
GetValue<T>(index: int): T;
|
|
2086
2187
|
}
|
|
2087
2188
|
|
|
@@ -2100,27 +2201,22 @@ export interface Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> extends
|
|
|
2100
2201
|
export type Snapshot_9<T0, T1, T2, T3, T4, T5, T6, T7, T8> = Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> & __Snapshot_9$views<T0, T1, T2, T3, T4, T5, T6, T7, T8>;
|
|
2101
2202
|
|
|
2102
2203
|
|
|
2103
|
-
export
|
|
2104
|
-
|
|
2105
|
-
protected CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2106
|
-
protected CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2107
|
-
protected CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2108
|
-
protected abstract GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
2109
|
-
protected abstract GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
2110
|
-
protected abstract GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
2111
|
-
protected abstract GetValueComparerMethod(): MethodInfo | undefined;
|
|
2112
|
-
}
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
export interface SnapshotFactoryFactory$instance extends SnapshotFactoryFactory$protected {
|
|
2204
|
+
export interface SnapshotFactoryFactory$instance {
|
|
2205
|
+
readonly UseEntityVariable: boolean;
|
|
2116
2206
|
CreateConstructorExpression(structuralType: IRuntimeTypeBase, parameter: Expression): Expression;
|
|
2117
2207
|
CreateEmpty(structuralType: IRuntimeTypeBase): Func<ISnapshot>;
|
|
2118
2208
|
CreateEmptyExpression(structuralType: IRuntimeTypeBase): Expression<Func<ISnapshot>>;
|
|
2209
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2210
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2211
|
+
CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2212
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
2213
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
2214
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
2215
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
2119
2216
|
}
|
|
2120
2217
|
|
|
2121
2218
|
|
|
2122
|
-
export const SnapshotFactoryFactory: {
|
|
2123
|
-
new(): SnapshotFactoryFactory;
|
|
2219
|
+
export const SnapshotFactoryFactory: (abstract new() => SnapshotFactoryFactory) & {
|
|
2124
2220
|
SnapshotCollection(collection: IEnumerable): HashSet<unknown> | undefined;
|
|
2125
2221
|
SnapshotComplexCollection(list: IList, complexProperty: IRuntimeComplexProperty): IList | undefined;
|
|
2126
2222
|
};
|
|
@@ -2134,24 +2230,31 @@ export interface SnapshotFactoryFactory_1$instance<TInput> extends SnapshotFacto
|
|
|
2134
2230
|
}
|
|
2135
2231
|
|
|
2136
2232
|
|
|
2137
|
-
export const SnapshotFactoryFactory_1: {
|
|
2138
|
-
new<TInput>(): SnapshotFactoryFactory_1<TInput>;
|
|
2233
|
+
export const SnapshotFactoryFactory_1: (abstract new<TInput>() => SnapshotFactoryFactory_1<TInput>) & {
|
|
2139
2234
|
};
|
|
2140
2235
|
|
|
2141
2236
|
|
|
2142
2237
|
export type SnapshotFactoryFactory_1<TInput> = SnapshotFactoryFactory_1$instance<TInput>;
|
|
2143
2238
|
|
|
2144
|
-
export
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
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;
|
|
2153
2251
|
|
|
2154
|
-
|
|
2252
|
+
readonly IsSortedCore: boolean;
|
|
2253
|
+
readonly SortDirectionCore: ListSortDirection;
|
|
2254
|
+
readonly SortPropertyCore: PropertyDescriptor | undefined;
|
|
2255
|
+
readonly SupportsSortingCore: boolean;
|
|
2256
|
+
ApplySortCore(prop: PropertyDescriptor, direction: ListSortDirection): void;
|
|
2257
|
+
RemoveSortCore(): void;
|
|
2155
2258
|
}
|
|
2156
2259
|
|
|
2157
2260
|
|
|
@@ -2162,13 +2265,10 @@ export const SortableBindingList_1: {
|
|
|
2162
2265
|
|
|
2163
2266
|
export type SortableBindingList_1<T> = SortableBindingList_1$instance<T>;
|
|
2164
2267
|
|
|
2165
|
-
export
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2268
|
+
export interface StateManager$instance {
|
|
2269
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager: never;
|
|
2270
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
2170
2271
|
|
|
2171
|
-
export interface StateManager$instance extends StateManager$protected {
|
|
2172
2272
|
CascadeDeleteTiming: CascadeTiming;
|
|
2173
2273
|
ChangedCount: int;
|
|
2174
2274
|
readonly ChangeDetector: IChangeDetector;
|
|
@@ -2219,7 +2319,9 @@ export interface StateManager$instance extends StateManager$protected {
|
|
|
2219
2319
|
ResetState(): void;
|
|
2220
2320
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
2221
2321
|
ResolveToExistingEntry(newEntry: InternalEntityEntry, navigation: INavigationBase, referencedFromEntry: InternalEntityEntry): boolean;
|
|
2322
|
+
SaveChanges(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>): int;
|
|
2222
2323
|
SaveChanges(acceptAllChangesOnSuccess: boolean): int;
|
|
2324
|
+
SaveChangesAsync(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
2223
2325
|
SaveChangesAsync(acceptAllChangesOnSuccess: boolean, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
2224
2326
|
SetEvents(tracking: EventHandler<EntityTrackingEventArgs>, tracked: EventHandler<EntityTrackedEventArgs>, stateChanging: EventHandler<EntityStateChangingEventArgs>, stateChanged: EventHandler<EntityStateChangedEventArgs>): void;
|
|
2225
2327
|
StartTracking(entry: InternalEntityEntry): InternalEntityEntry;
|
|
@@ -2254,6 +2356,8 @@ export type StateManager = StateManager$instance & __StateManager$views;
|
|
|
2254
2356
|
|
|
2255
2357
|
|
|
2256
2358
|
export interface StateManagerDependencies$instance {
|
|
2359
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
2360
|
+
|
|
2257
2361
|
ChangeTrackingLogger: IDiagnosticsLogger_1<DbLoggerCategory_ChangeTracking>;
|
|
2258
2362
|
ConcurrencyDetector: IConcurrencyDetector;
|
|
2259
2363
|
CoreSingletonOptions: ICoreSingletonOptions;
|
|
@@ -2286,30 +2390,24 @@ export const StateManagerDependencies: {
|
|
|
2286
2390
|
|
|
2287
2391
|
export type StateManagerDependencies = StateManagerDependencies$instance;
|
|
2288
2392
|
|
|
2289
|
-
export
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
}
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
export interface StoreGeneratedValuesFactoryFactory$instance extends StoreGeneratedValuesFactoryFactory$protected, SidecarValuesFactoryFactory {
|
|
2393
|
+
export interface StoreGeneratedValuesFactoryFactory$instance extends SidecarValuesFactoryFactory {
|
|
2394
|
+
readonly UseEntityVariable: boolean;
|
|
2395
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2396
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2297
2397
|
}
|
|
2298
2398
|
|
|
2299
2399
|
|
|
2300
2400
|
export const StoreGeneratedValuesFactoryFactory: {
|
|
2301
|
-
new(): StoreGeneratedValuesFactoryFactory;
|
|
2302
2401
|
};
|
|
2303
2402
|
|
|
2304
2403
|
|
|
2305
2404
|
export type StoreGeneratedValuesFactoryFactory = StoreGeneratedValuesFactoryFactory$instance;
|
|
2306
2405
|
|
|
2307
|
-
export
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
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;
|
|
2311
2409
|
|
|
2312
|
-
|
|
2410
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
2313
2411
|
}
|
|
2314
2412
|
|
|
2315
2413
|
|
|
@@ -2321,6 +2419,9 @@ export const StructuralEntryCurrentProviderValueComparer: {
|
|
|
2321
2419
|
export type StructuralEntryCurrentProviderValueComparer = StructuralEntryCurrentProviderValueComparer$instance;
|
|
2322
2420
|
|
|
2323
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
|
+
|
|
2324
2425
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
2325
2426
|
}
|
|
2326
2427
|
|
|
@@ -2332,24 +2433,21 @@ export const StructuralEntryCurrentValueComparer: {
|
|
|
2332
2433
|
|
|
2333
2434
|
export type StructuralEntryCurrentValueComparer = StructuralEntryCurrentValueComparer$instance;
|
|
2334
2435
|
|
|
2335
|
-
export
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
}
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
export interface TemporaryValuesFactoryFactory$instance extends TemporaryValuesFactoryFactory$protected, SidecarValuesFactoryFactory {
|
|
2436
|
+
export interface TemporaryValuesFactoryFactory$instance extends SidecarValuesFactoryFactory {
|
|
2437
|
+
CreateSnapshotExpression(entityType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2438
|
+
CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2342
2439
|
}
|
|
2343
2440
|
|
|
2344
2441
|
|
|
2345
2442
|
export const TemporaryValuesFactoryFactory: {
|
|
2346
|
-
new(): TemporaryValuesFactoryFactory;
|
|
2347
2443
|
};
|
|
2348
2444
|
|
|
2349
2445
|
|
|
2350
2446
|
export type TemporaryValuesFactoryFactory = TemporaryValuesFactoryFactory$instance;
|
|
2351
2447
|
|
|
2352
2448
|
export interface ValueGenerationManager$instance {
|
|
2449
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IValueGenerationManager: never;
|
|
2450
|
+
|
|
2353
2451
|
Generate(entry: InternalEntityEntry, includePrimaryKey?: boolean): boolean;
|
|
2354
2452
|
GenerateAsync(entry: InternalEntityEntry, includePrimaryKey?: boolean, cancellationToken?: CancellationToken): Task<System_Internal.Boolean>;
|
|
2355
2453
|
Propagate(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|