@tsonic/efcore 10.0.3 → 10.0.5
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 +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -35,6 +35,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
35
35
|
import type { Task, ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.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,6 +46,8 @@ 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;
|
|
@@ -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,6 +77,8 @@ export interface IDbContextDependencies$instance {
|
|
|
71
77
|
export type IDbContextDependencies = IDbContextDependencies$instance;
|
|
72
78
|
|
|
73
79
|
export interface IDbContextFactorySource_1$instance<TContext extends DbContext> {
|
|
80
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextFactorySource_1: never;
|
|
81
|
+
|
|
74
82
|
readonly Factory: Func<IServiceProvider, DbContextOptions_1<TContext>, TContext>;
|
|
75
83
|
}
|
|
76
84
|
|
|
@@ -78,6 +86,8 @@ export interface IDbContextFactorySource_1$instance<TContext extends DbContext>
|
|
|
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,6 +139,8 @@ 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
146
|
GetSets(): IEnumerable__System_Collections_Generic<unknown>;
|
|
@@ -132,6 +150,8 @@ export interface IDbSetCache$instance {
|
|
|
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,6 +169,8 @@ 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
175
|
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask<unknown>;
|
|
152
176
|
FindEntry<TProperty>(property: IProperty, propertyValue: TProperty): InternalEntityEntry | undefined;
|
|
@@ -166,6 +190,8 @@ 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
197
|
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask<TEntity>;
|
|
@@ -188,6 +214,8 @@ export interface IEntityFinder_1$instance<TEntity> extends IEntityFinder {
|
|
|
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,6 +232,8 @@ 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
239
|
Injected(context: DbContext, entity: unknown, queryTrackingBehavior: Nullable<QueryTrackingBehavior>, structuralType: ITypeBase): void;
|
|
@@ -211,6 +243,8 @@ export interface IInjectableService$instance {
|
|
|
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,6 +252,8 @@ export interface IPatchServiceInjectionSite$instance {
|
|
|
218
252
|
export type IPatchServiceInjectionSite = IPatchServiceInjectionSite$instance;
|
|
219
253
|
|
|
220
254
|
export interface IRegisteredServices$instance {
|
|
255
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IRegisteredServices: never;
|
|
256
|
+
|
|
221
257
|
readonly Services: ISet<Type>;
|
|
222
258
|
}
|
|
223
259
|
|
|
@@ -225,6 +261,8 @@ export interface IRegisteredServices$instance {
|
|
|
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
|
|
|
@@ -258,6 +298,9 @@ export const DbContextLease: {
|
|
|
258
298
|
export type DbContextLease = DbContextLease$instance;
|
|
259
299
|
|
|
260
300
|
export interface DbContextDependencies$instance {
|
|
301
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies: never;
|
|
302
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
303
|
+
|
|
261
304
|
readonly ChangeDetector: IChangeDetector;
|
|
262
305
|
readonly EntityFinderFactory: IEntityFinderFactory;
|
|
263
306
|
readonly EntityGraphAttacher: IEntityGraphAttacher;
|
|
@@ -284,12 +327,14 @@ export interface __DbContextDependencies$views {
|
|
|
284
327
|
As_IDbContextDependencies(): IDbContextDependencies$instance;
|
|
285
328
|
}
|
|
286
329
|
|
|
287
|
-
export interface DbContextDependencies$instance extends IDbContextDependencies$instance {}
|
|
330
|
+
export interface DbContextDependencies$instance extends IDbContextDependencies$instance, System_Internal.IEquatable<DbContextDependencies> {}
|
|
288
331
|
|
|
289
332
|
export type DbContextDependencies = DbContextDependencies$instance & __DbContextDependencies$views;
|
|
290
333
|
|
|
291
334
|
|
|
292
335
|
export interface DbContextFactory_1$instance<TContext extends DbContext> {
|
|
336
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
|
|
337
|
+
|
|
293
338
|
CreateDbContext(): TContext;
|
|
294
339
|
CreateDbContextAsync(cancellationToken?: CancellationToken): Task<TContext>;
|
|
295
340
|
}
|
|
@@ -310,6 +355,8 @@ export type DbContextFactory_1<TContext extends DbContext> = DbContextFactory_1$
|
|
|
310
355
|
|
|
311
356
|
|
|
312
357
|
export interface DbContextFactorySource_1$instance<TContext extends DbContext> {
|
|
358
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextFactorySource_1: never;
|
|
359
|
+
|
|
313
360
|
readonly Factory: Func<IServiceProvider, DbContextOptions_1<TContext>, TContext>;
|
|
314
361
|
}
|
|
315
362
|
|
|
@@ -329,6 +376,11 @@ export type DbContextFactorySource_1<TContext extends DbContext> = DbContextFact
|
|
|
329
376
|
|
|
330
377
|
|
|
331
378
|
export interface DbContextPool_1$instance<TContext extends DbContext> extends IDbContextPool_1<TContext> {
|
|
379
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool: never;
|
|
380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPool_1: never;
|
|
381
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
382
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
383
|
+
|
|
332
384
|
Dispose(): void;
|
|
333
385
|
DisposeAsync(): ValueTask;
|
|
334
386
|
Rent(): IDbContextPoolable;
|
|
@@ -347,6 +399,8 @@ export interface __DbContextPool_1$views<TContext extends DbContext> {
|
|
|
347
399
|
As_IDbContextPool(): IDbContextPool$instance;
|
|
348
400
|
}
|
|
349
401
|
|
|
402
|
+
export interface DbContextPool_1$instance<TContext extends DbContext> extends System_Internal.IAsyncDisposable, System_Internal.IDisposable {}
|
|
403
|
+
|
|
350
404
|
export type DbContextPool_1<TContext extends DbContext> = DbContextPool_1$instance<TContext> & __DbContextPool_1$views<TContext>;
|
|
351
405
|
|
|
352
406
|
|
|
@@ -384,6 +438,8 @@ export const DbContextPoolConfigurationSnapshot: {
|
|
|
384
438
|
export type DbContextPoolConfigurationSnapshot = DbContextPoolConfigurationSnapshot$instance;
|
|
385
439
|
|
|
386
440
|
export interface DbContextServices$instance {
|
|
441
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextServices: never;
|
|
442
|
+
|
|
387
443
|
readonly ContextOptions: DbContextOptions;
|
|
388
444
|
readonly CurrentContext: ICurrentDbContext;
|
|
389
445
|
readonly DesignTimeModel: IModel;
|
|
@@ -408,6 +464,8 @@ export type DbContextServices = DbContextServices$instance & __DbContextServices
|
|
|
408
464
|
|
|
409
465
|
|
|
410
466
|
export interface DbSetInitializer$instance {
|
|
467
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetInitializer: never;
|
|
468
|
+
|
|
411
469
|
InitializeSets(context: DbContext): void;
|
|
412
470
|
}
|
|
413
471
|
|
|
@@ -427,6 +485,8 @@ export type DbSetInitializer = DbSetInitializer$instance & __DbSetInitializer$vi
|
|
|
427
485
|
|
|
428
486
|
|
|
429
487
|
export interface DbSetSource$instance {
|
|
488
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetSource: never;
|
|
489
|
+
|
|
430
490
|
Create(context: DbContext, type: Type): unknown;
|
|
431
491
|
Create(context: DbContext, name: string, type: Type): unknown;
|
|
432
492
|
}
|
|
@@ -447,6 +507,9 @@ export type DbSetSource = DbSetSource$instance & __DbSetSource$views;
|
|
|
447
507
|
|
|
448
508
|
|
|
449
509
|
export interface EntityFinder_1$instance<TEntity> {
|
|
510
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder: never;
|
|
511
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinder_1: never;
|
|
512
|
+
|
|
450
513
|
Find(keyValues: unknown[]): TEntity | undefined;
|
|
451
514
|
FindAsync(keyValues: unknown[], cancellationToken?: CancellationToken): ValueTask<TEntity>;
|
|
452
515
|
FindEntry<TKey>(keyValue: TKey): InternalEntityEntry | undefined;
|
|
@@ -477,6 +540,8 @@ export type EntityFinder_1<TEntity> = EntityFinder_1$instance<TEntity> & __Entit
|
|
|
477
540
|
|
|
478
541
|
|
|
479
542
|
export interface EntityFinderCollectionLoaderAdapter$instance {
|
|
543
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader: never;
|
|
544
|
+
|
|
480
545
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
481
546
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
482
547
|
Query(entry: InternalEntityEntry): IQueryable;
|
|
@@ -498,6 +563,8 @@ export type EntityFinderCollectionLoaderAdapter = EntityFinderCollectionLoaderAd
|
|
|
498
563
|
|
|
499
564
|
|
|
500
565
|
export interface EntityFinderFactory$instance {
|
|
566
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderFactory: never;
|
|
567
|
+
|
|
501
568
|
Create(type: IEntityType): IEntityFinder;
|
|
502
569
|
}
|
|
503
570
|
|
|
@@ -517,6 +584,8 @@ export type EntityFinderFactory = EntityFinderFactory$instance & __EntityFinderF
|
|
|
517
584
|
|
|
518
585
|
|
|
519
586
|
export interface EntityFinderSource$instance {
|
|
587
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IEntityFinderSource: never;
|
|
588
|
+
|
|
520
589
|
Create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type: IEntityType): IEntityFinder;
|
|
521
590
|
}
|
|
522
591
|
|
|
@@ -536,6 +605,15 @@ export type EntityFinderSource = EntityFinderSource$instance & __EntityFinderSou
|
|
|
536
605
|
|
|
537
606
|
|
|
538
607
|
export interface InternalDbSet_1$instance<TEntity> extends DbSet_1<TEntity> {
|
|
608
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
609
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
610
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
611
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
612
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
613
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
614
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
615
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
616
|
+
|
|
539
617
|
readonly EntityType: IEntityType;
|
|
540
618
|
readonly Local: LocalView_1<TEntity>;
|
|
541
619
|
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
@@ -583,12 +661,15 @@ export interface __InternalDbSet_1$views<TEntity> {
|
|
|
583
661
|
As_IResettableService(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance;
|
|
584
662
|
}
|
|
585
663
|
|
|
586
|
-
export interface InternalDbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
664
|
+
export interface InternalDbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance, System_Collections_Generic_Internal.IAsyncEnumerable<TEntity>, System_Collections_Generic_Internal.IEnumerable<TEntity>, System_ComponentModel_Internal.IListSource, System_Linq_Internal.IQueryable<TEntity> {}
|
|
587
665
|
|
|
588
666
|
export type InternalDbSet_1<TEntity> = InternalDbSet_1$instance<TEntity> & __InternalDbSet_1$views<TEntity>;
|
|
589
667
|
|
|
590
668
|
|
|
591
669
|
export interface ManyToManyLoader_2$instance<TEntity, TSourceEntity> {
|
|
670
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader: never;
|
|
671
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ICollectionLoader_1: never;
|
|
672
|
+
|
|
592
673
|
Load(entry: InternalEntityEntry, options: LoadOptions): void;
|
|
593
674
|
LoadAsync(entry: InternalEntityEntry, options: LoadOptions, cancellationToken?: CancellationToken): Task;
|
|
594
675
|
Query(entry: InternalEntityEntry): IQueryable<TEntity>;
|
|
@@ -621,6 +702,8 @@ export const ManyToManyLoaderFactory: {
|
|
|
621
702
|
export type ManyToManyLoaderFactory = ManyToManyLoaderFactory$instance;
|
|
622
703
|
|
|
623
704
|
export interface NullableComparerAdapter_1$instance<TNullableKey> {
|
|
705
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
706
|
+
|
|
624
707
|
Equals(x: TNullableKey, y: TNullableKey): boolean;
|
|
625
708
|
GetHashCode(obj: TNullableKey): int;
|
|
626
709
|
}
|
|
@@ -634,6 +717,8 @@ export const NullableComparerAdapter_1: {
|
|
|
634
717
|
export type NullableComparerAdapter_1<TNullableKey> = NullableComparerAdapter_1$instance<TNullableKey>;
|
|
635
718
|
|
|
636
719
|
export interface RegisteredServices$instance {
|
|
720
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IRegisteredServices: never;
|
|
721
|
+
|
|
637
722
|
readonly Services: ISet<Type>;
|
|
638
723
|
}
|
|
639
724
|
|
|
@@ -653,6 +738,10 @@ export type RegisteredServices = RegisteredServices$instance & __RegisteredServi
|
|
|
653
738
|
|
|
654
739
|
|
|
655
740
|
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> {
|
|
741
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IScopedDbContextLease_1: never;
|
|
742
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
743
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
744
|
+
|
|
656
745
|
readonly Context: TContext;
|
|
657
746
|
}
|
|
658
747
|
|
|
@@ -666,12 +755,14 @@ export interface __ScopedDbContextLease_1$views<TContext extends DbContext> {
|
|
|
666
755
|
As_IScopedDbContextLease_1(): IScopedDbContextLease_1$instance<TContext>;
|
|
667
756
|
}
|
|
668
757
|
|
|
669
|
-
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> extends IScopedDbContextLease_1$instance<TContext
|
|
758
|
+
export interface ScopedDbContextLease_1$instance<TContext extends DbContext> extends IScopedDbContextLease_1$instance<TContext>, System_Internal.IAsyncDisposable, System_Internal.IDisposable {}
|
|
670
759
|
|
|
671
760
|
export type ScopedDbContextLease_1<TContext extends DbContext> = ScopedDbContextLease_1$instance<TContext> & __ScopedDbContextLease_1$views<TContext>;
|
|
672
761
|
|
|
673
762
|
|
|
674
763
|
export interface SemanticVersionComparer$instance {
|
|
764
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
765
|
+
|
|
675
766
|
Compare(x: string, y: string): int;
|
|
676
767
|
}
|
|
677
768
|
|
|
@@ -697,6 +788,8 @@ export const ServiceProviderCache: {
|
|
|
697
788
|
export type ServiceProviderCache = ServiceProviderCache$instance;
|
|
698
789
|
|
|
699
790
|
export interface SingletonOptionsInitializer$instance {
|
|
791
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_ISingletonOptionsInitializer: never;
|
|
792
|
+
|
|
700
793
|
EnsureInitialized(serviceProvider: IServiceProvider, options: IDbContextOptions): void;
|
|
701
794
|
}
|
|
702
795
|
|
|
@@ -716,6 +809,9 @@ export type SingletonOptionsInitializer = SingletonOptionsInitializer$instance &
|
|
|
716
809
|
|
|
717
810
|
|
|
718
811
|
export interface TypeFullNameComparer$instance {
|
|
812
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
813
|
+
readonly __tsonic_iface_System_Collections_Generic_IEqualityComparer_1: never;
|
|
814
|
+
|
|
719
815
|
Compare(x: Type, y: Type): int;
|
|
720
816
|
Equals(x: Type, y: Type): boolean;
|
|
721
817
|
GetHashCode(obj: Type): int;
|