@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
|
@@ -178,14 +178,7 @@ export const CommentAttribute: {
|
|
|
178
178
|
|
|
179
179
|
export type CommentAttribute = CommentAttribute$instance;
|
|
180
180
|
|
|
181
|
-
export
|
|
182
|
-
protected ConfigureConventions(configurationBuilder: ModelConfigurationBuilder): void;
|
|
183
|
-
protected OnConfiguring(optionsBuilder: DbContextOptionsBuilder): void;
|
|
184
|
-
protected OnModelCreating(modelBuilder: ModelBuilder): void;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
export interface DbContext$instance extends DbContext$protected {
|
|
181
|
+
export interface DbContext$instance {
|
|
189
182
|
readonly ChangeTracker: ChangeTracker;
|
|
190
183
|
readonly ContextId: DbContextId;
|
|
191
184
|
readonly Database: DatabaseFacade;
|
|
@@ -202,6 +195,7 @@ export interface DbContext$instance extends DbContext$protected {
|
|
|
202
195
|
Attach(entity: unknown): EntityEntry;
|
|
203
196
|
AttachRange(...entities: unknown[]): void;
|
|
204
197
|
AttachRange(entities: IEnumerable__System_Collections_Generic<unknown>): void;
|
|
198
|
+
ConfigureConventions(configurationBuilder: ModelConfigurationBuilder): void;
|
|
205
199
|
Dispose(): void;
|
|
206
200
|
DisposeAsync(): ValueTask;
|
|
207
201
|
Entry<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
@@ -215,6 +209,8 @@ export interface DbContext$instance extends DbContext$protected {
|
|
|
215
209
|
FindAsync<TEntity>(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask<TEntity>;
|
|
216
210
|
FromExpression<TResult>(expression: Expression<Func<IQueryable<TResult>>>): IQueryable<TResult>;
|
|
217
211
|
GetHashCode(): int;
|
|
212
|
+
OnConfiguring(optionsBuilder: DbContextOptionsBuilder): void;
|
|
213
|
+
OnModelCreating(modelBuilder: ModelBuilder): void;
|
|
218
214
|
Remove<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
219
215
|
Remove(entity: unknown): EntityEntry;
|
|
220
216
|
RemoveRange(...entities: unknown[]): void;
|
|
@@ -234,7 +230,6 @@ export interface DbContext$instance extends DbContext$protected {
|
|
|
234
230
|
|
|
235
231
|
|
|
236
232
|
export const DbContext: {
|
|
237
|
-
new(): DbContext;
|
|
238
233
|
new(options: DbContextOptions): DbContext;
|
|
239
234
|
};
|
|
240
235
|
|
|
@@ -252,17 +247,13 @@ export interface DbContext$instance extends Microsoft_EntityFrameworkCore_Infras
|
|
|
252
247
|
export type DbContext = DbContext$instance & __DbContext$views;
|
|
253
248
|
|
|
254
249
|
|
|
255
|
-
export
|
|
256
|
-
protected readonly ExtensionsMap: ImmutableSortedDictionary<Type, ValueTuple<IDbContextOptionsExtension, System_Internal.Int32>>;
|
|
257
|
-
protected Equals(other: DbContextOptions): boolean;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
export interface DbContextOptions$instance extends DbContextOptions$protected {
|
|
250
|
+
export interface DbContextOptions$instance {
|
|
262
251
|
readonly ContextType: Type;
|
|
263
252
|
readonly Extensions: IEnumerable__System_Collections_Generic<IDbContextOptionsExtension>;
|
|
253
|
+
readonly ExtensionsMap: ImmutableSortedDictionary<Type, ValueTuple<IDbContextOptionsExtension, System_Internal.Int32>>;
|
|
264
254
|
IsFrozen: boolean;
|
|
265
255
|
Equals(obj: unknown): boolean;
|
|
256
|
+
Equals(other: DbContextOptions): boolean;
|
|
266
257
|
FindExtension<TExtension extends IDbContextOptionsExtension>(): TExtension | undefined;
|
|
267
258
|
Freeze(): void;
|
|
268
259
|
GetExtension<TExtension extends IDbContextOptionsExtension>(): TExtension;
|
|
@@ -271,10 +262,7 @@ export interface DbContextOptions$instance extends DbContextOptions$protected {
|
|
|
271
262
|
}
|
|
272
263
|
|
|
273
264
|
|
|
274
|
-
export const DbContextOptions: {
|
|
275
|
-
new(): DbContextOptions;
|
|
276
|
-
new(extensions: IReadOnlyDictionary<Type, IDbContextOptionsExtension>): DbContextOptions;
|
|
277
|
-
new(extensions: ImmutableSortedDictionary<Type, ValueTuple<IDbContextOptionsExtension, System_Internal.Int32>>): DbContextOptions;
|
|
265
|
+
export const DbContextOptions: (abstract new() => DbContextOptions) & (abstract new(extensions: IReadOnlyDictionary<Type, IDbContextOptionsExtension>) => DbContextOptions) & (abstract new(extensions: ImmutableSortedDictionary<Type, ValueTuple<IDbContextOptionsExtension, System_Internal.Int32>>) => DbContextOptions) & {
|
|
278
266
|
};
|
|
279
267
|
|
|
280
268
|
|
|
@@ -407,9 +395,10 @@ export interface DbFunctionAttribute$instance extends Attribute {
|
|
|
407
395
|
IsBuiltIn: boolean;
|
|
408
396
|
IsNullable: boolean;
|
|
409
397
|
readonly IsNullableHasValue: boolean;
|
|
410
|
-
Name: string;
|
|
398
|
+
get Name(): string | undefined;
|
|
399
|
+
set Name(value: string | undefined);
|
|
411
400
|
get Schema(): string | undefined;
|
|
412
|
-
set Schema(value: string);
|
|
401
|
+
set Schema(value: string | undefined);
|
|
413
402
|
}
|
|
414
403
|
|
|
415
404
|
|
|
@@ -429,7 +418,6 @@ export interface DbFunctions$instance {
|
|
|
429
418
|
|
|
430
419
|
|
|
431
420
|
export const DbFunctions: {
|
|
432
|
-
new(): DbFunctions;
|
|
433
421
|
};
|
|
434
422
|
|
|
435
423
|
|
|
@@ -598,8 +586,7 @@ export interface DbSet_1$instance<TEntity> {
|
|
|
598
586
|
}
|
|
599
587
|
|
|
600
588
|
|
|
601
|
-
export const DbSet_1: {
|
|
602
|
-
new<TEntity>(): DbSet_1<TEntity>;
|
|
589
|
+
export const DbSet_1: (abstract new<TEntity>() => DbSet_1<TEntity>) & {
|
|
603
590
|
};
|
|
604
591
|
|
|
605
592
|
|
|
@@ -685,10 +672,11 @@ export type EntityTypeConfigurationAttribute_2<TConfiguration extends IEntityTyp
|
|
|
685
672
|
export interface IndexAttribute$instance extends Attribute {
|
|
686
673
|
AllDescending: boolean;
|
|
687
674
|
get IsDescending(): boolean[] | undefined;
|
|
688
|
-
set IsDescending(value: boolean[]);
|
|
675
|
+
set IsDescending(value: boolean[] | undefined);
|
|
689
676
|
IsUnique: boolean;
|
|
690
677
|
readonly IsUniqueHasValue: boolean;
|
|
691
|
-
Name: string;
|
|
678
|
+
get Name(): string | undefined;
|
|
679
|
+
set Name(value: string | undefined);
|
|
692
680
|
readonly PropertyNames: IReadOnlyList<System_Internal.String>;
|
|
693
681
|
}
|
|
694
682
|
|
|
@@ -760,13 +748,9 @@ export interface ModelBuilder$instance extends Microsoft_EntityFrameworkCore_Inf
|
|
|
760
748
|
export type ModelBuilder = ModelBuilder$instance & __ModelBuilder$views;
|
|
761
749
|
|
|
762
750
|
|
|
763
|
-
export
|
|
764
|
-
protected readonly ModelConfiguration: ModelConfiguration;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
export interface ModelConfigurationBuilder$instance extends ModelConfigurationBuilder$protected {
|
|
751
|
+
export interface ModelConfigurationBuilder$instance {
|
|
769
752
|
readonly Conventions: ConventionSetBuilder;
|
|
753
|
+
readonly ModelConfiguration: ModelConfiguration;
|
|
770
754
|
ComplexProperties<TProperty>(): ComplexPropertiesConfigurationBuilder_1<TProperty>;
|
|
771
755
|
ComplexProperties(propertyType: Type): ComplexPropertiesConfigurationBuilder;
|
|
772
756
|
CreateModelBuilder(modelDependencies: ModelDependencies): ModelBuilder;
|
|
@@ -856,8 +840,7 @@ export interface SaveChangesEventArgs$instance extends EventArgs {
|
|
|
856
840
|
}
|
|
857
841
|
|
|
858
842
|
|
|
859
|
-
export const SaveChangesEventArgs: {
|
|
860
|
-
new(acceptAllChangesOnSuccess: boolean): SaveChangesEventArgs;
|
|
843
|
+
export const SaveChangesEventArgs: (abstract new(acceptAllChangesOnSuccess: boolean) => SaveChangesEventArgs) & {
|
|
861
844
|
};
|
|
862
845
|
|
|
863
846
|
|
|
@@ -163,15 +163,11 @@ export interface ChangeTracker$instance extends Microsoft_EntityFrameworkCore_In
|
|
|
163
163
|
export type ChangeTracker = ChangeTracker$instance & __ChangeTracker$views;
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
export
|
|
167
|
-
protected GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
export interface CollectionEntry$instance extends CollectionEntry$protected, NavigationEntry$instance {
|
|
166
|
+
export interface CollectionEntry$instance extends NavigationEntry$instance {
|
|
172
167
|
CurrentValue: IEnumerable | unknown;
|
|
173
168
|
IsModified: boolean;
|
|
174
169
|
FindEntry(entity: unknown): EntityEntry | undefined;
|
|
170
|
+
GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
|
|
175
171
|
Load(): void;
|
|
176
172
|
Load(options: LoadOptions): void;
|
|
177
173
|
LoadAsync(cancellationToken?: CancellationToken): Task;
|
|
@@ -219,7 +215,7 @@ export type CollectionEntry_2<TEntity, TRelatedEntity> = CollectionEntry_2$insta
|
|
|
219
215
|
|
|
220
216
|
export interface ComplexCollectionEntry$instance extends MemberEntry$instance {
|
|
221
217
|
IsModified: boolean;
|
|
222
|
-
readonly
|
|
218
|
+
readonly [ordinal: number]: ComplexElementEntry;
|
|
223
219
|
GetEnumerator(): IEnumerator<ComplexElementEntry>;
|
|
224
220
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
225
221
|
}
|
|
@@ -259,16 +255,12 @@ export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends Mi
|
|
|
259
255
|
export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry_2$instance<TEntity, TElement> & __ComplexCollectionEntry_2$views<TEntity, TElement>;
|
|
260
256
|
|
|
261
257
|
|
|
262
|
-
export
|
|
263
|
-
protected readonly InternalEntry: InternalComplexEntry;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
export interface ComplexElementEntry$instance extends ComplexElementEntry$protected {
|
|
258
|
+
export interface ComplexElementEntry$instance {
|
|
268
259
|
readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
|
|
269
260
|
readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
|
|
270
261
|
readonly CurrentValue: TComplexProperty | unknown;
|
|
271
262
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
263
|
+
readonly InternalEntry: InternalComplexEntry;
|
|
272
264
|
IsModified: boolean;
|
|
273
265
|
readonly Metadata: IComplexProperty;
|
|
274
266
|
readonly Properties: IEnumerable__System_Collections_Generic<PropertyEntry>;
|
|
@@ -433,12 +425,7 @@ export const DetectEntityChangesEventArgs: {
|
|
|
433
425
|
|
|
434
426
|
export type DetectEntityChangesEventArgs = DetectEntityChangesEventArgs$instance;
|
|
435
427
|
|
|
436
|
-
export
|
|
437
|
-
protected readonly InternalEntry: InternalEntityEntry;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
export interface EntityEntry$instance extends EntityEntry$protected {
|
|
428
|
+
export interface EntityEntry$instance {
|
|
442
429
|
readonly Collections: IEnumerable__System_Collections_Generic<CollectionEntry>;
|
|
443
430
|
readonly ComplexCollections: IEnumerable__System_Collections_Generic<ComplexCollectionEntry>;
|
|
444
431
|
readonly ComplexProperties: IEnumerable__System_Collections_Generic<ComplexPropertyEntry>;
|
|
@@ -446,6 +433,7 @@ export interface EntityEntry$instance extends EntityEntry$protected {
|
|
|
446
433
|
readonly CurrentValues: PropertyValues;
|
|
447
434
|
readonly DebugView: DebugView;
|
|
448
435
|
readonly Entity: TEntity | unknown;
|
|
436
|
+
readonly InternalEntry: InternalEntityEntry;
|
|
449
437
|
readonly IsKeySet: boolean;
|
|
450
438
|
readonly Members: IEnumerable__System_Collections_Generic<MemberEntry>;
|
|
451
439
|
readonly Metadata: IEntityType;
|
|
@@ -719,14 +707,7 @@ export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement ext
|
|
|
719
707
|
export type ListOfValueTypesComparer_2<TConcreteList, TElement> = ListOfValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
720
708
|
|
|
721
709
|
|
|
722
|
-
export
|
|
723
|
-
protected OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
724
|
-
protected OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
725
|
-
protected OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
export interface LocalView_1$instance<TEntity> extends LocalView_1$protected<TEntity> {
|
|
710
|
+
export interface LocalView_1$instance<TEntity> {
|
|
730
711
|
readonly Count: int;
|
|
731
712
|
readonly IsReadOnly: boolean;
|
|
732
713
|
Add(item: TEntity): void;
|
|
@@ -744,6 +725,9 @@ export interface LocalView_1$instance<TEntity> extends LocalView_1$protected<TEn
|
|
|
744
725
|
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable__System_Collections_Generic<EntityEntry_1<TEntity>>;
|
|
745
726
|
GetEntries(properties: IEnumerable__System_Collections_Generic<IProperty>, propertyValues: IEnumerable__System_Collections_Generic<unknown>): IEnumerable__System_Collections_Generic<EntityEntry_1<TEntity>>;
|
|
746
727
|
GetEnumerator(): IEnumerator<TEntity>;
|
|
728
|
+
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
729
|
+
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
730
|
+
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
747
731
|
Remove(item: TEntity): boolean;
|
|
748
732
|
Reset(): void;
|
|
749
733
|
ToBindingList(): BindingList<TEntity>;
|
|
@@ -758,24 +742,19 @@ export const LocalView_1: {
|
|
|
758
742
|
|
|
759
743
|
export type LocalView_1<TEntity> = LocalView_1$instance<TEntity>;
|
|
760
744
|
|
|
761
|
-
export
|
|
762
|
-
protected readonly InternalEntry: IInternalEntry;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
export interface MemberEntry$instance extends MemberEntry$protected {
|
|
745
|
+
export interface MemberEntry$instance {
|
|
767
746
|
CurrentValue: TProperty | unknown;
|
|
768
747
|
readonly EntityEntry: EntityEntry | EntityEntry_1<TEntity>;
|
|
748
|
+
readonly InternalEntry: IInternalEntry;
|
|
769
749
|
IsModified: boolean;
|
|
770
|
-
readonly Metadata:
|
|
750
|
+
readonly Metadata: IProperty | IPropertyBase;
|
|
771
751
|
Equals(obj: unknown): boolean;
|
|
772
752
|
GetHashCode(): int;
|
|
773
753
|
ToString(): string | undefined;
|
|
774
754
|
}
|
|
775
755
|
|
|
776
756
|
|
|
777
|
-
export const MemberEntry: {
|
|
778
|
-
new(internalEntry: IInternalEntry, metadata: IPropertyBase): MemberEntry;
|
|
757
|
+
export const MemberEntry: (abstract new(internalEntry: IInternalEntry, metadata: IPropertyBase) => MemberEntry) & {
|
|
779
758
|
};
|
|
780
759
|
|
|
781
760
|
|
|
@@ -788,12 +767,8 @@ export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infr
|
|
|
788
767
|
export type MemberEntry = MemberEntry$instance & __MemberEntry$views;
|
|
789
768
|
|
|
790
769
|
|
|
791
|
-
export
|
|
792
|
-
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
export interface NavigationEntry$instance extends NavigationEntry$protected, MemberEntry$instance {
|
|
770
|
+
export interface NavigationEntry$instance extends MemberEntry$instance {
|
|
771
|
+
readonly InternalEntityEntry: InternalEntityEntry;
|
|
797
772
|
IsLoaded: boolean;
|
|
798
773
|
Load(): void;
|
|
799
774
|
Load(options: LoadOptions): void;
|
|
@@ -803,9 +778,7 @@ export interface NavigationEntry$instance extends NavigationEntry$protected, Mem
|
|
|
803
778
|
}
|
|
804
779
|
|
|
805
780
|
|
|
806
|
-
export const NavigationEntry: {
|
|
807
|
-
new(internalEntry: InternalEntityEntry, name: string, collection: boolean): NavigationEntry;
|
|
808
|
-
new(internalEntry: InternalEntityEntry, navigationBase: INavigationBase, collection: boolean): NavigationEntry;
|
|
781
|
+
export const NavigationEntry: (abstract new(internalEntry: InternalEntityEntry, name: string, collection: boolean) => NavigationEntry) & (abstract new(internalEntry: InternalEntityEntry, navigationBase: INavigationBase, collection: boolean) => NavigationEntry) & {
|
|
809
782
|
};
|
|
810
783
|
|
|
811
784
|
|
|
@@ -831,14 +804,7 @@ export const ObservableCollectionListSource_1: {
|
|
|
831
804
|
|
|
832
805
|
export type ObservableCollectionListSource_1<T> = ObservableCollectionListSource_1$instance<T>;
|
|
833
806
|
|
|
834
|
-
export
|
|
835
|
-
protected OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
836
|
-
protected OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
837
|
-
protected OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
export interface ObservableHashSet_1$instance<T> extends ObservableHashSet_1$protected<T> {
|
|
807
|
+
export interface ObservableHashSet_1$instance<T> {
|
|
842
808
|
readonly Comparer: IEqualityComparer__System_Collections_Generic<T>;
|
|
843
809
|
readonly Count: int;
|
|
844
810
|
readonly IsReadOnly: boolean;
|
|
@@ -855,6 +821,9 @@ export interface ObservableHashSet_1$instance<T> extends ObservableHashSet_1$pro
|
|
|
855
821
|
IsProperSupersetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
856
822
|
IsSubsetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
857
823
|
IsSupersetOf(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
824
|
+
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
825
|
+
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
826
|
+
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
858
827
|
Overlaps(other: IEnumerable__System_Collections_Generic<T>): boolean;
|
|
859
828
|
Remove(item: T): boolean;
|
|
860
829
|
RemoveWhere(match: Predicate<T>): int;
|
|
@@ -916,13 +885,9 @@ export interface PropertyEntry_2$instance<TEntity, TProperty> extends Microsoft_
|
|
|
916
885
|
export type PropertyEntry_2<TEntity, TProperty> = PropertyEntry_2$instance<TEntity, TProperty> & __PropertyEntry_2$views<TEntity, TProperty>;
|
|
917
886
|
|
|
918
887
|
|
|
919
|
-
export
|
|
920
|
-
protected readonly InternalEntry: InternalEntryBase;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
export interface PropertyValues$instance extends PropertyValues$protected {
|
|
888
|
+
export interface PropertyValues$instance {
|
|
925
889
|
readonly ComplexCollectionProperties: IReadOnlyList<IComplexProperty>;
|
|
890
|
+
readonly InternalEntry: InternalEntryBase;
|
|
926
891
|
readonly Properties: IReadOnlyList<IProperty>;
|
|
927
892
|
readonly StructuralType: ITypeBase;
|
|
928
893
|
Clone(): PropertyValues;
|
|
@@ -945,21 +910,16 @@ export interface PropertyValues$instance extends PropertyValues$protected {
|
|
|
945
910
|
}
|
|
946
911
|
|
|
947
912
|
|
|
948
|
-
export const PropertyValues: {
|
|
949
|
-
new(internalEntry: InternalEntryBase): PropertyValues;
|
|
913
|
+
export const PropertyValues: (abstract new(internalEntry: InternalEntryBase) => PropertyValues) & {
|
|
950
914
|
};
|
|
951
915
|
|
|
952
916
|
|
|
953
917
|
export type PropertyValues = PropertyValues$instance;
|
|
954
918
|
|
|
955
|
-
export
|
|
956
|
-
protected GetTargetEntry(): InternalEntityEntry | undefined;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
export interface ReferenceEntry$instance extends ReferenceEntry$protected, NavigationEntry$instance {
|
|
919
|
+
export interface ReferenceEntry$instance extends NavigationEntry$instance {
|
|
961
920
|
IsModified: boolean;
|
|
962
921
|
readonly TargetEntry: EntityEntry | undefined | EntityEntry_1<TProperty> | undefined;
|
|
922
|
+
GetTargetEntry(): InternalEntityEntry | undefined;
|
|
963
923
|
Load(): void;
|
|
964
924
|
Load(options: LoadOptions): void;
|
|
965
925
|
LoadAsync(cancellationToken?: CancellationToken): Task;
|
|
@@ -1020,8 +980,7 @@ export interface ValueComparer$instance {
|
|
|
1020
980
|
}
|
|
1021
981
|
|
|
1022
982
|
|
|
1023
|
-
export const ValueComparer: {
|
|
1024
|
-
new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression): ValueComparer;
|
|
983
|
+
export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression) => ValueComparer) & {
|
|
1025
984
|
readonly HashCodeAddMethod: MethodInfo;
|
|
1026
985
|
readonly ToHashCodeMethod: MethodInfo;
|
|
1027
986
|
readonly BoolIdentity: Expression<Func<System_Internal.Boolean, System_Internal.Boolean>>;
|