@tsonic/efcore 10.0.3 → 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 +634 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +299 -154
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +591 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +139 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +36 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +535 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +105 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +330 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +62 -30
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +235 -121
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1624 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +718 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +860 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +27 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +35 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +2232 -1303
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +123 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +88 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +445 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +28 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +601 -240
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +505 -257
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +318 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +35 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +133 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +502 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +80 -35
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +102 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +143 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +136 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +198 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +69 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1553 -1291
- package/package.json +4 -4
|
@@ -19,22 +19,24 @@ import type { ValueConverter } from "../../Microsoft.EntityFrameworkCore.Storage
|
|
|
19
19
|
import type { IExceptionDetector, IRelationalCommand, ValueBuffer } from "../../Microsoft.EntityFrameworkCore.Storage/internal/index.js";
|
|
20
20
|
import * as Microsoft_EntityFrameworkCore_Internal from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
21
21
|
import type { AutoTransactionBehavior, DbContext, DbContextOptions, DbContextOptions_1, DbLoggerCategory_Infrastructure, DbLoggerCategory_Update, DbSet_1, IDbContextFactory_1, ModelConfigurationBuilder, QueryTrackingBehavior, SaveChangesFailedEventArgs, SavedChangesEventArgs, SavingChangesEventArgs } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
22
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
23
|
-
import type {
|
|
24
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
25
|
-
import type { IEnumerable, IEqualityComparer } from "@tsonic/dotnet/System.Collections.js";
|
|
26
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
27
|
-
import type { IListSource } from "@tsonic/dotnet/System.ComponentModel.js";
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import type {
|
|
31
|
-
import
|
|
32
|
-
import type {
|
|
33
|
-
import type {
|
|
34
|
-
import
|
|
35
|
-
import type {
|
|
22
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
23
|
+
import type { IAsyncEnumerable_1, IAsyncEnumerator_1, IComparer_1, IEnumerable_1, IEqualityComparer_1, IReadOnlyDictionary_2, IReadOnlyList_1, ISet_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
24
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
25
|
+
import type { IEnumerable, IEqualityComparer } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
26
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
27
|
+
import type { IListSource } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
28
|
+
import type { Expression, LambdaExpression, ParameterExpression, UnaryExpression } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
29
|
+
import * as System_Linq_Internal from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
30
|
+
import type { IQueryable, IQueryable_1 } from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
31
|
+
import type { FieldInfo, MemberInfo, MethodInfo, PropertyInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
32
|
+
import type { Task, Task_1, ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
33
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
34
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
35
|
+
import type { Boolean as ClrBoolean, EventHandler_1, Func_3, IAsyncDisposable, IDisposable, IEquatable_1, Int32, IServiceProvider, Nullable_1, Object as ClrObject, String as ClrString, Type, ValueTuple_2, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
36
36
|
|
|
37
37
|
export interface ICollectionLoader$instance {
|
|
38
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader: never;
|
|
39
|
+
|
|
38
40
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
39
41
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
40
42
|
Query(entry: InternalEntityEntry): IQueryable;
|
|
@@ -44,10 +46,12 @@ export interface ICollectionLoader$instance {
|
|
|
44
46
|
export type ICollectionLoader = ICollectionLoader$instance;
|
|
45
47
|
|
|
46
48
|
export interface ICollectionLoader_1$instance<TEntity> extends ICollectionLoader {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader_1: never;
|
|
50
|
+
|
|
47
51
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
48
52
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
49
53
|
Query(entry: InternalEntityEntry): IQueryable;
|
|
50
|
-
Query(entry: InternalEntityEntry):
|
|
54
|
+
Query(entry: InternalEntityEntry): IQueryable_1<TEntity>;
|
|
51
55
|
}
|
|
52
56
|
|
|
53
57
|
|
|
@@ -56,6 +60,8 @@ export interface ICollectionLoader_1$instance<TEntity> extends ICollectionLoader
|
|
|
56
60
|
export type ICollectionLoader_1<TEntity> = ICollectionLoader_1$instance<TEntity>;
|
|
57
61
|
|
|
58
62
|
export interface IDbContextDependencies$instance {
|
|
63
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies: never;
|
|
64
|
+
|
|
59
65
|
readonly SetSource: IDbSetSource;
|
|
60
66
|
readonly EntityFinderFactory: IEntityFinderFactory;
|
|
61
67
|
readonly QueryProvider: IAsyncQueryProvider;
|
|
@@ -71,13 +77,17 @@ export interface IDbContextDependencies$instance {
|
|
|
71
77
|
export type IDbContextDependencies = IDbContextDependencies$instance;
|
|
72
78
|
|
|
73
79
|
export interface IDbContextFactorySource_1$instance<TContext extends DbContext> {
|
|
74
|
-
readonly
|
|
80
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextFactorySource_1: never;
|
|
81
|
+
|
|
82
|
+
readonly Factory: Func_3<IServiceProvider, DbContextOptions_1<TContext>, TContext>;
|
|
75
83
|
}
|
|
76
84
|
|
|
77
85
|
|
|
78
86
|
export type IDbContextFactorySource_1<TContext extends DbContext> = IDbContextFactorySource_1$instance<TContext>;
|
|
79
87
|
|
|
80
88
|
export interface IDbContextPool$instance {
|
|
89
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool: never;
|
|
90
|
+
|
|
81
91
|
Rent(): IDbContextPoolable;
|
|
82
92
|
Return(context: IDbContextPoolable): void;
|
|
83
93
|
ReturnAsync(context: IDbContextPoolable, cancellationToken?: CancellationToken): ValueTask;
|
|
@@ -87,6 +97,8 @@ export interface IDbContextPool$instance {
|
|
|
87
97
|
export type IDbContextPool = IDbContextPool$instance;
|
|
88
98
|
|
|
89
99
|
export interface IDbContextPool_1$instance<TContext extends DbContext> extends IDbContextPool {
|
|
100
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool_1: never;
|
|
101
|
+
|
|
90
102
|
Rent(): IDbContextPoolable;
|
|
91
103
|
Return(context: IDbContextPoolable): void;
|
|
92
104
|
ReturnAsync(context: IDbContextPoolable, cancellationToken?: CancellationToken): ValueTask;
|
|
@@ -98,6 +110,8 @@ export interface IDbContextPool_1$instance<TContext extends DbContext> extends I
|
|
|
98
110
|
export type IDbContextPool_1<TContext extends DbContext> = IDbContextPool_1$instance<TContext>;
|
|
99
111
|
|
|
100
112
|
export interface IDbContextPoolable$instance extends IResettableService, IDisposable, IAsyncDisposable {
|
|
113
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPoolable: never;
|
|
114
|
+
|
|
101
115
|
ClearLease(): void;
|
|
102
116
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
103
117
|
SetLease(lease: DbContextLease): void;
|
|
@@ -106,11 +120,13 @@ export interface IDbContextPoolable$instance extends IResettableService, IDispos
|
|
|
106
120
|
}
|
|
107
121
|
|
|
108
122
|
|
|
109
|
-
export interface IDbContextPoolable$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
123
|
+
export interface IDbContextPoolable$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance, System_Internal.IAsyncDisposable, System_Internal.IDisposable {}
|
|
110
124
|
|
|
111
125
|
export type IDbContextPoolable = IDbContextPoolable$instance;
|
|
112
126
|
|
|
113
127
|
export interface IDbContextServices$instance {
|
|
128
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextServices: never;
|
|
129
|
+
|
|
114
130
|
readonly CurrentContext: ICurrentDbContext;
|
|
115
131
|
readonly Model: IModel;
|
|
116
132
|
readonly DesignTimeModel: IModel;
|
|
@@ -123,15 +139,19 @@ export interface IDbContextServices$instance {
|
|
|
123
139
|
export type IDbContextServices = IDbContextServices$instance;
|
|
124
140
|
|
|
125
141
|
export interface IDbSetCache$instance {
|
|
142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetCache: never;
|
|
143
|
+
|
|
126
144
|
GetOrAddSet(source: IDbSetSource, entityTypeName: string, type: Type): unknown;
|
|
127
145
|
GetOrAddSet(source: IDbSetSource, type: Type): unknown;
|
|
128
|
-
GetSets():
|
|
146
|
+
GetSets(): IEnumerable_1<unknown>;
|
|
129
147
|
}
|
|
130
148
|
|
|
131
149
|
|
|
132
150
|
export type IDbSetCache = IDbSetCache$instance;
|
|
133
151
|
|
|
134
152
|
export interface IDbSetInitializer$instance {
|
|
153
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetInitializer: never;
|
|
154
|
+
|
|
135
155
|
InitializeSets(context: DbContext): void;
|
|
136
156
|
}
|
|
137
157
|
|
|
@@ -139,6 +159,8 @@ export interface IDbSetInitializer$instance {
|
|
|
139
159
|
export type IDbSetInitializer = IDbSetInitializer$instance;
|
|
140
160
|
|
|
141
161
|
export interface IDbSetSource$instance {
|
|
162
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetSource: never;
|
|
163
|
+
|
|
142
164
|
Create(context: DbContext, name: string, type: Type): unknown;
|
|
143
165
|
Create(context: DbContext, type: Type): unknown;
|
|
144
166
|
}
|
|
@@ -147,16 +169,18 @@ export interface IDbSetSource$instance {
|
|
|
147
169
|
export type IDbSetSource = IDbSetSource$instance;
|
|
148
170
|
|
|
149
171
|
export interface IEntityFinder$instance {
|
|
172
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder: never;
|
|
173
|
+
|
|
150
174
|
Find(keyValues: unknown[]): unknown | undefined;
|
|
151
|
-
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken):
|
|
175
|
+
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask_1<unknown>;
|
|
152
176
|
FindEntry<TProperty>(property: IProperty, propertyValue: TProperty): InternalEntityEntry | undefined;
|
|
153
|
-
FindEntry(properties:
|
|
154
|
-
FindEntry(keyValues:
|
|
177
|
+
FindEntry(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
178
|
+
FindEntry(keyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
155
179
|
FindEntry<TKey>(keyValue: TKey): InternalEntityEntry | undefined;
|
|
156
180
|
GetDatabaseValues(entry: InternalEntityEntry): unknown[] | undefined;
|
|
157
|
-
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken):
|
|
158
|
-
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty):
|
|
159
|
-
GetEntries(properties:
|
|
181
|
+
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken): Task_1<unknown[] | undefined>;
|
|
182
|
+
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable_1<InternalEntityEntry>;
|
|
183
|
+
GetEntries(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<InternalEntityEntry>;
|
|
160
184
|
Load(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions): void;
|
|
161
185
|
LoadAsync(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
162
186
|
Query(navigation: INavigation, entry: InternalEntityEntry): IQueryable;
|
|
@@ -166,28 +190,32 @@ export interface IEntityFinder$instance {
|
|
|
166
190
|
export type IEntityFinder = IEntityFinder$instance;
|
|
167
191
|
|
|
168
192
|
export interface IEntityFinder_1$instance<TEntity> extends IEntityFinder {
|
|
193
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder_1: never;
|
|
194
|
+
|
|
169
195
|
Find(keyValues: unknown[]): unknown | undefined;
|
|
170
196
|
Find(keyValues: unknown[]): TEntity | undefined;
|
|
171
|
-
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken):
|
|
172
|
-
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken):
|
|
197
|
+
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask_1<TEntity>;
|
|
198
|
+
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask_1<unknown>;
|
|
173
199
|
FindEntry<TProperty>(property: IProperty, propertyValue: TProperty): InternalEntityEntry | undefined;
|
|
174
|
-
FindEntry(properties:
|
|
175
|
-
FindEntry(keyValues:
|
|
200
|
+
FindEntry(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
201
|
+
FindEntry(keyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
176
202
|
FindEntry<TKey>(keyValue: TKey): InternalEntityEntry | undefined;
|
|
177
203
|
GetDatabaseValues(entry: InternalEntityEntry): unknown[] | undefined;
|
|
178
|
-
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken):
|
|
179
|
-
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty):
|
|
180
|
-
GetEntries(properties:
|
|
204
|
+
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken): Task_1<unknown[] | undefined>;
|
|
205
|
+
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable_1<InternalEntityEntry>;
|
|
206
|
+
GetEntries(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<InternalEntityEntry>;
|
|
181
207
|
Load(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions): void;
|
|
182
208
|
LoadAsync(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
183
209
|
Query(navigation: INavigation, entry: InternalEntityEntry): IQueryable;
|
|
184
|
-
Query(navigation: INavigation, entry: InternalEntityEntry):
|
|
210
|
+
Query(navigation: INavigation, entry: InternalEntityEntry): IQueryable_1<TEntity>;
|
|
185
211
|
}
|
|
186
212
|
|
|
187
213
|
|
|
188
214
|
export type IEntityFinder_1<TEntity> = IEntityFinder_1$instance<TEntity>;
|
|
189
215
|
|
|
190
216
|
export interface IEntityFinderFactory$instance {
|
|
217
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderFactory: never;
|
|
218
|
+
|
|
191
219
|
Create(type: IEntityType): IEntityFinder;
|
|
192
220
|
}
|
|
193
221
|
|
|
@@ -195,6 +223,8 @@ export interface IEntityFinderFactory$instance {
|
|
|
195
223
|
export type IEntityFinderFactory = IEntityFinderFactory$instance;
|
|
196
224
|
|
|
197
225
|
export interface IEntityFinderSource$instance {
|
|
226
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderSource: never;
|
|
227
|
+
|
|
198
228
|
Create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type: IEntityType): IEntityFinder;
|
|
199
229
|
}
|
|
200
230
|
|
|
@@ -202,15 +232,19 @@ export interface IEntityFinderSource$instance {
|
|
|
202
232
|
export type IEntityFinderSource = IEntityFinderSource$instance;
|
|
203
233
|
|
|
204
234
|
export interface IInjectableService$instance {
|
|
235
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IInjectableService: never;
|
|
236
|
+
|
|
205
237
|
Attaching(context: DbContext, entityType: IEntityType, entity: unknown): void;
|
|
206
238
|
Detaching(context: DbContext, entity: unknown): boolean;
|
|
207
|
-
Injected(context: DbContext, entity: unknown, queryTrackingBehavior:
|
|
239
|
+
Injected(context: DbContext, entity: unknown, queryTrackingBehavior: Nullable_1<QueryTrackingBehavior>, structuralType: ITypeBase): void;
|
|
208
240
|
}
|
|
209
241
|
|
|
210
242
|
|
|
211
243
|
export type IInjectableService = IInjectableService$instance;
|
|
212
244
|
|
|
213
245
|
export interface IPatchServiceInjectionSite$instance {
|
|
246
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IPatchServiceInjectionSite: never;
|
|
247
|
+
|
|
214
248
|
InjectServices(serviceProvider: IServiceProvider): void;
|
|
215
249
|
}
|
|
216
250
|
|
|
@@ -218,13 +252,17 @@ export interface IPatchServiceInjectionSite$instance {
|
|
|
218
252
|
export type IPatchServiceInjectionSite = IPatchServiceInjectionSite$instance;
|
|
219
253
|
|
|
220
254
|
export interface IRegisteredServices$instance {
|
|
221
|
-
readonly
|
|
255
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IRegisteredServices: never;
|
|
256
|
+
|
|
257
|
+
readonly Services: ISet_1<Type>;
|
|
222
258
|
}
|
|
223
259
|
|
|
224
260
|
|
|
225
261
|
export type IRegisteredServices = IRegisteredServices$instance;
|
|
226
262
|
|
|
227
263
|
export interface IScopedDbContextLease_1$instance<TContext extends DbContext> {
|
|
264
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IScopedDbContextLease_1: never;
|
|
265
|
+
|
|
228
266
|
readonly Context: TContext;
|
|
229
267
|
}
|
|
230
268
|
|
|
@@ -232,6 +270,8 @@ export interface IScopedDbContextLease_1$instance<TContext extends DbContext> {
|
|
|
232
270
|
export type IScopedDbContextLease_1<TContext extends DbContext> = IScopedDbContextLease_1$instance<TContext>;
|
|
233
271
|
|
|
234
272
|
export interface ISingletonOptionsInitializer$instance {
|
|
273
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ISingletonOptionsInitializer: never;
|
|
274
|
+
|
|
235
275
|
EnsureInitialized(serviceProvider: IServiceProvider, options: IDbContextOptions): void;
|
|
236
276
|
}
|
|
237
277
|
|
|
@@ -239,6 +279,8 @@ export interface ISingletonOptionsInitializer$instance {
|
|
|
239
279
|
export type ISingletonOptionsInitializer = ISingletonOptionsInitializer$instance;
|
|
240
280
|
|
|
241
281
|
export interface DbContextLease$instance {
|
|
282
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextLease: never;
|
|
283
|
+
|
|
242
284
|
Context: IDbContextPoolable;
|
|
243
285
|
readonly IsActive: boolean;
|
|
244
286
|
readonly IsStandalone: boolean;
|
|
@@ -258,6 +300,11 @@ export const DbContextLease: {
|
|
|
258
300
|
export type DbContextLease = DbContextLease$instance;
|
|
259
301
|
|
|
260
302
|
export interface DbContextDependencies$instance {
|
|
303
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextDependencies: never;
|
|
304
|
+
|
|
305
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies: never;
|
|
306
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
307
|
+
|
|
261
308
|
readonly ChangeDetector: IChangeDetector;
|
|
262
309
|
readonly EntityFinderFactory: IEntityFinderFactory;
|
|
263
310
|
readonly EntityGraphAttacher: IEntityGraphAttacher;
|
|
@@ -284,14 +331,16 @@ export interface __DbContextDependencies$views {
|
|
|
284
331
|
As_IDbContextDependencies(): IDbContextDependencies$instance;
|
|
285
332
|
}
|
|
286
333
|
|
|
287
|
-
export interface DbContextDependencies$instance extends IDbContextDependencies$instance {}
|
|
288
|
-
|
|
289
334
|
export type DbContextDependencies = DbContextDependencies$instance & __DbContextDependencies$views;
|
|
290
335
|
|
|
291
336
|
|
|
292
|
-
export interface DbContextFactory_1$instance<TContext extends DbContext> {
|
|
337
|
+
export interface DbContextFactory_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext> {
|
|
338
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextFactory_1: never;
|
|
339
|
+
|
|
340
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
|
|
341
|
+
|
|
293
342
|
CreateDbContext(): TContext;
|
|
294
|
-
CreateDbContextAsync(cancellationToken?: CancellationToken):
|
|
343
|
+
CreateDbContextAsync(cancellationToken?: CancellationToken): Task_1<TContext>;
|
|
295
344
|
}
|
|
296
345
|
|
|
297
346
|
|
|
@@ -304,13 +353,15 @@ export interface __DbContextFactory_1$views<TContext extends DbContext> {
|
|
|
304
353
|
As_IDbContextFactory_1(): Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext>;
|
|
305
354
|
}
|
|
306
355
|
|
|
307
|
-
export interface DbContextFactory_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Internal.IDbContextFactory_1$instance<TContext> {}
|
|
308
|
-
|
|
309
356
|
export type DbContextFactory_1<TContext extends DbContext> = DbContextFactory_1$instance<TContext> & __DbContextFactory_1$views<TContext>;
|
|
310
357
|
|
|
311
358
|
|
|
312
|
-
export interface DbContextFactorySource_1$instance<TContext extends DbContext> {
|
|
313
|
-
readonly
|
|
359
|
+
export interface DbContextFactorySource_1$instance<TContext extends DbContext> extends IDbContextFactorySource_1$instance<TContext> {
|
|
360
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextFactorySource_1: never;
|
|
361
|
+
|
|
362
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextFactorySource_1: never;
|
|
363
|
+
|
|
364
|
+
readonly Factory: Func_3<IServiceProvider, DbContextOptions_1<TContext>, TContext>;
|
|
314
365
|
}
|
|
315
366
|
|
|
316
367
|
|
|
@@ -323,12 +374,17 @@ export interface __DbContextFactorySource_1$views<TContext extends DbContext> {
|
|
|
323
374
|
As_IDbContextFactorySource_1(): IDbContextFactorySource_1$instance<TContext>;
|
|
324
375
|
}
|
|
325
376
|
|
|
326
|
-
export interface DbContextFactorySource_1$instance<TContext extends DbContext> extends IDbContextFactorySource_1$instance<TContext> {}
|
|
327
|
-
|
|
328
377
|
export type DbContextFactorySource_1<TContext extends DbContext> = DbContextFactorySource_1$instance<TContext> & __DbContextFactorySource_1$views<TContext>;
|
|
329
378
|
|
|
330
379
|
|
|
331
|
-
export interface DbContextPool_1$instance<TContext extends DbContext> extends IDbContextPool_1<TContext
|
|
380
|
+
export interface DbContextPool_1$instance<TContext extends DbContext> extends IDbContextPool_1<TContext>, System_Internal.IAsyncDisposable, System_Internal.IDisposable {
|
|
381
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextPool_1: never;
|
|
382
|
+
|
|
383
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool: never;
|
|
384
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool_1: never;
|
|
385
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
386
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
387
|
+
|
|
332
388
|
Dispose(): void;
|
|
333
389
|
DisposeAsync(): ValueTask;
|
|
334
390
|
Rent(): IDbContextPoolable;
|
|
@@ -351,39 +407,45 @@ export type DbContextPool_1<TContext extends DbContext> = DbContextPool_1$instan
|
|
|
351
407
|
|
|
352
408
|
|
|
353
409
|
export interface DbContextPoolConfigurationSnapshot$instance {
|
|
410
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextPoolConfigurationSnapshot: never;
|
|
411
|
+
|
|
354
412
|
readonly AutoDetectChangesEnabled: boolean;
|
|
355
413
|
readonly AutoSavepointsEnabled: boolean;
|
|
356
414
|
readonly AutoTransactionBehavior: AutoTransactionBehavior;
|
|
357
415
|
readonly CascadeDeleteTiming: CascadeTiming;
|
|
358
416
|
readonly DeleteOrphansTiming: CascadeTiming;
|
|
359
|
-
readonly DetectedAllChanges:
|
|
360
|
-
readonly DetectedEntityChanges:
|
|
361
|
-
readonly DetectingAllChanges:
|
|
362
|
-
readonly DetectingEntityChanges:
|
|
417
|
+
readonly DetectedAllChanges: EventHandler_1<DetectedChangesEventArgs> | undefined;
|
|
418
|
+
readonly DetectedEntityChanges: EventHandler_1<DetectedEntityChangesEventArgs> | undefined;
|
|
419
|
+
readonly DetectingAllChanges: EventHandler_1<DetectChangesEventArgs> | undefined;
|
|
420
|
+
readonly DetectingEntityChanges: EventHandler_1<DetectEntityChangesEventArgs> | undefined;
|
|
363
421
|
readonly HasChangeDetectorConfiguration: boolean;
|
|
364
422
|
readonly HasChangeTrackerConfiguration: boolean;
|
|
365
423
|
readonly HasDatabaseConfiguration: boolean;
|
|
366
424
|
readonly HasStateManagerConfiguration: boolean;
|
|
367
425
|
readonly LazyLoadingEnabled: boolean;
|
|
368
|
-
readonly QueryTrackingBehavior:
|
|
369
|
-
readonly SaveChangesFailed:
|
|
370
|
-
readonly SavedChanges:
|
|
371
|
-
readonly SavingChanges:
|
|
372
|
-
readonly StateChanged:
|
|
373
|
-
readonly StateChanging:
|
|
374
|
-
readonly Tracked:
|
|
375
|
-
readonly Tracking:
|
|
426
|
+
readonly QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>;
|
|
427
|
+
readonly SaveChangesFailed: EventHandler_1<SaveChangesFailedEventArgs> | undefined;
|
|
428
|
+
readonly SavedChanges: EventHandler_1<SavedChangesEventArgs> | undefined;
|
|
429
|
+
readonly SavingChanges: EventHandler_1<SavingChangesEventArgs> | undefined;
|
|
430
|
+
readonly StateChanged: EventHandler_1<EntityStateChangedEventArgs> | undefined;
|
|
431
|
+
readonly StateChanging: EventHandler_1<EntityStateChangingEventArgs> | undefined;
|
|
432
|
+
readonly Tracked: EventHandler_1<EntityTrackedEventArgs> | undefined;
|
|
433
|
+
readonly Tracking: EventHandler_1<EntityTrackingEventArgs> | undefined;
|
|
376
434
|
}
|
|
377
435
|
|
|
378
436
|
|
|
379
437
|
export const DbContextPoolConfigurationSnapshot: {
|
|
380
|
-
new(hasDatabaseConfiguration: boolean, hasStateManagerConfiguration: boolean, hasChangeTrackerConfiguration: boolean, hasChangeDetectorConfiguration: boolean, autoDetectChangesEnabled: boolean, queryTrackingBehavior:
|
|
438
|
+
new(hasDatabaseConfiguration: boolean, hasStateManagerConfiguration: boolean, hasChangeTrackerConfiguration: boolean, hasChangeDetectorConfiguration: boolean, autoDetectChangesEnabled: boolean, queryTrackingBehavior: Nullable_1<QueryTrackingBehavior>, autoTransactionBehavior: AutoTransactionBehavior, autoSavepointsEnabled: boolean, lazyLoadingEnabled: boolean, cascadeDeleteTiming: CascadeTiming, deleteOrphansTiming: CascadeTiming, savingChanges: EventHandler_1<SavingChangesEventArgs>, savedChanges: EventHandler_1<SavedChangesEventArgs>, saveChangesFailed: EventHandler_1<SaveChangesFailedEventArgs>, tracking: EventHandler_1<EntityTrackingEventArgs>, tracked: EventHandler_1<EntityTrackedEventArgs>, stateChanging: EventHandler_1<EntityStateChangingEventArgs>, stateChanged: EventHandler_1<EntityStateChangedEventArgs>, detectingAllChanges: EventHandler_1<DetectChangesEventArgs>, detectedAllChanges: EventHandler_1<DetectedChangesEventArgs>, detectingEntityChanges: EventHandler_1<DetectEntityChangesEventArgs>, detectedEntityChanges: EventHandler_1<DetectedEntityChangesEventArgs>): DbContextPoolConfigurationSnapshot;
|
|
381
439
|
};
|
|
382
440
|
|
|
383
441
|
|
|
384
442
|
export type DbContextPoolConfigurationSnapshot = DbContextPoolConfigurationSnapshot$instance;
|
|
385
443
|
|
|
386
|
-
export interface DbContextServices$instance {
|
|
444
|
+
export interface DbContextServices$instance extends IDbContextServices$instance {
|
|
445
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbContextServices: never;
|
|
446
|
+
|
|
447
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextServices: never;
|
|
448
|
+
|
|
387
449
|
readonly ContextOptions: DbContextOptions;
|
|
388
450
|
readonly CurrentContext: ICurrentDbContext;
|
|
389
451
|
readonly DesignTimeModel: IModel;
|
|
@@ -402,12 +464,14 @@ export interface __DbContextServices$views {
|
|
|
402
464
|
As_IDbContextServices(): IDbContextServices$instance;
|
|
403
465
|
}
|
|
404
466
|
|
|
405
|
-
export interface DbContextServices$instance extends IDbContextServices$instance {}
|
|
406
|
-
|
|
407
467
|
export type DbContextServices = DbContextServices$instance & __DbContextServices$views;
|
|
408
468
|
|
|
409
469
|
|
|
410
|
-
export interface DbSetInitializer$instance {
|
|
470
|
+
export interface DbSetInitializer$instance extends IDbSetInitializer$instance {
|
|
471
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbSetInitializer: never;
|
|
472
|
+
|
|
473
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetInitializer: never;
|
|
474
|
+
|
|
411
475
|
InitializeSets(context: DbContext): void;
|
|
412
476
|
}
|
|
413
477
|
|
|
@@ -421,12 +485,14 @@ export interface __DbSetInitializer$views {
|
|
|
421
485
|
As_IDbSetInitializer(): IDbSetInitializer$instance;
|
|
422
486
|
}
|
|
423
487
|
|
|
424
|
-
export interface DbSetInitializer$instance extends IDbSetInitializer$instance {}
|
|
425
|
-
|
|
426
488
|
export type DbSetInitializer = DbSetInitializer$instance & __DbSetInitializer$views;
|
|
427
489
|
|
|
428
490
|
|
|
429
|
-
export interface DbSetSource$instance {
|
|
491
|
+
export interface DbSetSource$instance extends IDbSetSource$instance {
|
|
492
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_DbSetSource: never;
|
|
493
|
+
|
|
494
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetSource: never;
|
|
495
|
+
|
|
430
496
|
Create(context: DbContext, type: Type): unknown;
|
|
431
497
|
Create(context: DbContext, name: string, type: Type): unknown;
|
|
432
498
|
}
|
|
@@ -441,25 +507,28 @@ export interface __DbSetSource$views {
|
|
|
441
507
|
As_IDbSetSource(): IDbSetSource$instance;
|
|
442
508
|
}
|
|
443
509
|
|
|
444
|
-
export interface DbSetSource$instance extends IDbSetSource$instance {}
|
|
445
|
-
|
|
446
510
|
export type DbSetSource = DbSetSource$instance & __DbSetSource$views;
|
|
447
511
|
|
|
448
512
|
|
|
449
513
|
export interface EntityFinder_1$instance<TEntity> {
|
|
514
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_EntityFinder_1: never;
|
|
515
|
+
|
|
516
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder: never;
|
|
517
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder_1: never;
|
|
518
|
+
|
|
450
519
|
Find(keyValues: unknown[]): TEntity | undefined;
|
|
451
|
-
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken):
|
|
520
|
+
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask_1<TEntity>;
|
|
452
521
|
FindEntry<TKey>(keyValue: TKey): InternalEntityEntry | undefined;
|
|
453
522
|
FindEntry<TProperty>(property: IProperty, propertyValue: TProperty): InternalEntityEntry | undefined;
|
|
454
|
-
FindEntry(keyValues:
|
|
455
|
-
FindEntry(properties:
|
|
523
|
+
FindEntry(keyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
524
|
+
FindEntry(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): InternalEntityEntry | undefined;
|
|
456
525
|
GetDatabaseValues(entry: InternalEntityEntry): unknown[] | undefined;
|
|
457
|
-
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken):
|
|
458
|
-
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty):
|
|
459
|
-
GetEntries(properties:
|
|
526
|
+
GetDatabaseValuesAsync(entry: InternalEntityEntry, cancellationToken?: CancellationToken): Task_1<unknown[] | undefined>;
|
|
527
|
+
GetEntries<TProperty>(property: IProperty, propertyValue: TProperty): IEnumerable_1<InternalEntityEntry>;
|
|
528
|
+
GetEntries(properties: IEnumerable_1<IProperty>, propertyValues: IEnumerable_1<unknown>): IEnumerable_1<InternalEntityEntry>;
|
|
460
529
|
Load(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions): void;
|
|
461
530
|
LoadAsync(navigation: INavigation, entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
462
|
-
Query(navigation: INavigation, entry: InternalEntityEntry):
|
|
531
|
+
Query(navigation: INavigation, entry: InternalEntityEntry): IQueryable_1<TEntity>;
|
|
463
532
|
}
|
|
464
533
|
|
|
465
534
|
|
|
@@ -476,7 +545,11 @@ export interface __EntityFinder_1$views<TEntity> {
|
|
|
476
545
|
export type EntityFinder_1<TEntity> = EntityFinder_1$instance<TEntity> & __EntityFinder_1$views<TEntity>;
|
|
477
546
|
|
|
478
547
|
|
|
479
|
-
export interface EntityFinderCollectionLoaderAdapter$instance {
|
|
548
|
+
export interface EntityFinderCollectionLoaderAdapter$instance extends ICollectionLoader$instance {
|
|
549
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_EntityFinderCollectionLoaderAdapter: never;
|
|
550
|
+
|
|
551
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader: never;
|
|
552
|
+
|
|
480
553
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
481
554
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
482
555
|
Query(entry: InternalEntityEntry): IQueryable;
|
|
@@ -492,12 +565,14 @@ export interface __EntityFinderCollectionLoaderAdapter$views {
|
|
|
492
565
|
As_ICollectionLoader(): ICollectionLoader$instance;
|
|
493
566
|
}
|
|
494
567
|
|
|
495
|
-
export interface EntityFinderCollectionLoaderAdapter$instance extends ICollectionLoader$instance {}
|
|
496
|
-
|
|
497
568
|
export type EntityFinderCollectionLoaderAdapter = EntityFinderCollectionLoaderAdapter$instance & __EntityFinderCollectionLoaderAdapter$views;
|
|
498
569
|
|
|
499
570
|
|
|
500
|
-
export interface EntityFinderFactory$instance {
|
|
571
|
+
export interface EntityFinderFactory$instance extends IEntityFinderFactory$instance {
|
|
572
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_EntityFinderFactory: never;
|
|
573
|
+
|
|
574
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderFactory: never;
|
|
575
|
+
|
|
501
576
|
Create(type: IEntityType): IEntityFinder;
|
|
502
577
|
}
|
|
503
578
|
|
|
@@ -511,12 +586,14 @@ export interface __EntityFinderFactory$views {
|
|
|
511
586
|
As_IEntityFinderFactory(): IEntityFinderFactory$instance;
|
|
512
587
|
}
|
|
513
588
|
|
|
514
|
-
export interface EntityFinderFactory$instance extends IEntityFinderFactory$instance {}
|
|
515
|
-
|
|
516
589
|
export type EntityFinderFactory = EntityFinderFactory$instance & __EntityFinderFactory$views;
|
|
517
590
|
|
|
518
591
|
|
|
519
|
-
export interface EntityFinderSource$instance {
|
|
592
|
+
export interface EntityFinderSource$instance extends IEntityFinderSource$instance {
|
|
593
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_EntityFinderSource: never;
|
|
594
|
+
|
|
595
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderSource: never;
|
|
596
|
+
|
|
520
597
|
Create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type: IEntityType): IEntityFinder;
|
|
521
598
|
}
|
|
522
599
|
|
|
@@ -530,46 +607,55 @@ export interface __EntityFinderSource$views {
|
|
|
530
607
|
As_IEntityFinderSource(): IEntityFinderSource$instance;
|
|
531
608
|
}
|
|
532
609
|
|
|
533
|
-
export interface EntityFinderSource$instance extends IEntityFinderSource$instance {}
|
|
534
|
-
|
|
535
610
|
export type EntityFinderSource = EntityFinderSource$instance & __EntityFinderSource$views;
|
|
536
611
|
|
|
537
612
|
|
|
538
|
-
export interface InternalDbSet_1$instance<TEntity> extends DbSet_1<TEntity> {
|
|
613
|
+
export interface InternalDbSet_1$instance<TEntity> extends DbSet_1<TEntity>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance, System_Collections_Generic_Internal.IAsyncEnumerable_1<TEntity>, System_Collections_Generic_Internal.IEnumerable_1<TEntity>, System_ComponentModel_Internal.IListSource, System_Linq_Internal.IQueryable_1<TEntity> {
|
|
614
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_InternalDbSet_1: never;
|
|
615
|
+
|
|
616
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
617
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
618
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
619
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
620
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
621
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
622
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
623
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
624
|
+
|
|
539
625
|
readonly EntityType: IEntityType;
|
|
540
626
|
readonly Local: LocalView_1<TEntity>;
|
|
541
627
|
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
542
628
|
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
543
|
-
AddAsync(entity: TEntity, cancellationToken?: CancellationToken):
|
|
544
|
-
AddAsync(entity: TEntity, cancellationToken?: CancellationToken):
|
|
629
|
+
AddAsync(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
630
|
+
AddAsync(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
545
631
|
AddRange(...entities: TEntity[]): void;
|
|
546
|
-
AddRange(entities:
|
|
547
|
-
AddRange(entities:
|
|
632
|
+
AddRange(entities: IEnumerable_1<TEntity>): void;
|
|
633
|
+
AddRange(entities: IEnumerable_1<TEntity>): void;
|
|
548
634
|
AddRangeAsync(...entities: TEntity[]): Task;
|
|
549
|
-
AddRangeAsync(entities:
|
|
550
|
-
AddRangeAsync(entities:
|
|
635
|
+
AddRangeAsync(entities: IEnumerable_1<TEntity>, cancellationToken?: CancellationToken): Task;
|
|
636
|
+
AddRangeAsync(entities: IEnumerable_1<TEntity>, cancellationToken?: CancellationToken): Task;
|
|
551
637
|
Attach(entity: TEntity): EntityEntry_1<TEntity>;
|
|
552
638
|
Attach(entity: TEntity): EntityEntry_1<TEntity>;
|
|
553
639
|
AttachRange(...entities: TEntity[]): void;
|
|
554
|
-
AttachRange(entities:
|
|
555
|
-
AttachRange(entities:
|
|
640
|
+
AttachRange(entities: IEnumerable_1<TEntity>): void;
|
|
641
|
+
AttachRange(entities: IEnumerable_1<TEntity>): void;
|
|
556
642
|
Entry(entity: TEntity): EntityEntry_1<TEntity>;
|
|
557
643
|
Entry(entity: TEntity): EntityEntry_1<TEntity>;
|
|
558
644
|
Find(...keyValues: unknown[]): TEntity | undefined;
|
|
559
|
-
FindAsync(...keyValues: unknown[]):
|
|
560
|
-
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken):
|
|
561
|
-
FindAsync(...keyValues: unknown[]):
|
|
562
|
-
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken):
|
|
645
|
+
FindAsync(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
646
|
+
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
647
|
+
FindAsync(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
648
|
+
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
563
649
|
Remove(entity: TEntity): EntityEntry_1<TEntity>;
|
|
564
650
|
Remove(entity: TEntity): EntityEntry_1<TEntity>;
|
|
565
651
|
RemoveRange(...entities: TEntity[]): void;
|
|
566
|
-
RemoveRange(entities:
|
|
567
|
-
RemoveRange(entities:
|
|
652
|
+
RemoveRange(entities: IEnumerable_1<TEntity>): void;
|
|
653
|
+
RemoveRange(entities: IEnumerable_1<TEntity>): void;
|
|
568
654
|
Update(entity: TEntity): EntityEntry_1<TEntity>;
|
|
569
655
|
Update(entity: TEntity): EntityEntry_1<TEntity>;
|
|
570
656
|
UpdateRange(...entities: TEntity[]): void;
|
|
571
|
-
UpdateRange(entities:
|
|
572
|
-
UpdateRange(entities:
|
|
657
|
+
UpdateRange(entities: IEnumerable_1<TEntity>): void;
|
|
658
|
+
UpdateRange(entities: IEnumerable_1<TEntity>): void;
|
|
573
659
|
}
|
|
574
660
|
|
|
575
661
|
|
|
@@ -583,15 +669,18 @@ export interface __InternalDbSet_1$views<TEntity> {
|
|
|
583
669
|
As_IResettableService(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance;
|
|
584
670
|
}
|
|
585
671
|
|
|
586
|
-
export interface InternalDbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
587
|
-
|
|
588
672
|
export type InternalDbSet_1<TEntity> = InternalDbSet_1$instance<TEntity> & __InternalDbSet_1$views<TEntity>;
|
|
589
673
|
|
|
590
674
|
|
|
591
675
|
export interface ManyToManyLoader_2$instance<TEntity, TSourceEntity> {
|
|
676
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_ManyToManyLoader_2: never;
|
|
677
|
+
|
|
678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader: never;
|
|
679
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader_1: never;
|
|
680
|
+
|
|
592
681
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
593
682
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
594
|
-
Query(entry: InternalEntityEntry):
|
|
683
|
+
Query(entry: InternalEntityEntry): IQueryable_1<TEntity>;
|
|
595
684
|
}
|
|
596
685
|
|
|
597
686
|
|
|
@@ -609,6 +698,8 @@ export type ManyToManyLoader_2<TEntity, TSourceEntity> = ManyToManyLoader_2$inst
|
|
|
609
698
|
|
|
610
699
|
|
|
611
700
|
export interface ManyToManyLoaderFactory$instance {
|
|
701
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_ManyToManyLoaderFactory: never;
|
|
702
|
+
|
|
612
703
|
Create(skipNavigation: ISkipNavigation): ICollectionLoader;
|
|
613
704
|
}
|
|
614
705
|
|
|
@@ -621,25 +712,33 @@ export const ManyToManyLoaderFactory: {
|
|
|
621
712
|
export type ManyToManyLoaderFactory = ManyToManyLoaderFactory$instance;
|
|
622
713
|
|
|
623
714
|
export interface NullableComparerAdapter_1$instance<TNullableKey> {
|
|
715
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_NullableComparerAdapter_1: never;
|
|
716
|
+
|
|
717
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
718
|
+
|
|
624
719
|
Equals(x: TNullableKey, y: TNullableKey): boolean;
|
|
625
720
|
GetHashCode(obj: TNullableKey): int;
|
|
626
721
|
}
|
|
627
722
|
|
|
628
723
|
|
|
629
724
|
export const NullableComparerAdapter_1: {
|
|
630
|
-
Wrap<TNullableKey>(comparer: IEqualityComparer, valueConverter?: ValueConverter):
|
|
725
|
+
Wrap<TNullableKey>(comparer: IEqualityComparer, valueConverter?: ValueConverter): IEqualityComparer_1<TNullableKey>;
|
|
631
726
|
};
|
|
632
727
|
|
|
633
728
|
|
|
634
729
|
export type NullableComparerAdapter_1<TNullableKey> = NullableComparerAdapter_1$instance<TNullableKey>;
|
|
635
730
|
|
|
636
|
-
export interface RegisteredServices$instance {
|
|
637
|
-
readonly
|
|
731
|
+
export interface RegisteredServices$instance extends IRegisteredServices$instance {
|
|
732
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_RegisteredServices: never;
|
|
733
|
+
|
|
734
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IRegisteredServices: never;
|
|
735
|
+
|
|
736
|
+
readonly Services: ISet_1<Type>;
|
|
638
737
|
}
|
|
639
738
|
|
|
640
739
|
|
|
641
740
|
export const RegisteredServices: {
|
|
642
|
-
new(services:
|
|
741
|
+
new(services: IEnumerable_1<Type>): RegisteredServices;
|
|
643
742
|
};
|
|
644
743
|
|
|
645
744
|
|
|
@@ -647,12 +746,16 @@ export interface __RegisteredServices$views {
|
|
|
647
746
|
As_IRegisteredServices(): IRegisteredServices$instance;
|
|
648
747
|
}
|
|
649
748
|
|
|
650
|
-
export interface RegisteredServices$instance extends IRegisteredServices$instance {}
|
|
651
|
-
|
|
652
749
|
export type RegisteredServices = RegisteredServices$instance & __RegisteredServices$views;
|
|
653
750
|
|
|
654
751
|
|
|
655
|
-
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> {
|
|
752
|
+
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> extends IScopedDbContextLease_1$instance<TContext>, System_Internal.IAsyncDisposable, System_Internal.IDisposable {
|
|
753
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_ScopedDbContextLease_1: never;
|
|
754
|
+
|
|
755
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IScopedDbContextLease_1: never;
|
|
756
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
757
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
758
|
+
|
|
656
759
|
readonly Context: TContext;
|
|
657
760
|
}
|
|
658
761
|
|
|
@@ -666,12 +769,14 @@ export interface __ScopedDbContextLease_1$views<TContext extends DbContext> {
|
|
|
666
769
|
As_IScopedDbContextLease_1(): IScopedDbContextLease_1$instance<TContext>;
|
|
667
770
|
}
|
|
668
771
|
|
|
669
|
-
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> extends IScopedDbContextLease_1$instance<TContext> {}
|
|
670
|
-
|
|
671
772
|
export type ScopedDbContextLease_1<TContext extends DbContext> = ScopedDbContextLease_1$instance<TContext> & __ScopedDbContextLease_1$views<TContext>;
|
|
672
773
|
|
|
673
774
|
|
|
674
775
|
export interface SemanticVersionComparer$instance {
|
|
776
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_SemanticVersionComparer: never;
|
|
777
|
+
|
|
778
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
779
|
+
|
|
675
780
|
Compare(x: string, y: string): int;
|
|
676
781
|
}
|
|
677
782
|
|
|
@@ -684,6 +789,8 @@ export const SemanticVersionComparer: {
|
|
|
684
789
|
export type SemanticVersionComparer = SemanticVersionComparer$instance;
|
|
685
790
|
|
|
686
791
|
export interface ServiceProviderCache$instance {
|
|
792
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_ServiceProviderCache: never;
|
|
793
|
+
|
|
687
794
|
GetOrAdd(options: IDbContextOptions, providerRequired: boolean): IServiceProvider;
|
|
688
795
|
}
|
|
689
796
|
|
|
@@ -696,7 +803,11 @@ export const ServiceProviderCache: {
|
|
|
696
803
|
|
|
697
804
|
export type ServiceProviderCache = ServiceProviderCache$instance;
|
|
698
805
|
|
|
699
|
-
export interface SingletonOptionsInitializer$instance {
|
|
806
|
+
export interface SingletonOptionsInitializer$instance extends ISingletonOptionsInitializer$instance {
|
|
807
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_SingletonOptionsInitializer: never;
|
|
808
|
+
|
|
809
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ISingletonOptionsInitializer: never;
|
|
810
|
+
|
|
700
811
|
EnsureInitialized(serviceProvider: IServiceProvider, options: IDbContextOptions): void;
|
|
701
812
|
}
|
|
702
813
|
|
|
@@ -710,12 +821,15 @@ export interface __SingletonOptionsInitializer$views {
|
|
|
710
821
|
As_ISingletonOptionsInitializer(): ISingletonOptionsInitializer$instance;
|
|
711
822
|
}
|
|
712
823
|
|
|
713
|
-
export interface SingletonOptionsInitializer$instance extends ISingletonOptionsInitializer$instance {}
|
|
714
|
-
|
|
715
824
|
export type SingletonOptionsInitializer = SingletonOptionsInitializer$instance & __SingletonOptionsInitializer$views;
|
|
716
825
|
|
|
717
826
|
|
|
718
827
|
export interface TypeFullNameComparer$instance {
|
|
828
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Internal_TypeFullNameComparer: never;
|
|
829
|
+
|
|
830
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
831
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
832
|
+
|
|
719
833
|
Compare(x: Type, y: Type): int;
|
|
720
834
|
Equals(x: Type, y: Type): boolean;
|
|
721
835
|
GetHashCode(obj: Type): int;
|
|
@@ -752,12 +866,12 @@ export abstract class EntityTypeExtensions$instance {
|
|
|
752
866
|
export type EntityTypeExtensions = EntityTypeExtensions$instance;
|
|
753
867
|
|
|
754
868
|
export abstract class ExpressionExtensions$instance {
|
|
755
|
-
static BuildPredicate(keyProperties:
|
|
869
|
+
static BuildPredicate(keyProperties: IReadOnlyList_1<IReadOnlyProperty>, keyValues: ValueBuffer, entityParameter: ParameterExpression): Expression;
|
|
756
870
|
static GetLambdaOrNull(expression: Expression): LambdaExpression | undefined;
|
|
757
871
|
static IsLogicalNot(sqlUnaryExpression: UnaryExpression): boolean;
|
|
758
872
|
static IsLogicalOperation(expression: Expression): boolean;
|
|
759
873
|
static MakeHasSentinel(currentValueExpression: Expression, propertyBase: IReadOnlyPropertyBase): Expression;
|
|
760
|
-
static MatchMemberAccessList<TMemberInfo extends MemberInfo>(lambdaExpression: LambdaExpression, memberMatcher:
|
|
874
|
+
static MatchMemberAccessList<TMemberInfo extends MemberInfo>(lambdaExpression: LambdaExpression, memberMatcher: Func_3<Expression, Expression, TMemberInfo>): IReadOnlyList_1<TMemberInfo> | undefined;
|
|
761
875
|
static MatchSimpleMemberAccess<TMemberInfo extends MemberInfo>(parameterExpression: Expression, memberAccessExpression: Expression): TMemberInfo | undefined;
|
|
762
876
|
static RemoveTypeAs(expression: Expression): Expression | undefined;
|
|
763
877
|
}
|
|
@@ -794,8 +908,8 @@ export abstract class RelationalModelExtensions$instance {
|
|
|
794
908
|
export type RelationalModelExtensions = RelationalModelExtensions$instance;
|
|
795
909
|
|
|
796
910
|
export abstract class TupleExtensions$instance {
|
|
797
|
-
static FormatTable(table:
|
|
798
|
-
static FormatTables(tables:
|
|
911
|
+
static FormatTable(table: ValueTuple_2<System_Internal.String, System_Internal.String>): string;
|
|
912
|
+
static FormatTables(tables: IEnumerable_1<ValueTuple_2<System_Internal.String, System_Internal.String>>): string;
|
|
799
913
|
}
|
|
800
914
|
|
|
801
915
|
|
|
@@ -805,8 +919,8 @@ export abstract class TypeBaseExtensions$instance {
|
|
|
805
919
|
static DisplayName(entityType: TypeBase): string;
|
|
806
920
|
static GetComplexProperty(type: ITypeBase, name: string): IComplexProperty;
|
|
807
921
|
static GetOwnedName(type: IReadOnlyTypeBase, simpleName: string, ownershipNavigation: string): string;
|
|
808
|
-
static GetRuntimeFields(type: IReadOnlyTypeBase):
|
|
809
|
-
static GetRuntimeProperties(type: IReadOnlyTypeBase):
|
|
922
|
+
static GetRuntimeFields(type: IReadOnlyTypeBase): IReadOnlyDictionary_2<System_Internal.String, FieldInfo>;
|
|
923
|
+
static GetRuntimeProperties(type: IReadOnlyTypeBase): IReadOnlyDictionary_2<System_Internal.String, PropertyInfo>;
|
|
810
924
|
static ShortName(entityType: TypeBase): string;
|
|
811
925
|
}
|
|
812
926
|
|