@tsonic/efcore 10.0.5 → 10.0.9
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 +601 -531
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +203 -166
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +388 -327
- 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 +221 -155
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +141 -123
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1275 -1307
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +553 -519
- 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 +26 -22
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1576 -1343
- 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 +359 -242
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +53 -37
- 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
|
-
export interface CollectionEntry$instance extends NavigationEntry$instance {
|
|
188
|
+
export interface CollectionEntry$instance extends NavigationEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
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,16 @@ 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
|
-
export interface ComplexCollectionEntry$instance extends MemberEntry$instance {
|
|
242
|
+
export interface ComplexCollectionEntry$instance extends MemberEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
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
|
-
|
|
243
|
-
GetEnumerator(): IEnumerator<ComplexElementEntry>;
|
|
248
|
+
GetEnumerator(): IEnumerator_1<ComplexElementEntry>;
|
|
244
249
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
245
250
|
}
|
|
246
251
|
|
|
@@ -254,15 +259,15 @@ export interface __ComplexCollectionEntry$views {
|
|
|
254
259
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
255
260
|
}
|
|
256
261
|
|
|
257
|
-
export
|
|
262
|
+
export type ComplexCollectionEntry = ComplexCollectionEntry$instance & __ComplexCollectionEntry$views & { readonly [ordinal: number]: ComplexElementEntry; };
|
|
258
263
|
|
|
259
|
-
export type ComplexCollectionEntry = ComplexCollectionEntry$instance & __ComplexCollectionEntry$views;
|
|
260
264
|
|
|
265
|
+
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
266
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexCollectionEntry_2: never;
|
|
261
267
|
|
|
262
|
-
export interface ComplexCollectionEntry_2$instance<TEntity, TElement> extends ComplexCollectionEntry$instance {
|
|
263
268
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
264
269
|
|
|
265
|
-
readonly EntityEntry:
|
|
270
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
266
271
|
GetOriginalEntry(ordinal: int): ComplexElementEntry;
|
|
267
272
|
}
|
|
268
273
|
|
|
@@ -276,22 +281,22 @@ export interface __ComplexCollectionEntry_2$views<TEntity, TElement> {
|
|
|
276
281
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
277
282
|
}
|
|
278
283
|
|
|
279
|
-
export
|
|
284
|
+
export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry_2$instance<TEntity, TElement> & __ComplexCollectionEntry_2$views<TEntity, TElement> & { readonly [ordinal: number]: ComplexElementEntry_2<TEntity, TElement>; };
|
|
280
285
|
|
|
281
|
-
export type ComplexCollectionEntry_2<TEntity, TElement> = ComplexCollectionEntry_2$instance<TEntity, TElement> & __ComplexCollectionEntry_2$views<TEntity, TElement>;
|
|
282
286
|
|
|
287
|
+
export interface ComplexElementEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {
|
|
288
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexElementEntry: never;
|
|
283
289
|
|
|
284
|
-
export interface ComplexElementEntry$instance {
|
|
285
290
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
286
291
|
|
|
287
|
-
readonly ComplexCollections:
|
|
288
|
-
readonly ComplexProperties:
|
|
289
|
-
readonly CurrentValue:
|
|
290
|
-
readonly EntityEntry: EntityEntry
|
|
292
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
293
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
294
|
+
readonly CurrentValue: unknown;
|
|
295
|
+
readonly EntityEntry: EntityEntry;
|
|
291
296
|
readonly InternalEntry: InternalComplexEntry;
|
|
292
297
|
IsModified: boolean;
|
|
293
298
|
readonly Metadata: IComplexProperty;
|
|
294
|
-
readonly Properties:
|
|
299
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
295
300
|
State: EntityState;
|
|
296
301
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
297
302
|
ComplexCollection(propertyName: string): ComplexCollectionEntry;
|
|
@@ -311,12 +316,12 @@ export interface __ComplexElementEntry$views {
|
|
|
311
316
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry>;
|
|
312
317
|
}
|
|
313
318
|
|
|
314
|
-
export interface ComplexElementEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {}
|
|
315
|
-
|
|
316
319
|
export type ComplexElementEntry = ComplexElementEntry$instance & __ComplexElementEntry$views;
|
|
317
320
|
|
|
318
321
|
|
|
319
|
-
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance {
|
|
322
|
+
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends ComplexElementEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {
|
|
323
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexElementEntry_2: never;
|
|
324
|
+
|
|
320
325
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
321
326
|
|
|
322
327
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
@@ -343,18 +348,18 @@ export interface __ComplexElementEntry_2$views<TEntity, TComplexProperty> {
|
|
|
343
348
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry>;
|
|
344
349
|
}
|
|
345
350
|
|
|
346
|
-
export interface ComplexElementEntry_2$instance<TEntity, TComplexProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalComplexEntry> {}
|
|
347
|
-
|
|
348
351
|
export type ComplexElementEntry_2<TEntity, TComplexProperty> = ComplexElementEntry_2$instance<TEntity, TComplexProperty> & __ComplexElementEntry_2$views<TEntity, TComplexProperty>;
|
|
349
352
|
|
|
350
353
|
|
|
351
|
-
export interface ComplexPropertyEntry$instance extends MemberEntry$instance {
|
|
354
|
+
export interface ComplexPropertyEntry$instance extends MemberEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
355
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexPropertyEntry: never;
|
|
356
|
+
|
|
352
357
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
353
358
|
|
|
354
|
-
readonly ComplexCollections:
|
|
355
|
-
readonly ComplexProperties:
|
|
359
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
360
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
356
361
|
IsModified: boolean;
|
|
357
|
-
readonly Properties:
|
|
362
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
358
363
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
359
364
|
ComplexCollection(propertyName: string): ComplexCollectionEntry;
|
|
360
365
|
ComplexProperty(property: IComplexProperty): ComplexPropertyEntry;
|
|
@@ -373,16 +378,16 @@ export interface __ComplexPropertyEntry$views {
|
|
|
373
378
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
374
379
|
}
|
|
375
380
|
|
|
376
|
-
export interface ComplexPropertyEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
377
|
-
|
|
378
381
|
export type ComplexPropertyEntry = ComplexPropertyEntry$instance & __ComplexPropertyEntry$views;
|
|
379
382
|
|
|
380
383
|
|
|
381
|
-
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance {
|
|
384
|
+
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends ComplexPropertyEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
385
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ComplexPropertyEntry_2: never;
|
|
386
|
+
|
|
382
387
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
383
388
|
|
|
384
|
-
CurrentValue: TComplexProperty
|
|
385
|
-
readonly EntityEntry:
|
|
389
|
+
CurrentValue: TComplexProperty;
|
|
390
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
386
391
|
ComplexCollection<TElement>(property: IComplexProperty): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
387
392
|
ComplexCollection<TElement>(propertyName: string): ComplexCollectionEntry_2<TEntity, TElement>;
|
|
388
393
|
ComplexCollection(property: IComplexProperty): ComplexCollectionEntry;
|
|
@@ -407,12 +412,12 @@ export interface __ComplexPropertyEntry_2$views<TEntity, TComplexProperty> {
|
|
|
407
412
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
408
413
|
}
|
|
409
414
|
|
|
410
|
-
export interface ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
411
|
-
|
|
412
415
|
export type ComplexPropertyEntry_2<TEntity, TComplexProperty> = ComplexPropertyEntry_2$instance<TEntity, TComplexProperty> & __ComplexPropertyEntry_2$views<TEntity, TComplexProperty>;
|
|
413
416
|
|
|
414
417
|
|
|
415
418
|
export interface DetectChangesEventArgs$instance extends EventArgs {
|
|
419
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectChangesEventArgs: never;
|
|
420
|
+
|
|
416
421
|
}
|
|
417
422
|
|
|
418
423
|
|
|
@@ -424,6 +429,8 @@ export const DetectChangesEventArgs: {
|
|
|
424
429
|
export type DetectChangesEventArgs = DetectChangesEventArgs$instance;
|
|
425
430
|
|
|
426
431
|
export interface DetectedChangesEventArgs$instance extends EventArgs {
|
|
432
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectedChangesEventArgs: never;
|
|
433
|
+
|
|
427
434
|
readonly ChangesFound: boolean;
|
|
428
435
|
}
|
|
429
436
|
|
|
@@ -436,6 +443,8 @@ export const DetectedChangesEventArgs: {
|
|
|
436
443
|
export type DetectedChangesEventArgs = DetectedChangesEventArgs$instance;
|
|
437
444
|
|
|
438
445
|
export interface DetectedEntityChangesEventArgs$instance extends DetectedChangesEventArgs {
|
|
446
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectedEntityChangesEventArgs: never;
|
|
447
|
+
|
|
439
448
|
readonly Entry: EntityEntry;
|
|
440
449
|
}
|
|
441
450
|
|
|
@@ -448,6 +457,8 @@ export const DetectedEntityChangesEventArgs: {
|
|
|
448
457
|
export type DetectedEntityChangesEventArgs = DetectedEntityChangesEventArgs$instance;
|
|
449
458
|
|
|
450
459
|
export interface DetectEntityChangesEventArgs$instance extends DetectChangesEventArgs {
|
|
460
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_DetectEntityChangesEventArgs: never;
|
|
461
|
+
|
|
451
462
|
readonly Entry: EntityEntry;
|
|
452
463
|
}
|
|
453
464
|
|
|
@@ -459,24 +470,26 @@ export const DetectEntityChangesEventArgs: {
|
|
|
459
470
|
|
|
460
471
|
export type DetectEntityChangesEventArgs = DetectEntityChangesEventArgs$instance;
|
|
461
472
|
|
|
462
|
-
export interface EntityEntry$instance {
|
|
473
|
+
export interface EntityEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
474
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntry: never;
|
|
475
|
+
|
|
463
476
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
464
477
|
|
|
465
|
-
readonly Collections:
|
|
466
|
-
readonly ComplexCollections:
|
|
467
|
-
readonly ComplexProperties:
|
|
478
|
+
readonly Collections: IEnumerable_1<CollectionEntry>;
|
|
479
|
+
readonly ComplexCollections: IEnumerable_1<ComplexCollectionEntry>;
|
|
480
|
+
readonly ComplexProperties: IEnumerable_1<ComplexPropertyEntry>;
|
|
468
481
|
readonly Context: DbContext;
|
|
469
482
|
readonly CurrentValues: PropertyValues;
|
|
470
483
|
readonly DebugView: DebugView;
|
|
471
|
-
readonly Entity:
|
|
484
|
+
readonly Entity: unknown;
|
|
472
485
|
readonly InternalEntry: InternalEntityEntry;
|
|
473
486
|
readonly IsKeySet: boolean;
|
|
474
|
-
readonly Members:
|
|
487
|
+
readonly Members: IEnumerable_1<MemberEntry>;
|
|
475
488
|
readonly Metadata: IEntityType;
|
|
476
|
-
readonly Navigations:
|
|
489
|
+
readonly Navigations: IEnumerable_1<NavigationEntry>;
|
|
477
490
|
readonly OriginalValues: PropertyValues;
|
|
478
|
-
readonly Properties:
|
|
479
|
-
readonly References:
|
|
491
|
+
readonly Properties: IEnumerable_1<PropertyEntry>;
|
|
492
|
+
readonly References: IEnumerable_1<ReferenceEntry>;
|
|
480
493
|
State: EntityState;
|
|
481
494
|
Collection(navigation: INavigationBase): CollectionEntry;
|
|
482
495
|
Collection(propertyName: string): CollectionEntry;
|
|
@@ -487,7 +500,7 @@ export interface EntityEntry$instance {
|
|
|
487
500
|
DetectChanges(): void;
|
|
488
501
|
Equals(obj: unknown): boolean;
|
|
489
502
|
GetDatabaseValues(): PropertyValues | undefined;
|
|
490
|
-
GetDatabaseValuesAsync(cancellationToken?: CancellationToken):
|
|
503
|
+
GetDatabaseValuesAsync(cancellationToken?: CancellationToken): Task_1<PropertyValues | undefined>;
|
|
491
504
|
GetHashCode(): int;
|
|
492
505
|
Member(propertyBase: IPropertyBase): MemberEntry;
|
|
493
506
|
Member(propertyName: string): MemberEntry;
|
|
@@ -512,12 +525,12 @@ export interface __EntityEntry$views {
|
|
|
512
525
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
513
526
|
}
|
|
514
527
|
|
|
515
|
-
export interface EntityEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
516
|
-
|
|
517
528
|
export type EntityEntry = EntityEntry$instance & __EntityEntry$views;
|
|
518
529
|
|
|
519
530
|
|
|
520
|
-
export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance {
|
|
531
|
+
export interface EntityEntry_1$instance<TEntity> extends EntityEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
532
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntry_1: never;
|
|
533
|
+
|
|
521
534
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
522
535
|
|
|
523
536
|
Collection<TProperty>(navigation: INavigationBase): CollectionEntry_2<TEntity, TProperty>;
|
|
@@ -552,12 +565,12 @@ export interface __EntityEntry_1$views<TEntity> {
|
|
|
552
565
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
553
566
|
}
|
|
554
567
|
|
|
555
|
-
export interface EntityEntry_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
556
|
-
|
|
557
568
|
export type EntityEntry_1<TEntity> = EntityEntry_1$instance<TEntity> & __EntityEntry_1$views<TEntity>;
|
|
558
569
|
|
|
559
570
|
|
|
560
571
|
export interface EntityEntryEventArgs$instance extends EventArgs {
|
|
572
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryEventArgs: never;
|
|
573
|
+
|
|
561
574
|
readonly Entry: EntityEntry;
|
|
562
575
|
}
|
|
563
576
|
|
|
@@ -569,7 +582,9 @@ export const EntityEntryEventArgs: {
|
|
|
569
582
|
|
|
570
583
|
export type EntityEntryEventArgs = EntityEntryEventArgs$instance;
|
|
571
584
|
|
|
572
|
-
export interface EntityEntryGraphNode$instance {
|
|
585
|
+
export interface EntityEntryGraphNode$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
586
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryGraphNode: never;
|
|
587
|
+
|
|
573
588
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
574
589
|
|
|
575
590
|
readonly Entry: EntityEntry;
|
|
@@ -588,12 +603,12 @@ export interface __EntityEntryGraphNode$views {
|
|
|
588
603
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
589
604
|
}
|
|
590
605
|
|
|
591
|
-
export interface EntityEntryGraphNode$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
592
|
-
|
|
593
606
|
export type EntityEntryGraphNode = EntityEntryGraphNode$instance & __EntityEntryGraphNode$views;
|
|
594
607
|
|
|
595
608
|
|
|
596
|
-
export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance {
|
|
609
|
+
export interface EntityEntryGraphNode_1$instance<TState> extends EntityEntryGraphNode$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {
|
|
610
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityEntryGraphNode_1: never;
|
|
611
|
+
|
|
597
612
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
598
613
|
|
|
599
614
|
NodeState: TState;
|
|
@@ -611,12 +626,12 @@ export interface __EntityEntryGraphNode_1$views<TState> {
|
|
|
611
626
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry>;
|
|
612
627
|
}
|
|
613
628
|
|
|
614
|
-
export interface EntityEntryGraphNode_1$instance<TState> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<InternalEntityEntry> {}
|
|
615
|
-
|
|
616
629
|
export type EntityEntryGraphNode_1<TState> = EntityEntryGraphNode_1$instance<TState> & __EntityEntryGraphNode_1$views<TState>;
|
|
617
630
|
|
|
618
631
|
|
|
619
632
|
export interface EntityStateChangedEventArgs$instance extends EntityEntryEventArgs {
|
|
633
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityStateChangedEventArgs: never;
|
|
634
|
+
|
|
620
635
|
readonly NewState: EntityState;
|
|
621
636
|
readonly OldState: EntityState;
|
|
622
637
|
}
|
|
@@ -630,6 +645,8 @@ export const EntityStateChangedEventArgs: {
|
|
|
630
645
|
export type EntityStateChangedEventArgs = EntityStateChangedEventArgs$instance;
|
|
631
646
|
|
|
632
647
|
export interface EntityStateChangingEventArgs$instance extends EntityEntryEventArgs {
|
|
648
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityStateChangingEventArgs: never;
|
|
649
|
+
|
|
633
650
|
readonly NewState: EntityState;
|
|
634
651
|
readonly OldState: EntityState;
|
|
635
652
|
}
|
|
@@ -643,6 +660,8 @@ export const EntityStateChangingEventArgs: {
|
|
|
643
660
|
export type EntityStateChangingEventArgs = EntityStateChangingEventArgs$instance;
|
|
644
661
|
|
|
645
662
|
export interface EntityTrackedEventArgs$instance extends EntityEntryEventArgs {
|
|
663
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityTrackedEventArgs: never;
|
|
664
|
+
|
|
646
665
|
readonly FromQuery: boolean;
|
|
647
666
|
}
|
|
648
667
|
|
|
@@ -655,6 +674,8 @@ export const EntityTrackedEventArgs: {
|
|
|
655
674
|
export type EntityTrackedEventArgs = EntityTrackedEventArgs$instance;
|
|
656
675
|
|
|
657
676
|
export interface EntityTrackingEventArgs$instance extends EntityEntryEventArgs {
|
|
677
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntityTrackingEventArgs: never;
|
|
678
|
+
|
|
658
679
|
readonly FromQuery: boolean;
|
|
659
680
|
readonly State: EntityState;
|
|
660
681
|
}
|
|
@@ -668,6 +689,8 @@ export const EntityTrackingEventArgs: {
|
|
|
668
689
|
export type EntityTrackingEventArgs = EntityTrackingEventArgs$instance;
|
|
669
690
|
|
|
670
691
|
export interface EntryCurrentValueComparer_1$instance<TProperty> {
|
|
692
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_EntryCurrentValueComparer_1: never;
|
|
693
|
+
|
|
671
694
|
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
672
695
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
673
696
|
|
|
@@ -685,6 +708,8 @@ export const EntryCurrentValueComparer_1: {
|
|
|
685
708
|
export type EntryCurrentValueComparer_1<TProperty> = EntryCurrentValueComparer_1$instance<TProperty>;
|
|
686
709
|
|
|
687
710
|
export interface GeometryValueComparer_1$instance<TGeometry> extends ValueComparer_1<TGeometry> {
|
|
711
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_GeometryValueComparer_1: never;
|
|
712
|
+
|
|
688
713
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
689
714
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
690
715
|
|
|
@@ -698,7 +723,9 @@ export const GeometryValueComparer_1: {
|
|
|
698
723
|
|
|
699
724
|
export type GeometryValueComparer_1<TGeometry> = GeometryValueComparer_1$instance<TGeometry>;
|
|
700
725
|
|
|
701
|
-
export interface ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<
|
|
726
|
+
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>>> {
|
|
727
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfNullableValueTypesComparer_2: never;
|
|
728
|
+
|
|
702
729
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
703
730
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
704
731
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -716,12 +743,12 @@ export interface __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElem
|
|
|
716
743
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
717
744
|
}
|
|
718
745
|
|
|
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
746
|
export type ListOfNullableValueTypesComparer_2<TConcreteList, TElement> = ListOfNullableValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfNullableValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
722
747
|
|
|
723
748
|
|
|
724
|
-
export interface ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> extends ValueComparer_1<unknown> {
|
|
749
|
+
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> {
|
|
750
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfReferenceTypesComparer_2: never;
|
|
751
|
+
|
|
725
752
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
726
753
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
727
754
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -739,12 +766,12 @@ export interface __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>
|
|
|
739
766
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
740
767
|
}
|
|
741
768
|
|
|
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
769
|
export type ListOfReferenceTypesComparer_2<TConcreteList, TElement> = ListOfReferenceTypesComparer_2$instance<TConcreteList, TElement> & __ListOfReferenceTypesComparer_2$views<TConcreteList, TElement>;
|
|
745
770
|
|
|
746
771
|
|
|
747
|
-
export interface ListOfValueTypesComparer_2$instance<TConcreteList, TElement extends unknown> extends ValueComparer_1<
|
|
772
|
+
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>> {
|
|
773
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ListOfValueTypesComparer_2: never;
|
|
774
|
+
|
|
748
775
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
749
776
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
750
777
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
@@ -762,12 +789,12 @@ export interface __ListOfValueTypesComparer_2$views<TConcreteList, TElement exte
|
|
|
762
789
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<ValueComparer>;
|
|
763
790
|
}
|
|
764
791
|
|
|
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
792
|
export type ListOfValueTypesComparer_2<TConcreteList, TElement> = ListOfValueTypesComparer_2$instance<TConcreteList, TElement> & __ListOfValueTypesComparer_2$views<TConcreteList, TElement>;
|
|
768
793
|
|
|
769
794
|
|
|
770
795
|
export interface LocalView_1$instance<TEntity> {
|
|
796
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_LocalView_1: never;
|
|
797
|
+
|
|
771
798
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
772
799
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
773
800
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
@@ -784,22 +811,22 @@ export interface LocalView_1$instance<TEntity> {
|
|
|
784
811
|
CopyTo(array: TEntity[], arrayIndex: int): void;
|
|
785
812
|
FindEntry<TKey>(keyValue: TKey): EntityEntry_1<TEntity> | undefined;
|
|
786
813
|
FindEntry<TProperty>(propertyName: string, propertyValue: TProperty): EntityEntry_1<TEntity> | undefined;
|
|
787
|
-
FindEntry(propertyNames:
|
|
814
|
+
FindEntry(propertyNames: IEnumerable_1<System_Internal.String>, propertyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
788
815
|
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():
|
|
816
|
+
FindEntry(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
817
|
+
FindEntryUntyped(keyValues: IEnumerable_1<unknown>): EntityEntry_1<TEntity> | undefined;
|
|
818
|
+
GetEntries<TProperty>(propertyName: string, propertyValue: TProperty): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
819
|
+
GetEntries(propertyNames: IEnumerable_1<System_Internal.String>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
820
|
+
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
821
|
+
GetEntries(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<EntityEntry_1<TEntity>>;
|
|
822
|
+
GetEnumerator(): IEnumerator_1<TEntity>;
|
|
796
823
|
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
797
824
|
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
798
825
|
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
799
826
|
Remove(item: TEntity): boolean;
|
|
800
827
|
Reset(): void;
|
|
801
|
-
ToBindingList():
|
|
802
|
-
ToObservableCollection():
|
|
828
|
+
ToBindingList(): BindingList_1<TEntity>;
|
|
829
|
+
ToObservableCollection(): ObservableCollection_1<TEntity>;
|
|
803
830
|
}
|
|
804
831
|
|
|
805
832
|
|
|
@@ -810,14 +837,16 @@ export const LocalView_1: {
|
|
|
810
837
|
|
|
811
838
|
export type LocalView_1<TEntity> = LocalView_1$instance<TEntity>;
|
|
812
839
|
|
|
813
|
-
export interface MemberEntry$instance {
|
|
840
|
+
export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
841
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_MemberEntry: never;
|
|
842
|
+
|
|
814
843
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
815
844
|
|
|
816
|
-
CurrentValue: IEnumerable |
|
|
817
|
-
readonly EntityEntry: EntityEntry
|
|
845
|
+
CurrentValue: IEnumerable | unknown;
|
|
846
|
+
readonly EntityEntry: EntityEntry;
|
|
818
847
|
readonly InternalEntry: IInternalEntry;
|
|
819
848
|
IsModified: boolean;
|
|
820
|
-
readonly Metadata:
|
|
849
|
+
readonly Metadata: IProperty | IPropertyBase;
|
|
821
850
|
Equals(obj: unknown): boolean;
|
|
822
851
|
GetHashCode(): int;
|
|
823
852
|
ToString(): string | undefined;
|
|
@@ -832,12 +861,12 @@ export interface __MemberEntry$views {
|
|
|
832
861
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
833
862
|
}
|
|
834
863
|
|
|
835
|
-
export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
836
|
-
|
|
837
864
|
export type MemberEntry = MemberEntry$instance & __MemberEntry$views;
|
|
838
865
|
|
|
839
866
|
|
|
840
|
-
export interface NavigationEntry$instance extends MemberEntry$instance {
|
|
867
|
+
export interface NavigationEntry$instance extends MemberEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
868
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_NavigationEntry: never;
|
|
869
|
+
|
|
841
870
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
842
871
|
|
|
843
872
|
readonly InternalEntityEntry: InternalEntityEntry;
|
|
@@ -858,12 +887,12 @@ export interface __NavigationEntry$views {
|
|
|
858
887
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
859
888
|
}
|
|
860
889
|
|
|
861
|
-
export interface NavigationEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
862
|
-
|
|
863
890
|
export type NavigationEntry = NavigationEntry$instance & __NavigationEntry$views;
|
|
864
891
|
|
|
865
892
|
|
|
866
|
-
export interface ObservableCollectionListSource_1$instance<T> extends
|
|
893
|
+
export interface ObservableCollectionListSource_1$instance<T> extends ObservableCollection_1<T> {
|
|
894
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ObservableCollectionListSource_1: never;
|
|
895
|
+
|
|
867
896
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
868
897
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
869
898
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -881,14 +910,16 @@ export interface ObservableCollectionListSource_1$instance<T> extends Observable
|
|
|
881
910
|
|
|
882
911
|
export const ObservableCollectionListSource_1: {
|
|
883
912
|
new<T>(): ObservableCollectionListSource_1<T>;
|
|
884
|
-
new<T>(collection:
|
|
885
|
-
new<T>(list:
|
|
913
|
+
new<T>(collection: IEnumerable_1<T>): ObservableCollectionListSource_1<T>;
|
|
914
|
+
new<T>(list: List_1<T>): ObservableCollectionListSource_1<T>;
|
|
886
915
|
};
|
|
887
916
|
|
|
888
917
|
|
|
889
918
|
export type ObservableCollectionListSource_1<T> = ObservableCollectionListSource_1$instance<T>;
|
|
890
919
|
|
|
891
920
|
export interface ObservableHashSet_1$instance<T> {
|
|
921
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ObservableHashSet_1: never;
|
|
922
|
+
|
|
892
923
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
893
924
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
894
925
|
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
@@ -898,7 +929,7 @@ export interface ObservableHashSet_1$instance<T> {
|
|
|
898
929
|
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanged: never;
|
|
899
930
|
readonly __tsonic_iface_System_ComponentModel_INotifyPropertyChanging: never;
|
|
900
931
|
|
|
901
|
-
readonly Comparer:
|
|
932
|
+
readonly Comparer: IEqualityComparer_1<T>;
|
|
902
933
|
readonly Count: int;
|
|
903
934
|
readonly IsReadOnly: boolean;
|
|
904
935
|
Add(item: T): boolean;
|
|
@@ -907,42 +938,44 @@ export interface ObservableHashSet_1$instance<T> {
|
|
|
907
938
|
CopyTo(array: T[], arrayIndex: int): void;
|
|
908
939
|
CopyTo(array: T[]): void;
|
|
909
940
|
CopyTo(array: T[], arrayIndex: int, count: int): void;
|
|
910
|
-
ExceptWith(other:
|
|
941
|
+
ExceptWith(other: IEnumerable_1<T>): void;
|
|
911
942
|
GetEnumerator(): HashSet_1$Enumerator<T>;
|
|
912
|
-
IntersectWith(other:
|
|
913
|
-
IsProperSubsetOf(other:
|
|
914
|
-
IsProperSupersetOf(other:
|
|
915
|
-
IsSubsetOf(other:
|
|
916
|
-
IsSupersetOf(other:
|
|
943
|
+
IntersectWith(other: IEnumerable_1<T>): void;
|
|
944
|
+
IsProperSubsetOf(other: IEnumerable_1<T>): boolean;
|
|
945
|
+
IsProperSupersetOf(other: IEnumerable_1<T>): boolean;
|
|
946
|
+
IsSubsetOf(other: IEnumerable_1<T>): boolean;
|
|
947
|
+
IsSupersetOf(other: IEnumerable_1<T>): boolean;
|
|
917
948
|
OnCollectionChanged(e: NotifyCollectionChangedEventArgs): void;
|
|
918
949
|
OnPropertyChanged(e: PropertyChangedEventArgs): void;
|
|
919
950
|
OnPropertyChanging(e: PropertyChangingEventArgs): void;
|
|
920
|
-
Overlaps(other:
|
|
951
|
+
Overlaps(other: IEnumerable_1<T>): boolean;
|
|
921
952
|
Remove(item: T): boolean;
|
|
922
|
-
RemoveWhere(match:
|
|
923
|
-
SetEquals(other:
|
|
924
|
-
SymmetricExceptWith(other:
|
|
953
|
+
RemoveWhere(match: Predicate_1<T>): int;
|
|
954
|
+
SetEquals(other: IEnumerable_1<T>): boolean;
|
|
955
|
+
SymmetricExceptWith(other: IEnumerable_1<T>): void;
|
|
925
956
|
TrimExcess(): void;
|
|
926
|
-
UnionWith(other:
|
|
957
|
+
UnionWith(other: IEnumerable_1<T>): void;
|
|
927
958
|
}
|
|
928
959
|
|
|
929
960
|
|
|
930
961
|
export const ObservableHashSet_1: {
|
|
931
962
|
new<T>(): ObservableHashSet_1<T>;
|
|
932
|
-
new<T>(comparer:
|
|
933
|
-
new<T>(collection:
|
|
934
|
-
new<T>(collection:
|
|
963
|
+
new<T>(comparer: IEqualityComparer_1<T>): ObservableHashSet_1<T>;
|
|
964
|
+
new<T>(collection: IEnumerable_1<T>): ObservableHashSet_1<T>;
|
|
965
|
+
new<T>(collection: IEnumerable_1<T>, comparer: IEqualityComparer_1<T>): ObservableHashSet_1<T>;
|
|
935
966
|
};
|
|
936
967
|
|
|
937
968
|
|
|
938
969
|
export type ObservableHashSet_1<T> = ObservableHashSet_1$instance<T>;
|
|
939
970
|
|
|
940
|
-
export interface PropertyEntry$instance extends MemberEntry$instance {
|
|
971
|
+
export interface PropertyEntry$instance extends MemberEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
972
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyEntry: never;
|
|
973
|
+
|
|
941
974
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
942
975
|
|
|
943
976
|
IsModified: boolean;
|
|
944
977
|
IsTemporary: boolean;
|
|
945
|
-
OriginalValue:
|
|
978
|
+
OriginalValue: unknown;
|
|
946
979
|
}
|
|
947
980
|
|
|
948
981
|
|
|
@@ -955,16 +988,16 @@ export interface __PropertyEntry$views {
|
|
|
955
988
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
956
989
|
}
|
|
957
990
|
|
|
958
|
-
export interface PropertyEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
959
|
-
|
|
960
991
|
export type PropertyEntry = PropertyEntry$instance & __PropertyEntry$views;
|
|
961
992
|
|
|
962
993
|
|
|
963
|
-
export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance {
|
|
994
|
+
export interface PropertyEntry_2$instance<TEntity, TProperty> extends PropertyEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
995
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyEntry_2: never;
|
|
996
|
+
|
|
964
997
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
965
998
|
|
|
966
|
-
CurrentValue: TProperty
|
|
967
|
-
readonly EntityEntry:
|
|
999
|
+
CurrentValue: TProperty;
|
|
1000
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
968
1001
|
}
|
|
969
1002
|
|
|
970
1003
|
|
|
@@ -977,15 +1010,15 @@ export interface __PropertyEntry_2$views<TEntity, TProperty> {
|
|
|
977
1010
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
978
1011
|
}
|
|
979
1012
|
|
|
980
|
-
export interface PropertyEntry_2$instance<TEntity, TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
981
|
-
|
|
982
1013
|
export type PropertyEntry_2<TEntity, TProperty> = PropertyEntry_2$instance<TEntity, TProperty> & __PropertyEntry_2$views<TEntity, TProperty>;
|
|
983
1014
|
|
|
984
1015
|
|
|
985
1016
|
export interface PropertyValues$instance {
|
|
986
|
-
readonly
|
|
1017
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_PropertyValues: never;
|
|
1018
|
+
|
|
1019
|
+
readonly ComplexCollectionProperties: IReadOnlyList_1<IComplexProperty>;
|
|
987
1020
|
readonly InternalEntry: InternalEntryBase;
|
|
988
|
-
readonly Properties:
|
|
1021
|
+
readonly Properties: IReadOnlyList_1<IProperty>;
|
|
989
1022
|
readonly StructuralType: ITypeBase;
|
|
990
1023
|
Clone(): PropertyValues;
|
|
991
1024
|
Equals(obj: unknown): boolean;
|
|
@@ -1000,7 +1033,7 @@ export interface PropertyValues$instance {
|
|
|
1000
1033
|
set_Item(complexProperty: IComplexProperty, value: IList | undefined): void;
|
|
1001
1034
|
SetValues(obj: unknown): void;
|
|
1002
1035
|
SetValues(propertyValues: PropertyValues): void;
|
|
1003
|
-
SetValues<TProperty>(values:
|
|
1036
|
+
SetValues<TProperty>(values: IDictionary_2<System_Internal.String, TProperty>): void;
|
|
1004
1037
|
ToObject(): unknown;
|
|
1005
1038
|
ToString(): string | undefined;
|
|
1006
1039
|
TryGetValue<TValue>(propertyName: string, value: TValue): boolean;
|
|
@@ -1013,11 +1046,13 @@ export const PropertyValues: (abstract new(internalEntry: InternalEntryBase) =>
|
|
|
1013
1046
|
|
|
1014
1047
|
export type PropertyValues = PropertyValues$instance;
|
|
1015
1048
|
|
|
1016
|
-
export interface ReferenceEntry$instance extends NavigationEntry$instance {
|
|
1049
|
+
export interface ReferenceEntry$instance extends NavigationEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
1050
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ReferenceEntry: never;
|
|
1051
|
+
|
|
1017
1052
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1018
1053
|
|
|
1019
1054
|
IsModified: boolean;
|
|
1020
|
-
readonly TargetEntry: EntityEntry | undefined
|
|
1055
|
+
readonly TargetEntry: EntityEntry | undefined;
|
|
1021
1056
|
GetTargetEntry(): InternalEntityEntry | undefined;
|
|
1022
1057
|
Load(): void;
|
|
1023
1058
|
Load(options: LoadOptions): void;
|
|
@@ -1037,16 +1072,16 @@ export interface __ReferenceEntry$views {
|
|
|
1037
1072
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
1038
1073
|
}
|
|
1039
1074
|
|
|
1040
|
-
export interface ReferenceEntry$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
1041
|
-
|
|
1042
1075
|
export type ReferenceEntry = ReferenceEntry$instance & __ReferenceEntry$views;
|
|
1043
1076
|
|
|
1044
1077
|
|
|
1045
|
-
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance {
|
|
1078
|
+
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends ReferenceEntry$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {
|
|
1079
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ReferenceEntry_2: never;
|
|
1080
|
+
|
|
1046
1081
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1047
1082
|
|
|
1048
|
-
CurrentValue: TProperty
|
|
1049
|
-
readonly EntityEntry:
|
|
1083
|
+
CurrentValue: TProperty;
|
|
1084
|
+
readonly EntityEntry: EntityEntry_1<TEntity>;
|
|
1050
1085
|
Query(): IQueryable;
|
|
1051
1086
|
}
|
|
1052
1087
|
|
|
@@ -1061,12 +1096,12 @@ export interface __ReferenceEntry_2$views<TEntity, TProperty> {
|
|
|
1061
1096
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry>;
|
|
1062
1097
|
}
|
|
1063
1098
|
|
|
1064
|
-
export interface ReferenceEntry_2$instance<TEntity, TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IInternalEntry> {}
|
|
1065
|
-
|
|
1066
1099
|
export type ReferenceEntry_2<TEntity, TProperty> = ReferenceEntry_2$instance<TEntity, TProperty> & __ReferenceEntry_2$views<TEntity, TProperty>;
|
|
1067
1100
|
|
|
1068
1101
|
|
|
1069
1102
|
export interface ValueComparer$instance {
|
|
1103
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer: never;
|
|
1104
|
+
|
|
1070
1105
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1071
1106
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1072
1107
|
|
|
@@ -1087,7 +1122,7 @@ export interface ValueComparer$instance {
|
|
|
1087
1122
|
export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, hashCodeExpression: LambdaExpression, snapshotExpression: LambdaExpression) => ValueComparer) & {
|
|
1088
1123
|
readonly HashCodeAddMethod: MethodInfo;
|
|
1089
1124
|
readonly ToHashCodeMethod: MethodInfo;
|
|
1090
|
-
readonly BoolIdentity:
|
|
1125
|
+
readonly BoolIdentity: Expression_1<Func_2<System_Internal.Boolean, System_Internal.Boolean>>;
|
|
1091
1126
|
Add(hash: HashCode, code: int): HashCode;
|
|
1092
1127
|
CreateDefault<T>(favorStructuralComparisons: boolean): ValueComparer;
|
|
1093
1128
|
CreateDefault(type: Type, favorStructuralComparisons: boolean): ValueComparer;
|
|
@@ -1098,13 +1133,15 @@ export const ValueComparer: (abstract new(equalsExpression: LambdaExpression, ha
|
|
|
1098
1133
|
export type ValueComparer = ValueComparer$instance;
|
|
1099
1134
|
|
|
1100
1135
|
export interface ValueComparer_1$instance<T> extends ValueComparer {
|
|
1136
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer_1: never;
|
|
1137
|
+
|
|
1101
1138
|
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
1102
1139
|
readonly __tsonic_iface_System_Collections_IEqualityComparer: never;
|
|
1103
1140
|
|
|
1104
|
-
readonly EqualsExpression:
|
|
1105
|
-
readonly HashCodeExpression:
|
|
1141
|
+
readonly EqualsExpression: Expression_1<Func_3<T | undefined, T | undefined, System_Internal.Boolean>>;
|
|
1142
|
+
readonly HashCodeExpression: Expression_1<Func_2<T, System_Internal.Int32>>;
|
|
1106
1143
|
readonly ObjectEqualsExpression: LambdaExpression;
|
|
1107
|
-
readonly SnapshotExpression:
|
|
1144
|
+
readonly SnapshotExpression: Expression_1<Func_2<T, T>>;
|
|
1108
1145
|
readonly Type: Type;
|
|
1109
1146
|
Equals(left: unknown, right: unknown): boolean;
|
|
1110
1147
|
Equals(left: T, right: T): boolean;
|
|
@@ -1117,11 +1154,11 @@ export interface ValueComparer_1$instance<T> extends ValueComparer {
|
|
|
1117
1154
|
|
|
1118
1155
|
export const ValueComparer_1: {
|
|
1119
1156
|
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):
|
|
1157
|
+
new<T>(equalsExpression: Expression_1<Func_3<T, T, System_Internal.Boolean>>, hashCodeExpression: Expression_1<Func_2<T, System_Internal.Int32>>): ValueComparer_1<T>;
|
|
1158
|
+
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>;
|
|
1159
|
+
CreateDefaultEqualsExpression<T>(): Expression_1<Func_3<T | undefined, T | undefined, System_Internal.Boolean>>;
|
|
1160
|
+
CreateDefaultHashCodeExpression<T>(favorStructuralComparisons: boolean): Expression_1<Func_2<T, System_Internal.Int32>>;
|
|
1161
|
+
CreateDefaultSnapshotExpression<T>(favorStructuralComparisons: boolean): Expression_1<Func_2<T, T>>;
|
|
1125
1162
|
};
|
|
1126
1163
|
|
|
1127
1164
|
|