@tsonic/efcore 10.0.2 → 10.0.3
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 +18 -35
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +28 -69
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +153 -261
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +43 -55
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +8 -16
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +24 -46
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +8 -50
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +160 -247
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +5 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -3
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +304 -407
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +130 -268
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +266 -598
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +6 -15
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +436 -763
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +95 -116
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +56 -64
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +229 -347
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +468 -719
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +151 -301
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +144 -335
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +4 -10
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +73 -102
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +244 -452
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +19 -47
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +3 -32
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +3 -9
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +114 -133
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +21 -43
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +21 -49
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/package.json +1 -1
|
@@ -128,7 +128,7 @@ export type IInternalEntityEntryNotifier = IInternalEntityEntryNotifier$instance
|
|
|
128
128
|
|
|
129
129
|
export interface IInternalEntry$instance {
|
|
130
130
|
get Item(): unknown | undefined;
|
|
131
|
-
set Item(value: unknown);
|
|
131
|
+
set Item(value: unknown | undefined);
|
|
132
132
|
readonly EntityState: EntityState;
|
|
133
133
|
readonly Context: DbContext;
|
|
134
134
|
readonly StructuralType: IRuntimeTypeBase;
|
|
@@ -212,7 +212,7 @@ export interface INavigationFixer$instance {
|
|
|
212
212
|
export type INavigationFixer = INavigationFixer$instance;
|
|
213
213
|
|
|
214
214
|
export interface ISnapshot$instance {
|
|
215
|
-
|
|
215
|
+
[index: number]: unknown | undefined;
|
|
216
216
|
readonly IsEmpty: boolean;
|
|
217
217
|
GetValue<T>(index: int): T;
|
|
218
218
|
}
|
|
@@ -293,7 +293,7 @@ export interface IValueGenerationManager$instance {
|
|
|
293
293
|
export type IValueGenerationManager = IValueGenerationManager$instance;
|
|
294
294
|
|
|
295
295
|
export interface MultiSnapshot$instance {
|
|
296
|
-
|
|
296
|
+
[index: number]: unknown | undefined;
|
|
297
297
|
GetValue<T>(index: int): T;
|
|
298
298
|
}
|
|
299
299
|
|
|
@@ -437,18 +437,14 @@ export interface __CompositePrincipalKeyValueFactory$views {
|
|
|
437
437
|
export type CompositePrincipalKeyValueFactory = CompositePrincipalKeyValueFactory$instance & __CompositePrincipalKeyValueFactory$views;
|
|
438
438
|
|
|
439
439
|
|
|
440
|
-
export
|
|
441
|
-
protected readonly Properties: IReadOnlyList<IProperty>;
|
|
442
|
-
protected TryCreateFromEntry(entry: IUpdateEntry, getValue: Func<IUpdateEntry, IProperty, unknown>, key: IReadOnlyList<unknown>): boolean;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
export interface CompositeValueFactory$instance extends CompositeValueFactory$protected {
|
|
440
|
+
export interface CompositeValueFactory$instance {
|
|
447
441
|
readonly EqualityComparer: IEqualityComparer__System_Collections_Generic<IReadOnlyList<unknown | undefined>>;
|
|
442
|
+
readonly Properties: IReadOnlyList<IProperty>;
|
|
448
443
|
CreateDependentEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown | undefined;
|
|
449
444
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues: boolean): unknown;
|
|
450
445
|
TryCreateFromBuffer(valueBuffer: ValueBuffer, key: IReadOnlyList<unknown>): boolean;
|
|
451
446
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
447
|
+
TryCreateFromEntry(entry: IUpdateEntry, getValue: Func<IUpdateEntry, IProperty, unknown>, key: IReadOnlyList<unknown>): boolean;
|
|
452
448
|
TryCreateFromOriginalValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
453
449
|
TryCreateFromPreStoreGeneratedCurrentValues(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
454
450
|
TryCreateFromRelationshipSnapshot(entry: IUpdateEntry, key: IReadOnlyList<unknown>): boolean;
|
|
@@ -487,16 +483,12 @@ export interface ConvertingValueComparer_2$instance<TTo, TFrom> extends Microsof
|
|
|
487
483
|
export type ConvertingValueComparer_2<TTo, TFrom> = ConvertingValueComparer_2$instance<TTo, TFrom> & __ConvertingValueComparer_2$views<TTo, TFrom>;
|
|
488
484
|
|
|
489
485
|
|
|
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 {
|
|
486
|
+
export interface CurrentPropertyValues$instance extends EntryPropertyValues {
|
|
487
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
498
488
|
GetValue<TValue>(propertyName: string): TValue;
|
|
499
489
|
GetValue<TValue>(property: IProperty): TValue;
|
|
490
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
491
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
500
492
|
}
|
|
501
493
|
|
|
502
494
|
|
|
@@ -526,7 +518,6 @@ export interface CurrentValueComparerFactory$instance {
|
|
|
526
518
|
|
|
527
519
|
|
|
528
520
|
export const CurrentValueComparerFactory: {
|
|
529
|
-
new(): CurrentValueComparerFactory;
|
|
530
521
|
readonly Instance: CurrentValueComparerFactory;
|
|
531
522
|
};
|
|
532
523
|
|
|
@@ -542,8 +533,7 @@ export interface DependentKeyValueFactory_1$instance<TKey> {
|
|
|
542
533
|
}
|
|
543
534
|
|
|
544
535
|
|
|
545
|
-
export const DependentKeyValueFactory_1: {
|
|
546
|
-
new<TKey>(foreignKey: IForeignKey, principalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>): DependentKeyValueFactory_1<TKey>;
|
|
536
|
+
export const DependentKeyValueFactory_1: (abstract new<TKey>(foreignKey: IForeignKey, principalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>) => DependentKeyValueFactory_1<TKey>) & {
|
|
547
537
|
};
|
|
548
538
|
|
|
549
539
|
|
|
@@ -585,23 +575,18 @@ export interface __DependentsMap_1$views<TKey> {
|
|
|
585
575
|
export type DependentsMap_1<TKey> = DependentsMap_1$instance<TKey> & __DependentsMap_1$views<TKey>;
|
|
586
576
|
|
|
587
577
|
|
|
588
|
-
export
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
export interface EmptyShadowValuesFactoryFactory$instance extends EmptyShadowValuesFactoryFactory$protected, SnapshotFactoryFactory {
|
|
578
|
+
export interface EmptyShadowValuesFactoryFactory$instance extends SnapshotFactoryFactory {
|
|
579
|
+
readonly UseEntityVariable: boolean;
|
|
580
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
581
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
582
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
583
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
584
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
585
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
600
586
|
}
|
|
601
587
|
|
|
602
588
|
|
|
603
589
|
export const EmptyShadowValuesFactoryFactory: {
|
|
604
|
-
new(): EmptyShadowValuesFactoryFactory;
|
|
605
590
|
readonly Instance: EmptyShadowValuesFactoryFactory;
|
|
606
591
|
};
|
|
607
592
|
|
|
@@ -665,12 +650,8 @@ export const EntityReferenceMap: {
|
|
|
665
650
|
|
|
666
651
|
export type EntityReferenceMap = EntityReferenceMap$instance;
|
|
667
652
|
|
|
668
|
-
export
|
|
669
|
-
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
export interface EntryCurrentProviderValueComparer$instance extends EntryCurrentProviderValueComparer$protected, EntryCurrentValueComparer {
|
|
653
|
+
export interface EntryCurrentProviderValueComparer$instance extends EntryCurrentValueComparer {
|
|
654
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
674
655
|
}
|
|
675
656
|
|
|
676
657
|
|
|
@@ -681,16 +662,12 @@ export const EntryCurrentProviderValueComparer: {
|
|
|
681
662
|
|
|
682
663
|
export type EntryCurrentProviderValueComparer = EntryCurrentProviderValueComparer$instance;
|
|
683
664
|
|
|
684
|
-
export
|
|
685
|
-
protected ComparePropertyValues(x: unknown, y: unknown): int;
|
|
686
|
-
protected GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
export interface EntryCurrentValueComparer$instance extends EntryCurrentValueComparer$protected {
|
|
665
|
+
export interface EntryCurrentValueComparer$instance {
|
|
691
666
|
Compare(x: IUpdateEntry, y: IUpdateEntry): int;
|
|
667
|
+
ComparePropertyValues(x: unknown, y: unknown): int;
|
|
692
668
|
Equals(x: IUpdateEntry, y: IUpdateEntry): boolean;
|
|
693
669
|
GetHashCode(obj: IUpdateEntry): int;
|
|
670
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
694
671
|
}
|
|
695
672
|
|
|
696
673
|
|
|
@@ -702,21 +679,17 @@ export const EntryCurrentValueComparer: {
|
|
|
702
679
|
|
|
703
680
|
export type EntryCurrentValueComparer = EntryCurrentValueComparer$instance;
|
|
704
681
|
|
|
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 {
|
|
682
|
+
export interface EntryPropertyValues$instance extends PropertyValues {
|
|
713
683
|
Clone(): PropertyValues;
|
|
714
684
|
get_Item(propertyName: string): unknown | undefined;
|
|
715
685
|
get_Item(property: IProperty): unknown | undefined;
|
|
716
686
|
get_Item(complexProperty: IComplexProperty): IList | undefined;
|
|
687
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
688
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
717
689
|
set_Item(propertyName: string, value: unknown | undefined): void;
|
|
718
690
|
set_Item(property: IProperty, value: unknown | undefined): void;
|
|
719
691
|
set_Item(complexProperty: IComplexProperty, value: IList | undefined): void;
|
|
692
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
720
693
|
SetValues(obj: unknown): void;
|
|
721
694
|
SetValues(propertyValues: PropertyValues): void;
|
|
722
695
|
SetValues<TProperty>(values: IDictionary<System_Internal.String, TProperty>): void;
|
|
@@ -725,30 +698,25 @@ export interface EntryPropertyValues$instance extends EntryPropertyValues$protec
|
|
|
725
698
|
}
|
|
726
699
|
|
|
727
700
|
|
|
728
|
-
export const EntryPropertyValues: {
|
|
729
|
-
new(internalEntry: InternalEntryBase): EntryPropertyValues;
|
|
701
|
+
export const EntryPropertyValues: (abstract new(internalEntry: InternalEntryBase) => EntryPropertyValues) & {
|
|
730
702
|
};
|
|
731
703
|
|
|
732
704
|
|
|
733
705
|
export type EntryPropertyValues = EntryPropertyValues$instance;
|
|
734
706
|
|
|
735
|
-
export
|
|
736
|
-
protected readonly PrincipalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>;
|
|
737
|
-
protected Add(key: TKey, entry: InternalEntityEntry): void;
|
|
738
|
-
protected Remove(key: TKey, entry: InternalEntityEntry): void;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
export interface IdentityMap_1$instance<TKey> extends IdentityMap_1$protected<TKey> {
|
|
707
|
+
export interface IdentityMap_1$instance<TKey> {
|
|
743
708
|
readonly Key: IKey;
|
|
709
|
+
readonly PrincipalKeyValueFactory: IPrincipalKeyValueFactory_1<TKey>;
|
|
744
710
|
Add(entry: InternalEntityEntry): void;
|
|
745
711
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
712
|
+
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
746
713
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
747
714
|
All(): IEnumerable__System_Collections_Generic<InternalEntityEntry>;
|
|
748
715
|
Clear(): void;
|
|
749
716
|
FindDependentsMap(foreignKey: IForeignKey): IDependentsMap | undefined;
|
|
750
717
|
GetDependentsMap(foreignKey: IForeignKey): IDependentsMap;
|
|
751
718
|
Remove(entry: InternalEntityEntry): void;
|
|
719
|
+
Remove(key: TKey, entry: InternalEntityEntry): void;
|
|
752
720
|
RemoveUsingRelationshipSnapshot(entry: InternalEntityEntry): void;
|
|
753
721
|
TryGetEntry(entry: InternalEntityEntry): InternalEntityEntry | undefined;
|
|
754
722
|
TryGetEntry(keyValues: IReadOnlyList<unknown>): InternalEntityEntry | undefined;
|
|
@@ -786,14 +754,7 @@ export const IdentityMapFactoryFactory: {
|
|
|
786
754
|
|
|
787
755
|
export type IdentityMapFactoryFactory = IdentityMapFactoryFactory$instance;
|
|
788
756
|
|
|
789
|
-
export
|
|
790
|
-
protected OnStateChanged(oldState: EntityState): void;
|
|
791
|
-
protected OnStateChanging(newState: EntityState): void;
|
|
792
|
-
protected SetEntityState2(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
export interface InternalComplexEntry$instance extends InternalComplexEntry$protected, InternalEntryBase$instance {
|
|
757
|
+
export interface InternalComplexEntry$instance extends InternalEntryBase$instance {
|
|
797
758
|
readonly ComplexProperty: IComplexProperty;
|
|
798
759
|
readonly ComplexType: IRuntimeComplexType;
|
|
799
760
|
readonly ContainingEntry: InternalEntryBase;
|
|
@@ -824,10 +785,13 @@ export interface InternalComplexEntry$instance extends InternalComplexEntry$prot
|
|
|
824
785
|
MarkUnknown(property: IProperty): void;
|
|
825
786
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
826
787
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
788
|
+
OnStateChanged(oldState: EntityState): void;
|
|
789
|
+
OnStateChanging(newState: EntityState): void;
|
|
827
790
|
PrepareToSave(): IInternalEntry;
|
|
828
791
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
829
792
|
ReadPropertyValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
830
793
|
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
794
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
831
795
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
832
796
|
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
833
797
|
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
@@ -850,16 +814,7 @@ export interface __InternalComplexEntry$views {
|
|
|
850
814
|
export type InternalComplexEntry = InternalComplexEntry$instance & __InternalComplexEntry$views;
|
|
851
815
|
|
|
852
816
|
|
|
853
|
-
export
|
|
854
|
-
protected OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
855
|
-
protected OnStateChanged(oldState: EntityState): void;
|
|
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
|
-
|
|
861
|
-
|
|
862
|
-
export interface InternalEntityEntry$instance extends InternalEntityEntry$protected, InternalEntryBase$instance {
|
|
817
|
+
export interface InternalEntityEntry$instance extends InternalEntryBase$instance {
|
|
863
818
|
readonly DebugView: DebugView;
|
|
864
819
|
readonly Entity: unknown;
|
|
865
820
|
readonly EntityType: IRuntimeEntityType;
|
|
@@ -867,7 +822,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
867
822
|
readonly IsKeySet: ValueTuple<System_Internal.Boolean, System_Internal.Boolean>;
|
|
868
823
|
readonly IsKeyUnknown: boolean;
|
|
869
824
|
get SharedIdentityEntry(): InternalEntityEntry | undefined;
|
|
870
|
-
set SharedIdentityEntry(value: InternalEntityEntry);
|
|
825
|
+
set SharedIdentityEntry(value: InternalEntityEntry | undefined);
|
|
871
826
|
readonly StateManager: IStateManager;
|
|
872
827
|
AcceptChanges(): void;
|
|
873
828
|
AddRangeToCollectionSnapshot(navigation: INavigationBase, addedEntities: IEnumerable__System_Collections_Generic<unknown>): void;
|
|
@@ -902,6 +857,9 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
902
857
|
MarkUnknown(property: IProperty): void;
|
|
903
858
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
904
859
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
860
|
+
OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
861
|
+
OnStateChanged(oldState: EntityState): void;
|
|
862
|
+
OnStateChanging(newState: EntityState): void;
|
|
905
863
|
PrepareToSave(): IInternalEntry;
|
|
906
864
|
PropagateValue(principalEntry: InternalEntityEntry, principalProperty: IProperty, dependentProperty: IProperty, isMaterialization?: boolean, setModified?: boolean): void;
|
|
907
865
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
@@ -911,6 +869,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
911
869
|
RemoveFromCollectionSnapshot(navigation: INavigationBase, removedEntity: unknown): void;
|
|
912
870
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
913
871
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
872
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
914
873
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
915
874
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
916
875
|
SetIsLoaded(navigation: INavigationBase, loaded?: boolean): void;
|
|
@@ -919,6 +878,7 @@ export interface InternalEntityEntry$instance extends InternalEntityEntry$protec
|
|
|
919
878
|
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
920
879
|
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
921
880
|
SetRelationshipSnapshotValue(propertyBase: IPropertyBase, value: unknown): void;
|
|
881
|
+
SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
922
882
|
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
923
883
|
ToEntityEntry(): EntityEntry;
|
|
924
884
|
ToString(): string;
|
|
@@ -960,20 +920,7 @@ export const InternalEntityEntryNotifier: {
|
|
|
960
920
|
|
|
961
921
|
export type InternalEntityEntryNotifier = InternalEntityEntryNotifier$instance;
|
|
962
922
|
|
|
963
|
-
export
|
|
964
|
-
protected readonly PropertyStateData: InternalEntryBase_StateData;
|
|
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
|
-
|
|
975
|
-
|
|
976
|
-
export interface InternalEntryBase$instance extends InternalEntryBase$protected {
|
|
923
|
+
export interface InternalEntryBase$instance {
|
|
977
924
|
readonly ContainingEntry: InternalEntryBase;
|
|
978
925
|
readonly Context: DbContext;
|
|
979
926
|
readonly EntityEntry: InternalEntityEntry;
|
|
@@ -981,7 +928,8 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
981
928
|
readonly HasConceptualNull: boolean;
|
|
982
929
|
readonly HasOriginalValuesSnapshot: boolean;
|
|
983
930
|
get Item(): unknown | undefined;
|
|
984
|
-
set Item(value: unknown);
|
|
931
|
+
set Item(value: unknown | undefined);
|
|
932
|
+
readonly PropertyStateData: unknown;
|
|
985
933
|
readonly StateManager: IStateManager;
|
|
986
934
|
readonly StructuralType: IRuntimeTypeBase;
|
|
987
935
|
AcceptChanges(): void;
|
|
@@ -1000,10 +948,12 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1000
948
|
GetCurrentValue<TProperty>(propertyBase: IPropertyBase): TProperty;
|
|
1001
949
|
GetCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
1002
950
|
GetFlattenedComplexEntries(): IEnumerable__System_Collections_Generic<InternalComplexEntry>;
|
|
951
|
+
GetOrCreateShadowCollection(navigation: INavigationBase): unknown;
|
|
1003
952
|
GetOrdinals(): IReadOnlyList<System_Internal.Int32>;
|
|
1004
953
|
GetOriginalValue<TProperty>(property: IProperty): TProperty;
|
|
1005
954
|
GetOriginalValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
1006
955
|
GetPreStoreGeneratedCurrentValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
956
|
+
GetValueType(property: IProperty): unknown;
|
|
1007
957
|
HandleConceptualNulls(sensitiveLoggingEnabled: boolean, force: boolean, isCascadeDelete: boolean): void;
|
|
1008
958
|
HandleNullForeignKey(property: IProperty, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
1009
959
|
HasExplicitValue(property: IProperty): boolean;
|
|
@@ -1020,6 +970,10 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1020
970
|
MoveComplexCollectionEntry(property: IComplexProperty, fromOrdinal: int, toOrdinal: int, original?: boolean): void;
|
|
1021
971
|
OnComplexElementStateChange(entry: InternalComplexEntry, oldState: EntityState, newState: EntityState): void;
|
|
1022
972
|
OnComplexPropertyModified(property: IComplexProperty, isModified?: boolean): void;
|
|
973
|
+
OnPropertyChanged(propertyBase: IPropertyBase, value: unknown, setModified: boolean): void;
|
|
974
|
+
OnStateChanged(oldState: EntityState): void;
|
|
975
|
+
OnStateChanging(newState: EntityState): void;
|
|
976
|
+
PrepareForAdd(newState: EntityState): boolean;
|
|
1023
977
|
PrepareToSave(): IInternalEntry;
|
|
1024
978
|
ReadOriginalValue<T>(property: IProperty, originalValueIndex: int): T;
|
|
1025
979
|
ReadPropertyValue(propertyBase: IPropertyBase): unknown | undefined;
|
|
@@ -1027,21 +981,20 @@ export interface InternalEntryBase$instance extends InternalEntryBase$protected
|
|
|
1027
981
|
ReadStoreGeneratedValue<T>(storeGeneratedIndex: int): T;
|
|
1028
982
|
ReadTemporaryValue<T>(storeGeneratedIndex: int): T;
|
|
1029
983
|
SetEntityState(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>): void;
|
|
984
|
+
SetEntityState(oldState: EntityState, newState: EntityState, acceptChanges: boolean, modifyProperties: boolean): void;
|
|
1030
985
|
SetEntityStateAsync(entityState: EntityState, acceptChanges?: boolean, modifyProperties?: boolean, forceStateWhenUnknownKey?: Nullable<EntityState>, fallbackState?: Nullable<EntityState>, cancellationToken?: CancellationToken): Task;
|
|
1031
986
|
SetOriginalValue(propertyBase: IPropertyBase, value: unknown, index?: int): void;
|
|
1032
987
|
SetProperty(propertyBase: IPropertyBase, value: unknown, isMaterialization: boolean, setModified?: boolean, isCascadeDelete?: boolean): void;
|
|
1033
988
|
SetPropertyModified(property: IProperty, changeState?: boolean, isModified?: boolean, isConceptualNull?: boolean, acceptChanges?: boolean): void;
|
|
1034
989
|
SetPropertyModified(property: IComplexProperty, isModified?: boolean, recurse?: boolean): void;
|
|
990
|
+
SetServiceProperties(oldState: EntityState, newState: EntityState): void;
|
|
1035
991
|
SetStoreGeneratedValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
1036
992
|
SetTemporaryValue(property: IProperty, value: unknown, setModified?: boolean): void;
|
|
1037
993
|
ValidateOrdinal(entry: InternalComplexEntry, original: boolean): int;
|
|
1038
994
|
}
|
|
1039
995
|
|
|
1040
996
|
|
|
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;
|
|
997
|
+
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
998
|
readonly FlaggedAsTemporaryMethod: MethodInfo;
|
|
1046
999
|
readonly FlaggedAsStoreGeneratedMethod: MethodInfo;
|
|
1047
1000
|
};
|
|
@@ -1169,14 +1122,10 @@ export const NullableClassCurrentProviderValueComparer_2: {
|
|
|
1169
1122
|
|
|
1170
1123
|
export type NullableClassCurrentProviderValueComparer_2<TModel, TProvider> = NullableClassCurrentProviderValueComparer_2$instance<TModel, TProvider>;
|
|
1171
1124
|
|
|
1172
|
-
export
|
|
1173
|
-
protected Add2(key: TKey, entry: InternalEntityEntry): void;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
export interface NullableKeyIdentityMap_1$instance<TKey> extends NullableKeyIdentityMap_1$protected<TKey>, IdentityMap_1$instance<TKey> {
|
|
1125
|
+
export interface NullableKeyIdentityMap_1$instance<TKey> extends IdentityMap_1$instance<TKey> {
|
|
1178
1126
|
Add(entry: InternalEntityEntry): void;
|
|
1179
1127
|
Add(keyValues: IReadOnlyList<unknown>, entry: InternalEntityEntry): void;
|
|
1128
|
+
Add(key: TKey, entry: InternalEntityEntry): void;
|
|
1180
1129
|
AddOrUpdate(entry: InternalEntityEntry): void;
|
|
1181
1130
|
All(): IEnumerable__System_Collections_Generic<InternalEntityEntry>;
|
|
1182
1131
|
Clear(): void;
|
|
@@ -1233,18 +1182,14 @@ export interface NullableValueComparer_1$instance<T extends unknown> extends Mic
|
|
|
1233
1182
|
export type NullableValueComparer_1<T> = NullableValueComparer_1$instance<T> & __NullableValueComparer_1$views<T>;
|
|
1234
1183
|
|
|
1235
1184
|
|
|
1236
|
-
export
|
|
1237
|
-
|
|
1238
|
-
protected ClearItems(): void;
|
|
1239
|
-
protected InsertItem(index: int, item: T): void;
|
|
1240
|
-
protected RemoveItem(index: int): void;
|
|
1241
|
-
protected SetItem(index: int, item: T): void;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
export interface ObservableBackedBindingList_1$instance<T> extends ObservableBackedBindingList_1$protected<T>, SortableBindingList_1<T> {
|
|
1185
|
+
export interface ObservableBackedBindingList_1$instance<T> extends SortableBindingList_1<T> {
|
|
1186
|
+
AddNewCore(): unknown | undefined;
|
|
1246
1187
|
CancelNew(itemIndex: int): void;
|
|
1188
|
+
ClearItems(): void;
|
|
1247
1189
|
EndNew(itemIndex: int): void;
|
|
1190
|
+
InsertItem(index: int, item: T): void;
|
|
1191
|
+
RemoveItem(index: int): void;
|
|
1192
|
+
SetItem(index: int, item: T): void;
|
|
1248
1193
|
}
|
|
1249
1194
|
|
|
1250
1195
|
|
|
@@ -1255,16 +1200,12 @@ export const ObservableBackedBindingList_1: {
|
|
|
1255
1200
|
|
|
1256
1201
|
export type ObservableBackedBindingList_1<T> = ObservableBackedBindingList_1$instance<T>;
|
|
1257
1202
|
|
|
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 {
|
|
1203
|
+
export interface OriginalPropertyValues$instance extends EntryPropertyValues {
|
|
1204
|
+
GetComplexCollectionEntry(entry: InternalEntryBase, complexProperty: IComplexProperty, i: int): InternalComplexEntry;
|
|
1266
1205
|
GetValue<TValue>(propertyName: string): TValue;
|
|
1267
1206
|
GetValue<TValue>(property: IProperty): TValue;
|
|
1207
|
+
GetValueInternal(entry: IInternalEntry, property: IPropertyBase): unknown | undefined;
|
|
1208
|
+
SetValueInternal(entry: IInternalEntry, property: IPropertyBase, value: unknown): void;
|
|
1268
1209
|
}
|
|
1269
1210
|
|
|
1270
1211
|
|
|
@@ -1275,83 +1216,63 @@ export const OriginalPropertyValues: {
|
|
|
1275
1216
|
|
|
1276
1217
|
export type OriginalPropertyValues = OriginalPropertyValues$instance;
|
|
1277
1218
|
|
|
1278
|
-
export
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
export interface OriginalValuesFactoryFactory$instance extends OriginalValuesFactoryFactory$protected, SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1219
|
+
export interface OriginalValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1220
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1221
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1222
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1223
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1287
1224
|
}
|
|
1288
1225
|
|
|
1289
1226
|
|
|
1290
1227
|
export const OriginalValuesFactoryFactory: {
|
|
1291
|
-
new(): OriginalValuesFactoryFactory;
|
|
1292
1228
|
readonly Instance: OriginalValuesFactoryFactory;
|
|
1293
1229
|
};
|
|
1294
1230
|
|
|
1295
1231
|
|
|
1296
1232
|
export type OriginalValuesFactoryFactory = OriginalValuesFactoryFactory$instance;
|
|
1297
1233
|
|
|
1298
|
-
export
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
export interface RelationshipSnapshotFactoryFactory$instance extends RelationshipSnapshotFactoryFactory$protected, SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1234
|
+
export interface RelationshipSnapshotFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1235
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1236
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1237
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1238
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1307
1239
|
}
|
|
1308
1240
|
|
|
1309
1241
|
|
|
1310
1242
|
export const RelationshipSnapshotFactoryFactory: {
|
|
1311
|
-
new(): RelationshipSnapshotFactoryFactory;
|
|
1312
1243
|
readonly Instance: RelationshipSnapshotFactoryFactory;
|
|
1313
1244
|
};
|
|
1314
1245
|
|
|
1315
1246
|
|
|
1316
1247
|
export type RelationshipSnapshotFactoryFactory = RelationshipSnapshotFactoryFactory$instance;
|
|
1317
1248
|
|
|
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>> {
|
|
1249
|
+
export interface ShadowValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IDictionary<System_Internal.String, unknown>> {
|
|
1250
|
+
readonly UseEntityVariable: boolean;
|
|
1251
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
1252
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
1253
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1254
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1255
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1256
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1330
1257
|
}
|
|
1331
1258
|
|
|
1332
1259
|
|
|
1333
1260
|
export const ShadowValuesFactoryFactory: {
|
|
1334
|
-
new(): ShadowValuesFactoryFactory;
|
|
1335
1261
|
readonly Instance: ShadowValuesFactoryFactory;
|
|
1336
1262
|
};
|
|
1337
1263
|
|
|
1338
1264
|
|
|
1339
1265
|
export type ShadowValuesFactoryFactory = ShadowValuesFactoryFactory$instance;
|
|
1340
1266
|
|
|
1341
|
-
export
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1267
|
+
export interface SidecarValuesFactoryFactory$instance extends SnapshotFactoryFactory_1<IInternalEntry> {
|
|
1268
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
1269
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
1270
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
1271
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
1346
1272
|
}
|
|
1347
1273
|
|
|
1348
1274
|
|
|
1349
|
-
export
|
|
1350
|
-
}
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
export const SidecarValuesFactoryFactory: {
|
|
1354
|
-
new(): SidecarValuesFactoryFactory;
|
|
1275
|
+
export const SidecarValuesFactoryFactory: (abstract new() => SidecarValuesFactoryFactory) & {
|
|
1355
1276
|
readonly Instance: SidecarValuesFactoryFactory;
|
|
1356
1277
|
};
|
|
1357
1278
|
|
|
@@ -1476,13 +1397,12 @@ export type SimplePrincipalKeyValueFactory_1<TKey> = SimplePrincipalKeyValueFact
|
|
|
1476
1397
|
|
|
1477
1398
|
|
|
1478
1399
|
export interface Snapshot$instance {
|
|
1479
|
-
|
|
1400
|
+
[index: number]: unknown | undefined;
|
|
1480
1401
|
GetValue<T>(index: int): T;
|
|
1481
1402
|
}
|
|
1482
1403
|
|
|
1483
1404
|
|
|
1484
1405
|
export const Snapshot: {
|
|
1485
|
-
new(): Snapshot;
|
|
1486
1406
|
Empty: ISnapshot;
|
|
1487
1407
|
readonly EmptyField: FieldInfo;
|
|
1488
1408
|
readonly GetValueMethod: MethodInfo;
|
|
@@ -1501,7 +1421,7 @@ export type Snapshot = Snapshot$instance & __Snapshot$views;
|
|
|
1501
1421
|
|
|
1502
1422
|
|
|
1503
1423
|
export interface Snapshot_1$instance<T0> {
|
|
1504
|
-
|
|
1424
|
+
[index: number]: unknown | undefined;
|
|
1505
1425
|
GetValue<T>(index: int): T;
|
|
1506
1426
|
}
|
|
1507
1427
|
|
|
@@ -1521,7 +1441,7 @@ export type Snapshot_1<T0> = Snapshot_1$instance<T0> & __Snapshot_1$views<T0>;
|
|
|
1521
1441
|
|
|
1522
1442
|
|
|
1523
1443
|
export interface Snapshot_10$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> {
|
|
1524
|
-
|
|
1444
|
+
[index: number]: unknown | undefined;
|
|
1525
1445
|
GetValue<T>(index: int): T;
|
|
1526
1446
|
}
|
|
1527
1447
|
|
|
@@ -1541,7 +1461,7 @@ export type Snapshot_10<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> = Snapshot_10$in
|
|
|
1541
1461
|
|
|
1542
1462
|
|
|
1543
1463
|
export interface Snapshot_11$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> {
|
|
1544
|
-
|
|
1464
|
+
[index: number]: unknown | undefined;
|
|
1545
1465
|
GetValue<T>(index: int): T;
|
|
1546
1466
|
}
|
|
1547
1467
|
|
|
@@ -1561,7 +1481,7 @@ export type Snapshot_11<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> = Snapshot_
|
|
|
1561
1481
|
|
|
1562
1482
|
|
|
1563
1483
|
export interface Snapshot_12$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> {
|
|
1564
|
-
|
|
1484
|
+
[index: number]: unknown | undefined;
|
|
1565
1485
|
GetValue<T>(index: int): T;
|
|
1566
1486
|
}
|
|
1567
1487
|
|
|
@@ -1581,7 +1501,7 @@ export type Snapshot_12<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> = Snap
|
|
|
1581
1501
|
|
|
1582
1502
|
|
|
1583
1503
|
export interface Snapshot_13$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> {
|
|
1584
|
-
|
|
1504
|
+
[index: number]: unknown | undefined;
|
|
1585
1505
|
GetValue<T>(index: int): T;
|
|
1586
1506
|
}
|
|
1587
1507
|
|
|
@@ -1601,7 +1521,7 @@ export type Snapshot_13<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> =
|
|
|
1601
1521
|
|
|
1602
1522
|
|
|
1603
1523
|
export interface Snapshot_14$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> {
|
|
1604
|
-
|
|
1524
|
+
[index: number]: unknown | undefined;
|
|
1605
1525
|
GetValue<T>(index: int): T;
|
|
1606
1526
|
}
|
|
1607
1527
|
|
|
@@ -1621,7 +1541,7 @@ export type Snapshot_14<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1621
1541
|
|
|
1622
1542
|
|
|
1623
1543
|
export interface Snapshot_15$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> {
|
|
1624
|
-
|
|
1544
|
+
[index: number]: unknown | undefined;
|
|
1625
1545
|
GetValue<T>(index: int): T;
|
|
1626
1546
|
}
|
|
1627
1547
|
|
|
@@ -1641,7 +1561,7 @@ export type Snapshot_15<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1641
1561
|
|
|
1642
1562
|
|
|
1643
1563
|
export interface Snapshot_16$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> {
|
|
1644
|
-
|
|
1564
|
+
[index: number]: unknown | undefined;
|
|
1645
1565
|
GetValue<T>(index: int): T;
|
|
1646
1566
|
}
|
|
1647
1567
|
|
|
@@ -1661,7 +1581,7 @@ export type Snapshot_16<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1661
1581
|
|
|
1662
1582
|
|
|
1663
1583
|
export interface Snapshot_17$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> {
|
|
1664
|
-
|
|
1584
|
+
[index: number]: unknown | undefined;
|
|
1665
1585
|
GetValue<T>(index: int): T;
|
|
1666
1586
|
}
|
|
1667
1587
|
|
|
@@ -1681,7 +1601,7 @@ export type Snapshot_17<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1681
1601
|
|
|
1682
1602
|
|
|
1683
1603
|
export interface Snapshot_18$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> {
|
|
1684
|
-
|
|
1604
|
+
[index: number]: unknown | undefined;
|
|
1685
1605
|
GetValue<T>(index: int): T;
|
|
1686
1606
|
}
|
|
1687
1607
|
|
|
@@ -1701,7 +1621,7 @@ export type Snapshot_18<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1701
1621
|
|
|
1702
1622
|
|
|
1703
1623
|
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
|
-
|
|
1624
|
+
[index: number]: unknown | undefined;
|
|
1705
1625
|
GetValue<T>(index: int): T;
|
|
1706
1626
|
}
|
|
1707
1627
|
|
|
@@ -1721,7 +1641,7 @@ export type Snapshot_19<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1721
1641
|
|
|
1722
1642
|
|
|
1723
1643
|
export interface Snapshot_2$instance<T0, T1> {
|
|
1724
|
-
|
|
1644
|
+
[index: number]: unknown | undefined;
|
|
1725
1645
|
GetValue<T>(index: int): T;
|
|
1726
1646
|
}
|
|
1727
1647
|
|
|
@@ -1741,7 +1661,7 @@ export type Snapshot_2<T0, T1> = Snapshot_2$instance<T0, T1> & __Snapshot_2$view
|
|
|
1741
1661
|
|
|
1742
1662
|
|
|
1743
1663
|
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
|
-
|
|
1664
|
+
[index: number]: unknown | undefined;
|
|
1745
1665
|
GetValue<T>(index: int): T;
|
|
1746
1666
|
}
|
|
1747
1667
|
|
|
@@ -1761,7 +1681,7 @@ export type Snapshot_20<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1761
1681
|
|
|
1762
1682
|
|
|
1763
1683
|
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
|
-
|
|
1684
|
+
[index: number]: unknown | undefined;
|
|
1765
1685
|
GetValue<T>(index: int): T;
|
|
1766
1686
|
}
|
|
1767
1687
|
|
|
@@ -1781,7 +1701,7 @@ export type Snapshot_21<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1781
1701
|
|
|
1782
1702
|
|
|
1783
1703
|
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
|
-
|
|
1704
|
+
[index: number]: unknown | undefined;
|
|
1785
1705
|
GetValue<T>(index: int): T;
|
|
1786
1706
|
}
|
|
1787
1707
|
|
|
@@ -1801,7 +1721,7 @@ export type Snapshot_22<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1801
1721
|
|
|
1802
1722
|
|
|
1803
1723
|
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
|
-
|
|
1724
|
+
[index: number]: unknown | undefined;
|
|
1805
1725
|
GetValue<T>(index: int): T;
|
|
1806
1726
|
}
|
|
1807
1727
|
|
|
@@ -1821,7 +1741,7 @@ export type Snapshot_23<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1821
1741
|
|
|
1822
1742
|
|
|
1823
1743
|
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
|
-
|
|
1744
|
+
[index: number]: unknown | undefined;
|
|
1825
1745
|
GetValue<T>(index: int): T;
|
|
1826
1746
|
}
|
|
1827
1747
|
|
|
@@ -1841,7 +1761,7 @@ export type Snapshot_24<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1841
1761
|
|
|
1842
1762
|
|
|
1843
1763
|
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
|
-
|
|
1764
|
+
[index: number]: unknown | undefined;
|
|
1845
1765
|
GetValue<T>(index: int): T;
|
|
1846
1766
|
}
|
|
1847
1767
|
|
|
@@ -1861,7 +1781,7 @@ export type Snapshot_25<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1861
1781
|
|
|
1862
1782
|
|
|
1863
1783
|
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
|
-
|
|
1784
|
+
[index: number]: unknown | undefined;
|
|
1865
1785
|
GetValue<T>(index: int): T;
|
|
1866
1786
|
}
|
|
1867
1787
|
|
|
@@ -1881,7 +1801,7 @@ export type Snapshot_26<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1881
1801
|
|
|
1882
1802
|
|
|
1883
1803
|
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
|
-
|
|
1804
|
+
[index: number]: unknown | undefined;
|
|
1885
1805
|
GetValue<T>(index: int): T;
|
|
1886
1806
|
}
|
|
1887
1807
|
|
|
@@ -1901,7 +1821,7 @@ export type Snapshot_27<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1901
1821
|
|
|
1902
1822
|
|
|
1903
1823
|
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
|
-
|
|
1824
|
+
[index: number]: unknown | undefined;
|
|
1905
1825
|
GetValue<T>(index: int): T;
|
|
1906
1826
|
}
|
|
1907
1827
|
|
|
@@ -1921,7 +1841,7 @@ export type Snapshot_28<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1921
1841
|
|
|
1922
1842
|
|
|
1923
1843
|
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
|
-
|
|
1844
|
+
[index: number]: unknown | undefined;
|
|
1925
1845
|
GetValue<T>(index: int): T;
|
|
1926
1846
|
}
|
|
1927
1847
|
|
|
@@ -1941,7 +1861,7 @@ export type Snapshot_29<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1941
1861
|
|
|
1942
1862
|
|
|
1943
1863
|
export interface Snapshot_3$instance<T0, T1, T2> {
|
|
1944
|
-
|
|
1864
|
+
[index: number]: unknown | undefined;
|
|
1945
1865
|
GetValue<T>(index: int): T;
|
|
1946
1866
|
}
|
|
1947
1867
|
|
|
@@ -1961,7 +1881,7 @@ export type Snapshot_3<T0, T1, T2> = Snapshot_3$instance<T0, T1, T2> & __Snapsho
|
|
|
1961
1881
|
|
|
1962
1882
|
|
|
1963
1883
|
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
|
-
|
|
1884
|
+
[index: number]: unknown | undefined;
|
|
1965
1885
|
GetValue<T>(index: int): T;
|
|
1966
1886
|
}
|
|
1967
1887
|
|
|
@@ -1981,7 +1901,7 @@ export type Snapshot_30<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T
|
|
|
1981
1901
|
|
|
1982
1902
|
|
|
1983
1903
|
export interface Snapshot_4$instance<T0, T1, T2, T3> {
|
|
1984
|
-
|
|
1904
|
+
[index: number]: unknown | undefined;
|
|
1985
1905
|
GetValue<T>(index: int): T;
|
|
1986
1906
|
}
|
|
1987
1907
|
|
|
@@ -2001,7 +1921,7 @@ export type Snapshot_4<T0, T1, T2, T3> = Snapshot_4$instance<T0, T1, T2, T3> & _
|
|
|
2001
1921
|
|
|
2002
1922
|
|
|
2003
1923
|
export interface Snapshot_5$instance<T0, T1, T2, T3, T4> {
|
|
2004
|
-
|
|
1924
|
+
[index: number]: unknown | undefined;
|
|
2005
1925
|
GetValue<T>(index: int): T;
|
|
2006
1926
|
}
|
|
2007
1927
|
|
|
@@ -2021,7 +1941,7 @@ export type Snapshot_5<T0, T1, T2, T3, T4> = Snapshot_5$instance<T0, T1, T2, T3,
|
|
|
2021
1941
|
|
|
2022
1942
|
|
|
2023
1943
|
export interface Snapshot_6$instance<T0, T1, T2, T3, T4, T5> {
|
|
2024
|
-
|
|
1944
|
+
[index: number]: unknown | undefined;
|
|
2025
1945
|
GetValue<T>(index: int): T;
|
|
2026
1946
|
}
|
|
2027
1947
|
|
|
@@ -2041,7 +1961,7 @@ export type Snapshot_6<T0, T1, T2, T3, T4, T5> = Snapshot_6$instance<T0, T1, T2,
|
|
|
2041
1961
|
|
|
2042
1962
|
|
|
2043
1963
|
export interface Snapshot_7$instance<T0, T1, T2, T3, T4, T5, T6> {
|
|
2044
|
-
|
|
1964
|
+
[index: number]: unknown | undefined;
|
|
2045
1965
|
GetValue<T>(index: int): T;
|
|
2046
1966
|
}
|
|
2047
1967
|
|
|
@@ -2061,7 +1981,7 @@ export type Snapshot_7<T0, T1, T2, T3, T4, T5, T6> = Snapshot_7$instance<T0, T1,
|
|
|
2061
1981
|
|
|
2062
1982
|
|
|
2063
1983
|
export interface Snapshot_8$instance<T0, T1, T2, T3, T4, T5, T6, T7> {
|
|
2064
|
-
|
|
1984
|
+
[index: number]: unknown | undefined;
|
|
2065
1985
|
GetValue<T>(index: int): T;
|
|
2066
1986
|
}
|
|
2067
1987
|
|
|
@@ -2081,7 +2001,7 @@ export type Snapshot_8<T0, T1, T2, T3, T4, T5, T6, T7> = Snapshot_8$instance<T0,
|
|
|
2081
2001
|
|
|
2082
2002
|
|
|
2083
2003
|
export interface Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> {
|
|
2084
|
-
|
|
2004
|
+
[index: number]: unknown | undefined;
|
|
2085
2005
|
GetValue<T>(index: int): T;
|
|
2086
2006
|
}
|
|
2087
2007
|
|
|
@@ -2100,27 +2020,22 @@ export interface Snapshot_9$instance<T0, T1, T2, T3, T4, T5, T6, T7, T8> extends
|
|
|
2100
2020
|
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
2021
|
|
|
2102
2022
|
|
|
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 {
|
|
2023
|
+
export interface SnapshotFactoryFactory$instance {
|
|
2024
|
+
readonly UseEntityVariable: boolean;
|
|
2116
2025
|
CreateConstructorExpression(structuralType: IRuntimeTypeBase, parameter: Expression): Expression;
|
|
2117
2026
|
CreateEmpty(structuralType: IRuntimeTypeBase): Func<ISnapshot>;
|
|
2118
2027
|
CreateEmptyExpression(structuralType: IRuntimeTypeBase): Expression<Func<ISnapshot>>;
|
|
2028
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2029
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2030
|
+
CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2031
|
+
GetPropertyCount(structuralType: IRuntimeTypeBase): int;
|
|
2032
|
+
GetPropertyIndex(propertyBase: IPropertyBase): int;
|
|
2033
|
+
GetValueComparer(property: IProperty): ValueComparer | undefined;
|
|
2034
|
+
GetValueComparerMethod(): MethodInfo | undefined;
|
|
2119
2035
|
}
|
|
2120
2036
|
|
|
2121
2037
|
|
|
2122
|
-
export const SnapshotFactoryFactory: {
|
|
2123
|
-
new(): SnapshotFactoryFactory;
|
|
2038
|
+
export const SnapshotFactoryFactory: (abstract new() => SnapshotFactoryFactory) & {
|
|
2124
2039
|
SnapshotCollection(collection: IEnumerable): HashSet<unknown> | undefined;
|
|
2125
2040
|
SnapshotComplexCollection(list: IList, complexProperty: IRuntimeComplexProperty): IList | undefined;
|
|
2126
2041
|
};
|
|
@@ -2134,24 +2049,19 @@ export interface SnapshotFactoryFactory_1$instance<TInput> extends SnapshotFacto
|
|
|
2134
2049
|
}
|
|
2135
2050
|
|
|
2136
2051
|
|
|
2137
|
-
export const SnapshotFactoryFactory_1: {
|
|
2138
|
-
new<TInput>(): SnapshotFactoryFactory_1<TInput>;
|
|
2052
|
+
export const SnapshotFactoryFactory_1: (abstract new<TInput>() => SnapshotFactoryFactory_1<TInput>) & {
|
|
2139
2053
|
};
|
|
2140
2054
|
|
|
2141
2055
|
|
|
2142
2056
|
export type SnapshotFactoryFactory_1<TInput> = SnapshotFactoryFactory_1$instance<TInput>;
|
|
2143
2057
|
|
|
2144
|
-
export
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
export interface SortableBindingList_1$instance<T> extends SortableBindingList_1$protected<T>, BindingList<T> {
|
|
2058
|
+
export interface SortableBindingList_1$instance<T> extends BindingList<T> {
|
|
2059
|
+
readonly IsSortedCore: boolean;
|
|
2060
|
+
readonly SortDirectionCore: ListSortDirection;
|
|
2061
|
+
readonly SortPropertyCore: PropertyDescriptor | undefined;
|
|
2062
|
+
readonly SupportsSortingCore: boolean;
|
|
2063
|
+
ApplySortCore(prop: PropertyDescriptor, direction: ListSortDirection): void;
|
|
2064
|
+
RemoveSortCore(): void;
|
|
2155
2065
|
}
|
|
2156
2066
|
|
|
2157
2067
|
|
|
@@ -2162,13 +2072,7 @@ export const SortableBindingList_1: {
|
|
|
2162
2072
|
|
|
2163
2073
|
export type SortableBindingList_1<T> = SortableBindingList_1$instance<T>;
|
|
2164
2074
|
|
|
2165
|
-
export
|
|
2166
|
-
protected SaveChanges(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>): int;
|
|
2167
|
-
protected SaveChangesAsync(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
export interface StateManager$instance extends StateManager$protected {
|
|
2075
|
+
export interface StateManager$instance {
|
|
2172
2076
|
CascadeDeleteTiming: CascadeTiming;
|
|
2173
2077
|
ChangedCount: int;
|
|
2174
2078
|
readonly ChangeDetector: IChangeDetector;
|
|
@@ -2219,7 +2123,9 @@ export interface StateManager$instance extends StateManager$protected {
|
|
|
2219
2123
|
ResetState(): void;
|
|
2220
2124
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
2221
2125
|
ResolveToExistingEntry(newEntry: InternalEntityEntry, navigation: INavigationBase, referencedFromEntry: InternalEntityEntry): boolean;
|
|
2126
|
+
SaveChanges(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>): int;
|
|
2222
2127
|
SaveChanges(acceptAllChangesOnSuccess: boolean): int;
|
|
2128
|
+
SaveChangesAsync(entriesToSave: IList__System_Collections_Generic<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
2223
2129
|
SaveChangesAsync(acceptAllChangesOnSuccess: boolean, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
2224
2130
|
SetEvents(tracking: EventHandler<EntityTrackingEventArgs>, tracked: EventHandler<EntityTrackedEventArgs>, stateChanging: EventHandler<EntityStateChangingEventArgs>, stateChanged: EventHandler<EntityStateChangedEventArgs>): void;
|
|
2225
2131
|
StartTracking(entry: InternalEntityEntry): InternalEntityEntry;
|
|
@@ -2286,30 +2192,21 @@ export const StateManagerDependencies: {
|
|
|
2286
2192
|
|
|
2287
2193
|
export type StateManagerDependencies = StateManagerDependencies$instance;
|
|
2288
2194
|
|
|
2289
|
-
export
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
}
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
export interface StoreGeneratedValuesFactoryFactory$instance extends StoreGeneratedValuesFactoryFactory$protected, SidecarValuesFactoryFactory {
|
|
2195
|
+
export interface StoreGeneratedValuesFactoryFactory$instance extends SidecarValuesFactoryFactory {
|
|
2196
|
+
readonly UseEntityVariable: boolean;
|
|
2197
|
+
CreateReadShadowValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2198
|
+
CreateReadValueExpression(parameter: Expression, property: IPropertyBase): Expression;
|
|
2297
2199
|
}
|
|
2298
2200
|
|
|
2299
2201
|
|
|
2300
2202
|
export const StoreGeneratedValuesFactoryFactory: {
|
|
2301
|
-
new(): StoreGeneratedValuesFactoryFactory;
|
|
2302
2203
|
};
|
|
2303
2204
|
|
|
2304
2205
|
|
|
2305
2206
|
export type StoreGeneratedValuesFactoryFactory = StoreGeneratedValuesFactoryFactory$instance;
|
|
2306
2207
|
|
|
2307
|
-
export
|
|
2308
|
-
|
|
2309
|
-
}
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
export interface StructuralEntryCurrentProviderValueComparer$instance extends StructuralEntryCurrentProviderValueComparer$protected, StructuralEntryCurrentValueComparer {
|
|
2208
|
+
export interface StructuralEntryCurrentProviderValueComparer$instance extends StructuralEntryCurrentValueComparer {
|
|
2209
|
+
GetPropertyValue(entry: IUpdateEntry): unknown | undefined;
|
|
2313
2210
|
}
|
|
2314
2211
|
|
|
2315
2212
|
|
|
@@ -2332,18 +2229,13 @@ export const StructuralEntryCurrentValueComparer: {
|
|
|
2332
2229
|
|
|
2333
2230
|
export type StructuralEntryCurrentValueComparer = StructuralEntryCurrentValueComparer$instance;
|
|
2334
2231
|
|
|
2335
|
-
export
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
}
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
export interface TemporaryValuesFactoryFactory$instance extends TemporaryValuesFactoryFactory$protected, SidecarValuesFactoryFactory {
|
|
2232
|
+
export interface TemporaryValuesFactoryFactory$instance extends SidecarValuesFactoryFactory {
|
|
2233
|
+
CreateSnapshotExpression(entityType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2234
|
+
CreateSnapshotExpression(clrType: Type, parameter: Expression, types: Type[], propertyBases: IList__System_Collections_Generic<IPropertyBase>): Expression;
|
|
2342
2235
|
}
|
|
2343
2236
|
|
|
2344
2237
|
|
|
2345
2238
|
export const TemporaryValuesFactoryFactory: {
|
|
2346
|
-
new(): TemporaryValuesFactoryFactory;
|
|
2347
2239
|
};
|
|
2348
2240
|
|
|
2349
2241
|
|