@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
|
@@ -13,28 +13,34 @@ import * as Microsoft_EntityFrameworkCore_Internal_Internal from "../../Microsof
|
|
|
13
13
|
import type { IInjectableService } from "../../Microsoft.EntityFrameworkCore.Internal/internal/index.js";
|
|
14
14
|
import type { IEntityType, ITypeBase } from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
15
15
|
import type { DbContext, DbContextOptionsBuilder, DbLoggerCategory_Infrastructure, QueryTrackingBehavior } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
16
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
17
|
-
import type {
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import {
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import type {
|
|
24
|
-
import type { IServiceCollection, ServiceDescriptor, ServiceLifetime } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
16
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
17
|
+
import type { IComparer_1, IList_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
18
|
+
import { MemberInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
19
|
+
import * as System_Reflection_Internal from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
20
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
21
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
22
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
23
|
+
import type { Action_2, Boolean as ClrBoolean, IDisposable, Int32, IServiceProvider, Nullable_1, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
24
|
+
import type { IServiceCollection, ServiceDescriptor, ServiceLifetime } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
25
25
|
|
|
26
26
|
export interface ILazyLoaderFactory$instance extends IDisposable, IResettableService {
|
|
27
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_Internal_ILazyLoaderFactory: never;
|
|
28
|
+
|
|
27
29
|
Create(): ILazyLoader;
|
|
28
30
|
ResetState(): void;
|
|
29
31
|
ResetStateAsync(cancellationToken?: CancellationToken): Task;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
|
|
33
|
-
export interface ILazyLoaderFactory$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance {}
|
|
35
|
+
export interface ILazyLoaderFactory$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IResettableService$instance, System_Internal.IDisposable {}
|
|
34
36
|
|
|
35
37
|
export type ILazyLoaderFactory = ILazyLoaderFactory$instance;
|
|
36
38
|
|
|
37
|
-
export interface ConcurrencyDetector$instance {
|
|
39
|
+
export interface ConcurrencyDetector$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IConcurrencyDetector$instance {
|
|
40
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_ConcurrencyDetector: never;
|
|
41
|
+
|
|
42
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IConcurrencyDetector: never;
|
|
43
|
+
|
|
38
44
|
EnterCriticalSection(): ConcurrencyDetectorCriticalSectionDisposer;
|
|
39
45
|
ExitCriticalSection(): void;
|
|
40
46
|
}
|
|
@@ -49,12 +55,15 @@ export interface __ConcurrencyDetector$views {
|
|
|
49
55
|
As_IConcurrencyDetector(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IConcurrencyDetector$instance;
|
|
50
56
|
}
|
|
51
57
|
|
|
52
|
-
export interface ConcurrencyDetector$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IConcurrencyDetector$instance {}
|
|
53
|
-
|
|
54
58
|
export type ConcurrencyDetector = ConcurrencyDetector$instance & __ConcurrencyDetector$views;
|
|
55
59
|
|
|
56
60
|
|
|
57
61
|
export interface CoreSingletonOptions$instance {
|
|
62
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_CoreSingletonOptions: never;
|
|
63
|
+
|
|
64
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICoreSingletonOptions: never;
|
|
65
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ISingletonOptions: never;
|
|
66
|
+
|
|
58
67
|
AreDetailedErrorsEnabled: boolean;
|
|
59
68
|
AreThreadSafetyChecksEnabled: boolean;
|
|
60
69
|
get RootApplicationServiceProvider(): IServiceProvider | undefined;
|
|
@@ -77,7 +86,11 @@ export interface __CoreSingletonOptions$views {
|
|
|
77
86
|
export type CoreSingletonOptions = CoreSingletonOptions$instance & __CoreSingletonOptions$views;
|
|
78
87
|
|
|
79
88
|
|
|
80
|
-
export interface CurrentDbContext$instance {
|
|
89
|
+
export interface CurrentDbContext$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.ICurrentDbContext$instance {
|
|
90
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_CurrentDbContext: never;
|
|
91
|
+
|
|
92
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ICurrentDbContext: never;
|
|
93
|
+
|
|
81
94
|
readonly Context: DbContext;
|
|
82
95
|
}
|
|
83
96
|
|
|
@@ -91,18 +104,20 @@ export interface __CurrentDbContext$views {
|
|
|
91
104
|
As_ICurrentDbContext(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.ICurrentDbContext$instance;
|
|
92
105
|
}
|
|
93
106
|
|
|
94
|
-
export interface CurrentDbContext$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.ICurrentDbContext$instance {}
|
|
95
|
-
|
|
96
107
|
export type CurrentDbContext = CurrentDbContext$instance & __CurrentDbContext$views;
|
|
97
108
|
|
|
98
109
|
|
|
99
|
-
export interface DbContextOptionsConfiguration_1$instance<TContext extends DbContext> {
|
|
110
|
+
export interface DbContextOptionsConfiguration_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsConfiguration_1$instance<TContext> {
|
|
111
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_DbContextOptionsConfiguration_1: never;
|
|
112
|
+
|
|
113
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsConfiguration_1: never;
|
|
114
|
+
|
|
100
115
|
Configure(serviceProvider: IServiceProvider, optionsBuilder: DbContextOptionsBuilder): void;
|
|
101
116
|
}
|
|
102
117
|
|
|
103
118
|
|
|
104
119
|
export const DbContextOptionsConfiguration_1: {
|
|
105
|
-
new<TContext extends DbContext>(configure:
|
|
120
|
+
new<TContext extends DbContext>(configure: Action_2<IServiceProvider, DbContextOptionsBuilder>): DbContextOptionsConfiguration_1<TContext>;
|
|
106
121
|
};
|
|
107
122
|
|
|
108
123
|
|
|
@@ -110,13 +125,15 @@ export interface __DbContextOptionsConfiguration_1$views<TContext extends DbCont
|
|
|
110
125
|
As_IDbContextOptionsConfiguration_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsConfiguration_1$instance<TContext>;
|
|
111
126
|
}
|
|
112
127
|
|
|
113
|
-
export interface DbContextOptionsConfiguration_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsConfiguration_1$instance<TContext> {}
|
|
114
|
-
|
|
115
128
|
export type DbContextOptionsConfiguration_1<TContext extends DbContext> = DbContextOptionsConfiguration_1$instance<TContext> & __DbContextOptionsConfiguration_1$views<TContext>;
|
|
116
129
|
|
|
117
130
|
|
|
118
|
-
export interface DbSetFinder$instance {
|
|
119
|
-
|
|
131
|
+
export interface DbSetFinder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbSetFinder$instance {
|
|
132
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_DbSetFinder: never;
|
|
133
|
+
|
|
134
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbSetFinder: never;
|
|
135
|
+
|
|
136
|
+
FindSets(contextType: Type): IReadOnlyList_1<DbSetProperty>;
|
|
120
137
|
}
|
|
121
138
|
|
|
122
139
|
|
|
@@ -129,12 +146,12 @@ export interface __DbSetFinder$views {
|
|
|
129
146
|
As_IDbSetFinder(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbSetFinder$instance;
|
|
130
147
|
}
|
|
131
148
|
|
|
132
|
-
export interface DbSetFinder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbSetFinder$instance {}
|
|
133
|
-
|
|
134
149
|
export type DbSetFinder = DbSetFinder$instance & __DbSetFinder$views;
|
|
135
150
|
|
|
136
151
|
|
|
137
152
|
export interface EntityFrameworkMetrics$instance {
|
|
153
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_EntityFrameworkMetrics: never;
|
|
154
|
+
|
|
138
155
|
}
|
|
139
156
|
|
|
140
157
|
|
|
@@ -154,13 +171,15 @@ export const EntityFrameworkMetrics: {
|
|
|
154
171
|
export type EntityFrameworkMetrics = EntityFrameworkMetrics$instance;
|
|
155
172
|
|
|
156
173
|
export interface InternalServiceCollectionMap$instance {
|
|
174
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_InternalServiceCollectionMap: never;
|
|
175
|
+
|
|
157
176
|
readonly ServiceCollection: IServiceCollection;
|
|
158
177
|
AddDependency(serviceType: Type, lifetime: ServiceLifetime): IInternalServiceCollectionMap;
|
|
159
178
|
AddDependencyScoped<TDependencies>(): IInternalServiceCollectionMap;
|
|
160
179
|
AddDependencySingleton<TDependencies>(): IInternalServiceCollectionMap;
|
|
161
|
-
AddNewDescriptor(indexes:
|
|
180
|
+
AddNewDescriptor(indexes: IList_1<System_Internal.Int32>, newDescriptor: ServiceDescriptor): void;
|
|
162
181
|
DoPatchInjection<TService>(): InternalServiceCollectionMap;
|
|
163
|
-
GetOrCreateDescriptorIndexes(serviceType: Type):
|
|
182
|
+
GetOrCreateDescriptorIndexes(serviceType: Type): IList_1<System_Internal.Int32>;
|
|
164
183
|
}
|
|
165
184
|
|
|
166
185
|
|
|
@@ -171,14 +190,19 @@ export const InternalServiceCollectionMap: {
|
|
|
171
190
|
|
|
172
191
|
export type InternalServiceCollectionMap = InternalServiceCollectionMap$instance;
|
|
173
192
|
|
|
174
|
-
export interface LazyLoader$instance {
|
|
193
|
+
export interface LazyLoader$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.ILazyLoader$instance, Microsoft_EntityFrameworkCore_Internal_Internal.IInjectableService$instance {
|
|
194
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_LazyLoader: never;
|
|
195
|
+
|
|
196
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader: never;
|
|
197
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IInjectableService: never;
|
|
198
|
+
|
|
175
199
|
get Context(): DbContext | undefined;
|
|
176
200
|
set Context(value: DbContext | undefined);
|
|
177
201
|
readonly Logger: IDiagnosticsLogger_1<DbLoggerCategory_Infrastructure>;
|
|
178
202
|
Attaching(context: DbContext, entityType: IEntityType, entity: unknown): void;
|
|
179
203
|
Detaching(context: DbContext, entity: unknown): boolean;
|
|
180
204
|
Dispose(): void;
|
|
181
|
-
Injected(context: DbContext, entity: unknown, queryTrackingBehavior:
|
|
205
|
+
Injected(context: DbContext, entity: unknown, queryTrackingBehavior: Nullable_1<QueryTrackingBehavior>, structuralType: ITypeBase): void;
|
|
182
206
|
IsLoaded(entity: unknown, navigationName?: string): boolean;
|
|
183
207
|
Load(entity: unknown, navigationName?: string): void;
|
|
184
208
|
LoadAsync(entity: unknown, cancellationToken?: CancellationToken, navigationName?: string): Task;
|
|
@@ -196,12 +220,16 @@ export interface __LazyLoader$views {
|
|
|
196
220
|
As_ILazyLoader(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.ILazyLoader$instance;
|
|
197
221
|
}
|
|
198
222
|
|
|
199
|
-
export interface LazyLoader$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.ILazyLoader$instance, Microsoft_EntityFrameworkCore_Internal_Internal.IInjectableService$instance {}
|
|
200
|
-
|
|
201
223
|
export type LazyLoader = LazyLoader$instance & __LazyLoader$views;
|
|
202
224
|
|
|
203
225
|
|
|
204
226
|
export interface LazyLoaderFactory$instance {
|
|
227
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_LazyLoaderFactory: never;
|
|
228
|
+
|
|
229
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
230
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_Internal_ILazyLoaderFactory: never;
|
|
231
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
232
|
+
|
|
205
233
|
Create(): ILazyLoader;
|
|
206
234
|
Dispose(): void;
|
|
207
235
|
ResetState(): void;
|
|
@@ -223,6 +251,10 @@ export type LazyLoaderFactory = LazyLoaderFactory$instance & __LazyLoaderFactory
|
|
|
223
251
|
|
|
224
252
|
|
|
225
253
|
export interface MemberInfoNameComparer$instance {
|
|
254
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Infrastructure_Internal_MemberInfoNameComparer: never;
|
|
255
|
+
|
|
256
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
257
|
+
|
|
226
258
|
Compare(x: MemberInfo, y: MemberInfo): int;
|
|
227
259
|
}
|
|
228
260
|
|