@tsonic/efcore 10.0.5 → 10.0.8
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 +599 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +193 -155
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +385 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +215 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +140 -122
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1139 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +510 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +25 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1557 -1305
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +357 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +51 -35
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1462 -1465
- package/package.json +4 -4
|
@@ -17,23 +17,23 @@ import type { IComplexProperty, IEntityType, IModel, INavigation, INavigationBas
|
|
|
17
17
|
import * as Microsoft_EntityFrameworkCore_Update_Internal from "../../Microsoft.EntityFrameworkCore.Update/internal/index.js";
|
|
18
18
|
import type { IUpdateEntry } from "../../Microsoft.EntityFrameworkCore.Update/internal/index.js";
|
|
19
19
|
import type { DbContext, DbSet_1, EntityState, QueryTrackingBehavior } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
20
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
21
|
-
import type { HashSet_1$Enumerator,
|
|
22
|
-
import * as
|
|
23
|
-
import type {
|
|
24
|
-
import * as
|
|
25
|
-
import type {
|
|
26
|
-
import * as
|
|
27
|
-
import type {
|
|
28
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
29
|
-
import type {
|
|
30
|
-
import
|
|
31
|
-
import type {
|
|
32
|
-
import type {
|
|
33
|
-
import type {
|
|
34
|
-
import type {
|
|
35
|
-
import
|
|
36
|
-
import type {
|
|
20
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
21
|
+
import type { HashSet_1$Enumerator, ICollection_1, IComparer_1, IDictionary_2, IEnumerable_1, IEnumerator_1, IEqualityComparer_1, IList_1, IReadOnlyCollection_1, IReadOnlyList_1, ISet_1, List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
22
|
+
import * as System_Collections_ObjectModel_Internal from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
23
|
+
import type { ObservableCollection_1 } from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
24
|
+
import * as System_Collections_Specialized_Internal from "@tsonic/dotnet/System.Collections.Specialized/internal/index.js";
|
|
25
|
+
import type { INotifyCollectionChanged, NotifyCollectionChangedEventArgs, NotifyCollectionChangedEventHandler } from "@tsonic/dotnet/System.Collections.Specialized/internal/index.js";
|
|
26
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
27
|
+
import type { ICollection, IEnumerable, IEqualityComparer, IList } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
28
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
29
|
+
import type { BindingList_1, IListSource, INotifyPropertyChanged, INotifyPropertyChanging, PropertyChangedEventArgs, PropertyChangedEventHandler, PropertyChangingEventArgs, PropertyChangingEventHandler } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
30
|
+
import type { Expression, Expression_1, LambdaExpression } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
31
|
+
import type { IQueryable, IQueryable_1 } from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
32
|
+
import type { MethodInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
33
|
+
import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
34
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
35
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
36
|
+
import type { Action_1, Boolean as ClrBoolean, Enum, EventArgs, EventHandler_1, Func_2, Func_3, HashCode, IComparable, IConvertible, IFormattable, Int32, ISpanFormattable, Nullable_1, Object as ClrObject, Predicate_1, String as ClrString, Type, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
37
37
|
|
|
38
38
|
export enum CascadeTiming {
|
|
39
39
|
Immediate = 0,
|
|
@@ -68,7 +68,7 @@ export type IDependentKeyValueFactory = IDependentKeyValueFactory$instance;
|
|
|
68
68
|
export interface IDependentKeyValueFactory_1$instance<TKey> extends IDependentKeyValueFactory {
|
|
69
69
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IDependentKeyValueFactory_1: never;
|
|
70
70
|
|
|
71
|
-
readonly EqualityComparer:
|
|
71
|
+
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
72
72
|
CreatePrincipalEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
|
|
73
73
|
TryCreateFromCurrentValues(entry: IUpdateEntry, key: TKey): boolean;
|
|
74
74
|
}
|
|
@@ -81,8 +81,8 @@ export type IDependentKeyValueFactory_1<TKey> = IDependentKeyValueFactory_1$inst
|
|
|
81
81
|
export interface IEntityEntryGraphIterator$instance {
|
|
82
82
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IEntityEntryGraphIterator: never;
|
|
83
83
|
|
|
84
|
-
TraverseGraph<TState>(node: EntityEntryGraphNode_1<TState>, handleNode:
|
|
85
|
-
TraverseGraphAsync<TState>(node: EntityEntryGraphNode_1<TState>, handleNode:
|
|
84
|
+
TraverseGraph<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func_2<EntityEntryGraphNode_1<TState>, System_Internal.Boolean>): void;
|
|
85
|
+
TraverseGraphAsync<TState>(node: EntityEntryGraphNode_1<TState>, handleNode: Func_3<EntityEntryGraphNode_1<TState>, CancellationToken, Task_1<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
|
|
@@ -100,13 +100,13 @@ export type IPrincipalKeyValueFactory = IPrincipalKeyValueFactory$instance;
|
|
|
100
100
|
export interface IPrincipalKeyValueFactory_1$instance<TKey> extends IPrincipalKeyValueFactory {
|
|
101
101
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ChangeTracking_IPrincipalKeyValueFactory_1: never;
|
|
102
102
|
|
|
103
|
-
readonly EqualityComparer:
|
|
103
|
+
readonly EqualityComparer: IEqualityComparer_1<TKey>;
|
|
104
104
|
CreateEquatableKey(entry: IUpdateEntry, fromOriginalValues?: boolean): unknown;
|
|
105
105
|
CreateFromCurrentValues(entry: IUpdateEntry): TKey;
|
|
106
|
-
CreateFromKeyValues(keyValues:
|
|
106
|
+
CreateFromKeyValues(keyValues: IReadOnlyList_1<unknown>): unknown | undefined;
|
|
107
107
|
CreateFromRelationshipSnapshot(entry: IUpdateEntry): TKey;
|
|
108
108
|
FindNullPropertyInCurrentValues(entry: IUpdateEntry): IProperty;
|
|
109
|
-
FindNullPropertyInKeyValues(keyValues:
|
|
109
|
+
FindNullPropertyInKeyValues(keyValues: IReadOnlyList_1<unknown>): IProperty;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
|
|
@@ -115,6 +115,8 @@ export interface IPrincipalKeyValueFactory_1$instance<TKey> extends IPrincipalKe
|
|
|
115
115
|
export type IPrincipalKeyValueFactory_1<TKey> = IPrincipalKeyValueFactory_1$instance<TKey>;
|
|
116
116
|
|
|
117
117
|
export interface ArrayStructuralComparer_1$instance<TElement> extends ValueComparer_1<TElement[]> {
|
|
118
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ArrayStructuralComparer_1: never;
|
|
119
|
+
|
|
118
120
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
119
121
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
120
122
|
|
|
@@ -129,6 +131,8 @@ export const ArrayStructuralComparer_1: {
|
|
|
129
131
|
export type ArrayStructuralComparer_1<TElement> = ArrayStructuralComparer_1$instance<TElement>;
|
|
130
132
|
|
|
131
133
|
export interface CaseInsensitiveValueComparer$instance extends ValueComparer_1<System_Internal.String> {
|
|
134
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_CaseInsensitiveValueComparer: never;
|
|
135
|
+
|
|
132
136
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
133
137
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
134
138
|
|
|
@@ -142,7 +146,9 @@ export const CaseInsensitiveValueComparer: {
|
|
|
142
146
|
|
|
143
147
|
export type CaseInsensitiveValueComparer = CaseInsensitiveValueComparer$instance;
|
|
144
148
|
|
|
145
|
-
export interface ChangeTracker$instance {
|
|
149
|
+
export interface ChangeTracker$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {
|
|
150
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ChangeTracker: never;
|
|
151
|
+
|
|
146
152
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
147
153
|
|
|
148
154
|
AutoDetectChangesEnabled: boolean;
|
|
@@ -156,14 +162,14 @@ export interface ChangeTracker$instance {
|
|
|
156
162
|
CascadeChanges(): void;
|
|
157
163
|
Clear(): void;
|
|
158
164
|
DetectChanges(): void;
|
|
159
|
-
Entries():
|
|
160
|
-
Entries<TEntity>():
|
|
165
|
+
Entries(): IEnumerable_1<EntityEntry>;
|
|
166
|
+
Entries<TEntity>(): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
161
167
|
Equals(obj: unknown): boolean;
|
|
162
168
|
GetHashCode(): int;
|
|
163
169
|
HasChanges(): boolean;
|
|
164
170
|
ToString(): string | undefined;
|
|
165
|
-
TrackGraph(rootEntity: unknown, callback:
|
|
166
|
-
TrackGraph<TState>(rootEntity: unknown, state: TState, callback:
|
|
171
|
+
TrackGraph(rootEntity: unknown, callback: Action_1<EntityEntryGraphNode>): void;
|
|
172
|
+
TrackGraph<TState>(rootEntity: unknown, state: TState, callback: Func_2<EntityEntryGraphNode_1<TState>, System_Internal.Boolean>): void;
|
|
167
173
|
}
|
|
168
174
|
|
|
169
175
|
|
|
@@ -176,15 +182,15 @@ export interface __ChangeTracker$views {
|
|
|
176
182
|
As_IResettableService(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance;
|
|
177
183
|
}
|
|
178
184
|
|
|
179
|
-
export interface ChangeTracker$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
180
|
-
|
|
181
185
|
export type ChangeTracker = ChangeTracker$instance & __ChangeTracker$views;
|
|
182
186
|
|
|
183
187
|
|
|
184
188
|
export interface CollectionEntry$instance extends NavigationEntry$instance {
|
|
189
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_CollectionEntry: never;
|
|
190
|
+
|
|
185
191
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
186
192
|
|
|
187
|
-
CurrentValue: IEnumerable |
|
|
193
|
+
CurrentValue: IEnumerable | unknown;
|
|
188
194
|
IsModified: boolean;
|
|
189
195
|
FindEntry(entity: unknown): EntityEntry | undefined;
|
|
190
196
|
GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
|
|
@@ -206,15 +212,15 @@ export interface __CollectionEntry$views {
|
|
|
206
212
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
207
213
|
}
|
|
208
214
|
|
|
209
|
-
export interface CollectionEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
210
|
-
|
|
211
215
|
export type CollectionEntry = CollectionEntry$instance & __CollectionEntry$views;
|
|
212
216
|
|
|
213
217
|
|
|
214
|
-
export interface CollectionEntry_2$instance<TEntity, TRelatedEntity> extends CollectionEntry$instance {
|
|
218
|
+
export interface CollectionEntry_2$instance<TEntity, TRelatedEntity> extends CollectionEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
219
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_CollectionEntry_2: never;
|
|
220
|
+
|
|
215
221
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
216
222
|
|
|
217
|
-
readonly EntityEntry:
|
|
223
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
218
224
|
FindEntry(entity: unknown): EntityEntry | undefined;
|
|
219
225
|
Query(): IQueryable;
|
|
220
226
|
}
|
|
@@ -230,17 +236,17 @@ export interface __CollectionEntry_2$views<TEntity, TRelatedEntity> {
|
|
|
230
236
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
231
237
|
}
|
|
232
238
|
|
|
233
|
-
export interface CollectionEntry_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
234
|
-
|
|
235
239
|
export type CollectionEntry_2<TEntity, TRelatedEntity> = CollectionEntry_2$instance<TEntity, TRelatedEntity> & __CollectionEntry_2$views<TEntity, TRelatedEntity>;
|
|
236
240
|
|
|
237
241
|
|
|
238
242
|
export interface ComplexCollectionEntry$instance extends MemberEntry$instance {
|
|
243
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexCollectionEntry: never;
|
|
244
|
+
|
|
239
245
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
240
246
|
|
|
241
247
|
IsModified: boolean;
|
|
242
248
|
readonly [ordinal: number]: ComplexElementEntry;
|
|
243
|
-
GetEnumerator():
|
|
249
|
+
GetEnumerator(): IEnumerator_1<ComplexElementEntry>;
|
|
244
250
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
245
251
|
}
|
|
246
252
|
|
|
@@ -254,15 +260,15 @@ export interface __ComplexCollectionEntry$views {
|
|
|
254
260
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
255
261
|
}
|
|
256
262
|
|
|
257
|
-
export interface ComplexCollectionEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
258
|
-
|
|
259
263
|
export type ComplexCollectionEntry = ComplexCollectionEntry$instance & __ComplexCollectionEntry$views;
|
|
260
264
|
|
|
261
265
|
|
|
262
|
-
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance {
|
|
266
|
+
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
267
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexCollectionEntry_2: never;
|
|
268
|
+
|
|
263
269
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
264
270
|
|
|
265
|
-
readonly EntityEntry:
|
|
271
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
266
272
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
267
273
|
}
|
|
268
274
|
|
|
@@ -276,22 +282,22 @@ export interface __ComplexCollectionEntry_2$views<TEntity, TElement> {
|
|
|
276
282
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
277
283
|
}
|
|
278
284
|
|
|
279
|
-
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
280
|
-
|
|
281
285
|
export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry_2$instance<TEntity, TElement> & __ComplexCollectionEntry_2$views<TEntity, TElement>;
|
|
282
286
|
|
|
283
287
|
|
|
284
288
|
export interface ComplexElementEntry$instance {
|
|
289
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexElementEntry: never;
|
|
290
|
+
|
|
285
291
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
286
292
|
|
|
287
|
-
readonly ComplexCollections:
|
|
288
|
-
readonly ComplexProperties:
|
|
289
|
-
readonly CurrentValue:
|
|
290
|
-
readonly EntityEntry: EntityEntry
|
|
293
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
294
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
295
|
+
readonly CurrentValue: unknown;
|
|
296
|
+
readonly EntityEntry: EntityEntry;
|
|
291
297
|
readonly InternalEntry: InternalComplexEntry;
|
|
292
298
|
IsModified: boolean;
|
|
293
299
|
readonly Metadata: IComplexProperty;
|
|
294
|
-
readonly Properties:
|
|
300
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
295
301
|
State: EntityState;
|
|
296
302
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
297
303
|
ComplexCollection(propertyName: string): ComplexCollectionEntry;
|
|
@@ -311,12 +317,12 @@ export interface __ComplexElementEntry$views {
|
|
|
311
317
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry>;
|
|
312
318
|
}
|
|
313
319
|
|
|
314
|
-
export interface ComplexElementEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {}
|
|
315
|
-
|
|
316
320
|
export type ComplexElementEntry = ComplexElementEntry$instance & __ComplexElementEntry$views;
|
|
317
321
|
|
|
318
322
|
|
|
319
|
-
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance {
|
|
323
|
+
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {
|
|
324
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexElementEntry_2: never;
|
|
325
|
+
|
|
320
326
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
321
327
|
|
|
322
328
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
@@ -343,18 +349,18 @@ export interface __ComplexElementEntry_2$views<TEntity, TComplexProperty> {
|
|
|
343
349
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry>;
|
|
344
350
|
}
|
|
345
351
|
|
|
346
|
-
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {}
|
|
347
|
-
|
|
348
352
|
export type ComplexElementEntry_2<TEntity, TComplexProperty> = ComplexElementEntry_2$instance<TEntity, TComplexProperty> & __ComplexElementEntry_2$views<TEntity, TComplexProperty>;
|
|
349
353
|
|
|
350
354
|
|
|
351
355
|
export interface ComplexPropertyEntry$instance extends MemberEntry$instance {
|
|
356
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexPropertyEntry: never;
|
|
357
|
+
|
|
352
358
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
353
359
|
|
|
354
|
-
readonly ComplexCollections:
|
|
355
|
-
readonly ComplexProperties:
|
|
360
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
361
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
356
362
|
IsModified: boolean;
|
|
357
|
-
readonly Properties:
|
|
363
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
358
364
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
359
365
|
ComplexCollection(propertyName: string): ComplexCollectionEntry;
|
|
360
366
|
ComplexProperty(property: IComplexProperty): ComplexPropertyEntry;
|
|
@@ -373,16 +379,16 @@ export interface __ComplexPropertyEntry$views {
|
|
|
373
379
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
374
380
|
}
|
|
375
381
|
|
|
376
|
-
export interface ComplexPropertyEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
377
|
-
|
|
378
382
|
export type ComplexPropertyEntry = ComplexPropertyEntry$instance & __ComplexPropertyEntry$views;
|
|
379
383
|
|
|
380
384
|
|
|
381
|
-
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance {
|
|
385
|
+
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
386
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexPropertyEntry_2: never;
|
|
387
|
+
|
|
382
388
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
383
389
|
|
|
384
|
-
CurrentValue: TComplexProperty
|
|
385
|
-
readonly EntityEntry:
|
|
390
|
+
CurrentValue: TComplexProperty;
|
|
391
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
386
392
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
387
393
|
ComplexCollection<TElement>(propertyName: string): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
388
394
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
@@ -407,12 +413,12 @@ export interface __ComplexPropertyEntry_2$views<TEntity, TComplexProperty> {
|
|
|
407
413
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
408
414
|
}
|
|
409
415
|
|
|
410
|
-
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
411
|
-
|
|
412
416
|
export type ComplexPropertyEntry_2<TEntity, TComplexProperty> = ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> & __ComplexPropertyEntry_2$views<TEntity, TComplexProperty>;
|
|
413
417
|
|
|
414
418
|
|
|
415
419
|
export interface DetectChangesEventArgs$instance extends EventArgs {
|
|
420
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectChangesEventArgs: never;
|
|
421
|
+
|
|
416
422
|
}
|
|
417
423
|
|
|
418
424
|
|
|
@@ -424,6 +430,8 @@ export const DetectChangesEventArgs: {
|
|
|
424
430
|
export type DetectChangesEventArgs = DetectChangesEventArgs$instance;
|
|
425
431
|
|
|
426
432
|
export interface DetectedChangesEventArgs$instance extends EventArgs {
|
|
433
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectedChangesEventArgs: never;
|
|
434
|
+
|
|
427
435
|
readonly ChangesFound: boolean;
|
|
428
436
|
}
|
|
429
437
|
|
|
@@ -436,6 +444,8 @@ export const DetectedChangesEventArgs: {
|
|
|
436
444
|
export type DetectedChangesEventArgs = DetectedChangesEventArgs$instance;
|
|
437
445
|
|
|
438
446
|
export interface DetectedEntityChangesEventArgs$instance extends DetectedChangesEventArgs {
|
|
447
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectedEntityChangesEventArgs: never;
|
|
448
|
+
|
|
439
449
|
readonly Entry: EntityEntry;
|
|
440
450
|
}
|
|
441
451
|
|
|
@@ -448,6 +458,8 @@ export const DetectedEntityChangesEventArgs: {
|
|
|
448
458
|
export type DetectedEntityChangesEventArgs = DetectedEntityChangesEventArgs$instance;
|
|
449
459
|
|
|
450
460
|
export interface DetectEntityChangesEventArgs$instance extends DetectChangesEventArgs {
|
|
461
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectEntityChangesEventArgs: never;
|
|
462
|
+
|
|
451
463
|
readonly Entry: EntityEntry;
|
|
452
464
|
}
|
|
453
465
|
|
|
@@ -460,23 +472,25 @@ export const DetectEntityChangesEventArgs: {
|
|
|
460
472
|
export type DetectEntityChangesEventArgs = DetectEntityChangesEventArgs$instance;
|
|
461
473
|
|
|
462
474
|
export interface EntityEntry$instance {
|
|
475
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntry: never;
|
|
476
|
+
|
|
463
477
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
464
478
|
|
|
465
|
-
readonly Collections:
|
|
466
|
-
readonly ComplexCollections:
|
|
467
|
-
readonly ComplexProperties:
|
|
479
|
+
readonly Collections: IEnumerable_1<CollectionEntry>;
|
|
480
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
481
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
468
482
|
readonly Context: DbContext;
|
|
469
483
|
readonly CurrentValues: PropertyValues;
|
|
470
484
|
readonly DebugView: DebugView;
|
|
471
|
-
readonly Entity:
|
|
485
|
+
readonly Entity: unknown;
|
|
472
486
|
readonly InternalEntry: InternalEntityEntry;
|
|
473
487
|
readonly IsKeySet: boolean;
|
|
474
|
-
readonly Members:
|
|
488
|
+
readonly Members: IEnumerable_1<MemberEntry>;
|
|
475
489
|
readonly Metadata: IEntityType;
|
|
476
|
-
readonly Navigations:
|
|
490
|
+
readonly Navigations: IEnumerable_1<NavigationEntry>;
|
|
477
491
|
readonly OriginalValues: PropertyValues;
|
|
478
|
-
readonly Properties:
|
|
479
|
-
readonly References:
|
|
492
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
493
|
+
readonly References: IEnumerable_1<ReferenceEntry>;
|
|
480
494
|
State: EntityState;
|
|
481
495
|
Collection(navigation: INavigationBase): CollectionEntry;
|
|
482
496
|
Collection(propertyName: string): CollectionEntry;
|
|
@@ -487,7 +501,7 @@ export interface EntityEntry$instance {
|
|
|
487
501
|
DetectChanges(): void;
|
|
488
502
|
Equals(obj: unknown): boolean;
|
|
489
503
|
GetDatabaseValues(): PropertyValues | undefined;
|
|
490
|
-
GetDatabaseValuesAsync(cancellationToken?: CancellationToken):
|
|
504
|
+
GetDatabaseValuesAsync(cancellationToken?: CancellationToken): Task_1<PropertyValues | undefined>;
|
|
491
505
|
GetHashCode(): int;
|
|
492
506
|
Member(propertyBase: IPropertyBase): MemberEntry;
|
|
493
507
|
Member(propertyName: string): MemberEntry;
|
|
@@ -512,12 +526,12 @@ export interface __EntityEntry$views {
|
|
|
512
526
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
513
527
|
}
|
|
514
528
|
|
|
515
|
-
export interface EntityEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
516
|
-
|
|
517
529
|
export type EntityEntry = EntityEntry$instance & __EntityEntry$views;
|
|
518
530
|
|
|
519
531
|
|
|
520
|
-
export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance {
|
|
532
|
+
export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
533
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntry_1: never;
|
|
534
|
+
|
|
521
535
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
522
536
|
|
|
523
537
|
Collection<TProperty>(navigation: INavigationBase): CollectionEntry_2<TEntity, TProperty>;
|
|
@@ -552,12 +566,12 @@ export interface __EntityEntry_1$views<TEntity> {
|
|
|
552
566
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
553
567
|
}
|
|
554
568
|
|
|
555
|
-
export interface EntityEntry_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
556
|
-
|
|
557
569
|
export type EntityEntry_1<TEntity> = EntityEntry_1$instance<TEntity> & __EntityEntry_1$views<TEntity>;
|
|
558
570
|
|
|
559
571
|
|
|
560
572
|
export interface EntityEntryEventArgs$instance extends EventArgs {
|
|
573
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryEventArgs: never;
|
|
574
|
+
|
|
561
575
|
readonly Entry: EntityEntry;
|
|
562
576
|
}
|
|
563
577
|
|
|
@@ -570,6 +584,8 @@ export const EntityEntryEventArgs: {
|
|
|
570
584
|
export type EntityEntryEventArgs = EntityEntryEventArgs$instance;
|
|
571
585
|
|
|
572
586
|
export interface EntityEntryGraphNode$instance {
|
|
587
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryGraphNode: never;
|
|
588
|
+
|
|
573
589
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
574
590
|
|
|
575
591
|
readonly Entry: EntityEntry;
|
|
@@ -588,12 +604,12 @@ export interface __EntityEntryGraphNode$views {
|
|
|
588
604
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
589
605
|
}
|
|
590
606
|
|
|
591
|
-
export interface EntityEntryGraphNode$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
592
|
-
|
|
593
607
|
export type EntityEntryGraphNode = EntityEntryGraphNode$instance & __EntityEntryGraphNode$views;
|
|
594
608
|
|
|
595
609
|
|
|
596
|
-
export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance {
|
|
610
|
+
export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
611
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryGraphNode_1: never;
|
|
612
|
+
|
|
597
613
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
598
614
|
|
|
599
615
|
NodeState: TState;
|
|
@@ -611,12 +627,12 @@ export interface __EntityEntryGraphNode_1$views<TState> {
|
|
|
611
627
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
612
628
|
}
|
|
613
629
|
|
|
614
|
-
export interface EntityEntryGraphNode_1$instance<TState> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
615
|
-
|
|
616
630
|
export type EntityEntryGraphNode_1<TState> = EntityEntryGraphNode_1$instance<TState> & __EntityEntryGraphNode_1$views<TState>;
|
|
617
631
|
|
|
618
632
|
|
|
619
633
|
export interface EntityStateChangedEventArgs$instance extends EntityEntryEventArgs {
|
|
634
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityStateChangedEventArgs: never;
|
|
635
|
+
|
|
620
636
|
readonly NewState: EntityState;
|
|
621
637
|
readonly OldState: EntityState;
|
|
622
638
|
}
|
|
@@ -630,6 +646,8 @@ export const EntityStateChangedEventArgs: {
|
|
|
630
646
|
export type EntityStateChangedEventArgs = EntityStateChangedEventArgs$instance;
|
|
631
647
|
|
|
632
648
|
export interface EntityStateChangingEventArgs$instance extends EntityEntryEventArgs {
|
|
649
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityStateChangingEventArgs: never;
|
|
650
|
+
|
|
633
651
|
readonly NewState: EntityState;
|
|
634
652
|
readonly OldState: EntityState;
|
|
635
653
|
}
|
|
@@ -643,6 +661,8 @@ export const EntityStateChangingEventArgs: {
|
|
|
643
661
|
export type EntityStateChangingEventArgs = EntityStateChangingEventArgs$instance;
|
|
644
662
|
|
|
645
663
|
export interface EntityTrackedEventArgs$instance extends EntityEntryEventArgs {
|
|
664
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityTrackedEventArgs: never;
|
|
665
|
+
|
|
646
666
|
readonly FromQuery: boolean;
|
|
647
667
|
}
|
|
648
668
|
|
|
@@ -655,6 +675,8 @@ export const EntityTrackedEventArgs: {
|
|
|
655
675
|
export type EntityTrackedEventArgs = EntityTrackedEventArgs$instance;
|
|
656
676
|
|
|
657
677
|
export interface EntityTrackingEventArgs$instance extends EntityEntryEventArgs {
|
|
678
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityTrackingEventArgs: never;
|
|
679
|
+
|
|
658
680
|
readonly FromQuery: boolean;
|
|
659
681
|
readonly State: EntityState;
|
|
660
682
|
}
|
|
@@ -668,6 +690,8 @@ export const EntityTrackingEventArgs: {
|
|
|
668
690
|
export type EntityTrackingEventArgs = EntityTrackingEventArgs$instance;
|
|
669
691
|
|
|
670
692
|
export interface EntryCurrentValueComparer_1$instance<TProperty> {
|
|
693
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntryCurrentValueComparer_1: never;
|
|
694
|
+
|
|
671
695
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
672
696
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
673
697
|
|
|
@@ -685,6 +709,8 @@ export const EntryCurrentValueComparer_1: {
|
|
|
685
709
|
export type EntryCurrentValueComparer_1<TProperty> = EntryCurrentValueComparer_1$instance<TProperty>;
|
|
686
710
|
|
|
687
711
|
export interface GeometryValueComparer_1$instance<TGeometry> extends ValueComparer_1<TGeometry> {
|
|
712
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_GeometryValueComparer_1: never;
|
|
713
|
+
|
|
688
714
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
689
715
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
690
716
|
|
|
@@ -698,7 +724,9 @@ export const GeometryValueComparer_1: {
|
|
|
698
724
|
|
|
699
725
|
export type GeometryValueComparer_1<TGeometry> = GeometryValueComparer_1$instance<TGeometry>;
|
|
700
726
|
|
|
701
|
-
export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<
|
|
727
|
+
export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<IEnumerable_1<Nullable_1<TElement>>>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer_1<unknown>, System_Collections_Generic_Internal.IEqualityComparer_1<IEnumerable_1<Nullable_1<TElement>>> {
|
|
728
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfNullableValueTypesComparer_2: never;
|
|
729
|
+
|
|
702
730
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
703
731
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
704
732
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -716,12 +744,12 @@ export interface __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElem
|
|
|
716
744
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
717
745
|
}
|
|
718
746
|
|
|
719
|
-
export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<IEnumerable__System_Collections_Generic<Nullable<TElement>>> {}
|
|
720
|
-
|
|
721
747
|
export type ListOfNullableValueTypesComparer_2<TConcreteList, TElement> = ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
722
748
|
|
|
723
749
|
|
|
724
|
-
export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends ValueComparer_1<unknown> {
|
|
750
|
+
export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends ValueComparer_1<unknown>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer_1<unknown> {
|
|
751
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfReferenceTypesComparer_2: never;
|
|
752
|
+
|
|
725
753
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
726
754
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
727
755
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -739,12 +767,12 @@ export interface __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>
|
|
|
739
767
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
740
768
|
}
|
|
741
769
|
|
|
742
|
-
export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown> {}
|
|
743
|
-
|
|
744
770
|
export type ListOfReferenceTypesComparer_2<TConcreteList, TElement> = ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> & __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>;
|
|
745
771
|
|
|
746
772
|
|
|
747
|
-
export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<
|
|
773
|
+
export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<IEnumerable_1<TElement>>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer_1<unknown>, System_Collections_Generic_Internal.IEqualityComparer_1<IEnumerable_1<TElement>> {
|
|
774
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfValueTypesComparer_2: never;
|
|
775
|
+
|
|
748
776
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
749
777
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
750
778
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -762,12 +790,12 @@ export interface __ListOfValueTypesComparer_2$views<TConcreteList, TElement exte
|
|
|
762
790
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
763
791
|
}
|
|
764
792
|
|
|
765
|
-
export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>, System_Collections_Generic_Internal.IEqualityComparer<unknown>, System_Collections_Generic_Internal.IEqualityComparer<IEnumerable__System_Collections_Generic<TElement>> {}
|
|
766
|
-
|
|
767
793
|
export type ListOfValueTypesComparer_2<TConcreteList, TElement> = ListOfValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
768
794
|
|
|
769
795
|
|
|
770
796
|
export interface LocalView_1$instance<TEntity> {
|
|
797
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_LocalView_1: never;
|
|
798
|
+
|
|
771
799
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
772
800
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
773
801
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -784,22 +812,22 @@ export interface LocalView_1$instance<TEntity> {
|
|
|
784
812
|
CopyTo(array: TEntity[], arrayIndex: int): void;
|
|
785
813
|
FindEntry<TKey>(keyValue: TKey): EntityEntry_1<TEntity> | undefined;
|
|
786
814
|
FindEntry<TProperty>(propertyName: string, propertyValue: TProperty): EntityEntry_1<TEntity> | undefined;
|
|
787
|
-
FindEntry(propertyNames:
|
|
815
|
+
FindEntry(propertyNames: IEnumerable_1<System_Internal.String>, propertyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
788
816
|
FindEntry<TProperty>(property: IProperty, propertyValue: TProperty): EntityEntry_1<TEntity> | undefined;
|
|
789
|
-
FindEntry(properties:
|
|
790
|
-
FindEntryUntyped(keyValues:
|
|
791
|
-
GetEntries<TProperty>(propertyName: string, propertyValue: TProperty):
|
|
792
|
-
GetEntries(propertyNames:
|
|
793
|
-
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty):
|
|
794
|
-
GetEntries(properties:
|
|
795
|
-
GetEnumerator():
|
|
817
|
+
FindEntry(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
818
|
+
FindEntryUntyped(keyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
819
|
+
GetEntries<TProperty>(propertyName: string, propertyValue: TProperty): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
820
|
+
GetEntries(propertyNames: IEnumerable_1<System_Internal.String>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
821
|
+
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
822
|
+
GetEntries(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
823
|
+
GetEnumerator(): IEnumerator_1<TEntity>;
|
|
796
824
|
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
797
825
|
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
798
826
|
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
799
827
|
Remove(item: TEntity): boolean;
|
|
800
828
|
Reset(): void;
|
|
801
|
-
ToBindingList():
|
|
802
|
-
ToObservableCollection():
|
|
829
|
+
ToBindingList(): BindingList_1<TEntity>;
|
|
830
|
+
ToObservableCollection(): ObservableCollection_1<TEntity>;
|
|
803
831
|
}
|
|
804
832
|
|
|
805
833
|
|
|
@@ -811,13 +839,15 @@ export const LocalView_1: {
|
|
|
811
839
|
export type LocalView_1<TEntity> = LocalView_1$instance<TEntity>;
|
|
812
840
|
|
|
813
841
|
export interface MemberEntry$instance {
|
|
842
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_MemberEntry: never;
|
|
843
|
+
|
|
814
844
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
815
845
|
|
|
816
|
-
CurrentValue: IEnumerable |
|
|
817
|
-
readonly EntityEntry: EntityEntry
|
|
846
|
+
CurrentValue: IEnumerable | unknown;
|
|
847
|
+
readonly EntityEntry: EntityEntry;
|
|
818
848
|
readonly InternalEntry: IInternalEntry;
|
|
819
849
|
IsModified: boolean;
|
|
820
|
-
readonly Metadata:
|
|
850
|
+
readonly Metadata: IComplexProperty | IPropertyBase;
|
|
821
851
|
Equals(obj: unknown): boolean;
|
|
822
852
|
GetHashCode(): int;
|
|
823
853
|
ToString(): string | undefined;
|
|
@@ -832,12 +862,12 @@ export interface __MemberEntry$views {
|
|
|
832
862
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
833
863
|
}
|
|
834
864
|
|
|
835
|
-
export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
836
|
-
|
|
837
865
|
export type MemberEntry = MemberEntry$instance & __MemberEntry$views;
|
|
838
866
|
|
|
839
867
|
|
|
840
868
|
export interface NavigationEntry$instance extends MemberEntry$instance {
|
|
869
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_NavigationEntry: never;
|
|
870
|
+
|
|
841
871
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
842
872
|
|
|
843
873
|
readonly InternalEntityEntry: InternalEntityEntry;
|
|
@@ -858,12 +888,12 @@ export interface __NavigationEntry$views {
|
|
|
858
888
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
859
889
|
}
|
|
860
890
|
|
|
861
|
-
export interface NavigationEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
862
|
-
|
|
863
891
|
export type NavigationEntry = NavigationEntry$instance & __NavigationEntry$views;
|
|
864
892
|
|
|
865
893
|
|
|
866
|
-
export interface ObservableCollectionListSource_1$instance<T> extends
|
|
894
|
+
export interface ObservableCollectionListSource_1$instance<T> extends ObservableCollection_1<T> {
|
|
895
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ObservableCollectionListSource_1: never;
|
|
896
|
+
|
|
867
897
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
868
898
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
869
899
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -881,14 +911,16 @@ export interface ObservableCollectionListSource_1$instance<T> extends Observable
|
|
|
881
911
|
|
|
882
912
|
export const ObservableCollectionListSource_1: {
|
|
883
913
|
new<T>(): ObservableCollectionListSource_1<T>;
|
|
884
|
-
new<T>(collection:
|
|
885
|
-
new<T>(list:
|
|
914
|
+
new<T>(collection: IEnumerable_1<T>): ObservableCollectionListSource_1<T>;
|
|
915
|
+
new<T>(list: List_1<T>): ObservableCollectionListSource_1<T>;
|
|
886
916
|
};
|
|
887
917
|
|
|
888
918
|
|
|
889
919
|
export type ObservableCollectionListSource_1<T> = ObservableCollectionListSource_1$instance<T>;
|
|
890
920
|
|
|
891
921
|
export interface ObservableHashSet_1$instance<T> {
|
|
922
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ObservableHashSet_1: never;
|
|
923
|
+
|
|
892
924
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
893
925
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
894
926
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -898,7 +930,7 @@ export interface ObservableHashSet_1$instance<T> {
|
|
|
898
930
|
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
899
931
|
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanging: never;
|
|
900
932
|
|
|
901
|
-
readonly Comparer:
|
|
933
|
+
readonly Comparer: IEqualityComparer_1<T>;
|
|
902
934
|
readonly Count: int;
|
|
903
935
|
readonly IsReadOnly: boolean;
|
|
904
936
|
Add(item: T): boolean;
|
|
@@ -907,42 +939,44 @@ export interface ObservableHashSet_1$instance<T> {
|
|
|
907
939
|
CopyTo(array: T[], arrayIndex: int): void;
|
|
908
940
|
CopyTo(array: T[]): void;
|
|
909
941
|
CopyTo(array: T[], arrayIndex: int, count: int): void;
|
|
910
|
-
ExceptWith(other:
|
|
942
|
+
ExceptWith(other: IEnumerable_1<T>): void;
|
|
911
943
|
GetEnumerator(): HashSet_1$Enumerator<T>;
|
|
912
|
-
IntersectWith(other:
|
|
913
|
-
IsProperSubsetOf(other:
|
|
914
|
-
IsProperSupersetOf(other:
|
|
915
|
-
IsSubsetOf(other:
|
|
916
|
-
IsSupersetOf(other:
|
|
944
|
+
IntersectWith(other: IEnumerable_1<T>): void;
|
|
945
|
+
IsProperSubsetOf(other: IEnumerable_1<T>): boolean;
|
|
946
|
+
IsProperSupersetOf(other: IEnumerable_1<T>): boolean;
|
|
947
|
+
IsSubsetOf(other: IEnumerable_1<T>): boolean;
|
|
948
|
+
IsSupersetOf(other: IEnumerable_1<T>): boolean;
|
|
917
949
|
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
918
950
|
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
919
951
|
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
920
|
-
Overlaps(other:
|
|
952
|
+
Overlaps(other: IEnumerable_1<T>): boolean;
|
|
921
953
|
Remove(item: T): boolean;
|
|
922
|
-
RemoveWhere(match:
|
|
923
|
-
SetEquals(other:
|
|
924
|
-
SymmetricExceptWith(other:
|
|
954
|
+
RemoveWhere(match: Predicate_1<T>): int;
|
|
955
|
+
SetEquals(other: IEnumerable_1<T>): boolean;
|
|
956
|
+
SymmetricExceptWith(other: IEnumerable_1<T>): void;
|
|
925
957
|
TrimExcess(): void;
|
|
926
|
-
UnionWith(other:
|
|
958
|
+
UnionWith(other: IEnumerable_1<T>): void;
|
|
927
959
|
}
|
|
928
960
|
|
|
929
961
|
|
|
930
962
|
export const ObservableHashSet_1: {
|
|
931
963
|
new<T>(): ObservableHashSet_1<T>;
|
|
932
|
-
new<T>(comparer:
|
|
933
|
-
new<T>(collection:
|
|
934
|
-
new<T>(collection:
|
|
964
|
+
new<T>(comparer: IEqualityComparer_1<T>): ObservableHashSet_1<T>;
|
|
965
|
+
new<T>(collection: IEnumerable_1<T>): ObservableHashSet_1<T>;
|
|
966
|
+
new<T>(collection: IEnumerable_1<T>, comparer: IEqualityComparer_1<T>): ObservableHashSet_1<T>;
|
|
935
967
|
};
|
|
936
968
|
|
|
937
969
|
|
|
938
970
|
export type ObservableHashSet_1<T> = ObservableHashSet_1$instance<T>;
|
|
939
971
|
|
|
940
972
|
export interface PropertyEntry$instance extends MemberEntry$instance {
|
|
973
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyEntry: never;
|
|
974
|
+
|
|
941
975
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
942
976
|
|
|
943
977
|
IsModified: boolean;
|
|
944
978
|
IsTemporary: boolean;
|
|
945
|
-
OriginalValue:
|
|
979
|
+
OriginalValue: unknown;
|
|
946
980
|
}
|
|
947
981
|
|
|
948
982
|
|
|
@@ -955,16 +989,16 @@ export interface __PropertyEntry$views {
|
|
|
955
989
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
956
990
|
}
|
|
957
991
|
|
|
958
|
-
export interface PropertyEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
959
|
-
|
|
960
992
|
export type PropertyEntry = PropertyEntry$instance & __PropertyEntry$views;
|
|
961
993
|
|
|
962
994
|
|
|
963
|
-
export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance {
|
|
995
|
+
export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
996
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyEntry_2: never;
|
|
997
|
+
|
|
964
998
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
965
999
|
|
|
966
|
-
CurrentValue: TProperty
|
|
967
|
-
readonly EntityEntry:
|
|
1000
|
+
CurrentValue: TProperty;
|
|
1001
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
968
1002
|
}
|
|
969
1003
|
|
|
970
1004
|
|
|
@@ -977,15 +1011,15 @@ export interface __PropertyEntry_2$views<TEntity, TProperty> {
|
|
|
977
1011
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
978
1012
|
}
|
|
979
1013
|
|
|
980
|
-
export interface PropertyEntry_2$instance<TEntity, TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
981
|
-
|
|
982
1014
|
export type PropertyEntry_2<TEntity, TProperty> = PropertyEntry_2$instance<TEntity, TProperty> & __PropertyEntry_2$views<TEntity, TProperty>;
|
|
983
1015
|
|
|
984
1016
|
|
|
985
1017
|
export interface PropertyValues$instance {
|
|
986
|
-
readonly
|
|
1018
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyValues: never;
|
|
1019
|
+
|
|
1020
|
+
readonly ComplexCollectionProperties: IReadOnlyList_1<IComplexProperty>;
|
|
987
1021
|
readonly InternalEntry: InternalEntryBase;
|
|
988
|
-
readonly Properties:
|
|
1022
|
+
readonly Properties: IReadOnlyList_1<IProperty>;
|
|
989
1023
|
readonly StructuralType: ITypeBase;
|
|
990
1024
|
Clone(): PropertyValues;
|
|
991
1025
|
Equals(obj: unknown): boolean;
|
|
@@ -1000,7 +1034,7 @@ export interface PropertyValues$instance {
|
|
|
1000
1034
|
set_Item(complexProperty: IComplexProperty, value: IList | undefined): void;
|
|
1001
1035
|
SetValues(obj: unknown): void;
|
|
1002
1036
|
SetValues(propertyValues: PropertyValues): void;
|
|
1003
|
-
SetValues<TProperty>(values:
|
|
1037
|
+
SetValues<TProperty>(values: IDictionary_2<System_Internal.String, TProperty>): void;
|
|
1004
1038
|
ToObject(): unknown;
|
|
1005
1039
|
ToString(): string | undefined;
|
|
1006
1040
|
TryGetValue<TValue>(propertyName: string, value: TValue): boolean;
|
|
@@ -1014,10 +1048,12 @@ export const PropertyValues: (abstract new(internalEntry: InternalEntryBase) =>
|
|
|
1014
1048
|
export type PropertyValues = PropertyValues$instance;
|
|
1015
1049
|
|
|
1016
1050
|
export interface ReferenceEntry$instance extends NavigationEntry$instance {
|
|
1051
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ReferenceEntry: never;
|
|
1052
|
+
|
|
1017
1053
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1018
1054
|
|
|
1019
1055
|
IsModified: boolean;
|
|
1020
|
-
readonly TargetEntry: EntityEntry | undefined
|
|
1056
|
+
readonly TargetEntry: EntityEntry | undefined;
|
|
1021
1057
|
GetTargetEntry(): InternalEntityEntry | undefined;
|
|
1022
1058
|
Load(): void;
|
|
1023
1059
|
Load(options: LoadOptions): void;
|
|
@@ -1037,16 +1073,16 @@ export interface __ReferenceEntry$views {
|
|
|
1037
1073
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
1038
1074
|
}
|
|
1039
1075
|
|
|
1040
|
-
export interface ReferenceEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
1041
|
-
|
|
1042
1076
|
export type ReferenceEntry = ReferenceEntry$instance & __ReferenceEntry$views;
|
|
1043
1077
|
|
|
1044
1078
|
|
|
1045
|
-
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance {
|
|
1079
|
+
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
1080
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ReferenceEntry_2: never;
|
|
1081
|
+
|
|
1046
1082
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1047
1083
|
|
|
1048
|
-
CurrentValue: TProperty
|
|
1049
|
-
readonly EntityEntry:
|
|
1084
|
+
CurrentValue: TProperty;
|
|
1085
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
1050
1086
|
Query(): IQueryable;
|
|
1051
1087
|
}
|
|
1052
1088
|
|
|
@@ -1061,12 +1097,12 @@ export interface __ReferenceEntry_2$views<TEntity, TProperty> {
|
|
|
1061
1097
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
1062
1098
|
}
|
|
1063
1099
|
|
|
1064
|
-
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
1065
|
-
|
|
1066
1100
|
export type ReferenceEntry_2<TEntity, TProperty> = ReferenceEntry_2$instance<TEntity, TProperty> & __ReferenceEntry_2$views<TEntity, TProperty>;
|
|
1067
1101
|
|
|
1068
1102
|
|
|
1069
1103
|
export interface ValueComparer$instance {
|
|
1104
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer: never;
|
|
1105
|
+
|
|
1070
1106
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1071
1107
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1072
1108
|
|
|
@@ -1087,7 +1123,7 @@ export interface ValueComparer$instance {
|
|
|
1087
1123
|
export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression) => ValueComparer) & {
|
|
1088
1124
|
readonly HashCodeAddMethod: MethodInfo;
|
|
1089
1125
|
readonly ToHashCodeMethod: MethodInfo;
|
|
1090
|
-
readonly BoolIdentity:
|
|
1126
|
+
readonly BoolIdentity: Expression_1<Func_2<System_Internal.Boolean, System_Internal.Boolean>>;
|
|
1091
1127
|
Add(hash: HashCode, code: int): HashCode;
|
|
1092
1128
|
CreateDefault<T>(favorStructuralComparisons: boolean): ValueComparer;
|
|
1093
1129
|
CreateDefault(type: Type, favorStructuralComparisons: boolean): ValueComparer;
|
|
@@ -1098,13 +1134,15 @@ export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, ha
|
|
|
1098
1134
|
export type ValueComparer = ValueComparer$instance;
|
|
1099
1135
|
|
|
1100
1136
|
export interface ValueComparer_1$instance<T> extends ValueComparer {
|
|
1137
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer_1: never;
|
|
1138
|
+
|
|
1101
1139
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1102
1140
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1103
1141
|
|
|
1104
|
-
readonly EqualsExpression:
|
|
1105
|
-
readonly HashCodeExpression:
|
|
1142
|
+
readonly EqualsExpression: Expression_1<Func_3<T | undefined, T | undefined, System_Internal.Boolean>>;
|
|
1143
|
+
readonly HashCodeExpression: Expression_1<Func_2<T, System_Internal.Int32>>;
|
|
1106
1144
|
readonly ObjectEqualsExpression: LambdaExpression;
|
|
1107
|
-
readonly SnapshotExpression:
|
|
1145
|
+
readonly SnapshotExpression: Expression_1<Func_2<T, T>>;
|
|
1108
1146
|
readonly Type: Type;
|
|
1109
1147
|
Equals(left: unknown, right: unknown): boolean;
|
|
1110
1148
|
Equals(left: T, right: T): boolean;
|
|
@@ -1117,11 +1155,11 @@ export interface ValueComparer_1$instance<T> extends ValueComparer {
|
|
|
1117
1155
|
|
|
1118
1156
|
export const ValueComparer_1: {
|
|
1119
1157
|
new<T>(favorStructuralComparisons: boolean): ValueComparer_1<T>;
|
|
1120
|
-
new<T>(equalsExpression:
|
|
1121
|
-
new<T>(equalsExpression:
|
|
1122
|
-
CreateDefaultEqualsExpression<T>():
|
|
1123
|
-
CreateDefaultHashCodeExpression<T>(favorStructuralComparisons: boolean):
|
|
1124
|
-
CreateDefaultSnapshotExpression<T>(favorStructuralComparisons: boolean):
|
|
1158
|
+
new<T>(equalsExpression: Expression_1<Func_3<T, T, System_Internal.Boolean>>, hashCodeExpression: Expression_1<Func_2<T, System_Internal.Int32>>): ValueComparer_1<T>;
|
|
1159
|
+
new<T>(equalsExpression: Expression_1<Func_3<T, T, System_Internal.Boolean>>, hashCodeExpression: Expression_1<Func_2<T, System_Internal.Int32>>, snapshotExpression: Expression_1<Func_2<T, T>>): ValueComparer_1<T>;
|
|
1160
|
+
CreateDefaultEqualsExpression<T>(): Expression_1<Func_3<T | undefined, T | undefined, System_Internal.Boolean>>;
|
|
1161
|
+
CreateDefaultHashCodeExpression<T>(favorStructuralComparisons: boolean): Expression_1<Func_2<T, System_Internal.Int32>>;
|
|
1162
|
+
CreateDefaultSnapshotExpression<T>(favorStructuralComparisons: boolean): Expression_1<Func_2<T, T>>;
|
|
1125
1163
|
};
|
|
1126
1164
|
|
|
1127
1165
|
|