@tsonic/efcore 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +601 -531
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +203 -166
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +388 -327
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +221 -155
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +141 -123
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1275 -1307
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +553 -519
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +26 -22
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1576 -1343
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +359 -242
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +53 -37
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1462 -1465
- package/package.json +4 -4
|
@@ -16,21 +16,23 @@ import type { IDbContextOptions, ISingletonOptions } from "../../Microsoft.Entit
|
|
|
16
16
|
import type { IRelationalConnection } from "../../Microsoft.EntityFrameworkCore.Storage/internal/index.js";
|
|
17
17
|
import * as Microsoft_EntityFrameworkCore_Internal from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
18
18
|
import type { DbContext, DbLoggerCategory_Database_Command, DbLoggerCategory_Database_Connection, EntityState } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
19
|
-
import type {
|
|
20
|
-
import type { DbCommand, DbConnection, DbDataReader } from "@tsonic/dotnet/System.Data.Common.js";
|
|
21
|
-
import type { CommandType } from "@tsonic/dotnet/System.Data.js";
|
|
22
|
-
import type { DiagnosticSource } from "@tsonic/dotnet/System.Diagnostics.js";
|
|
23
|
-
import
|
|
24
|
-
import type {
|
|
25
|
-
import
|
|
26
|
-
import type {
|
|
27
|
-
import * as Microsoft_Extensions_Logging_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
28
|
-
import type { EventId, ILogger, ILoggerFactory, ILoggerProvider, LogLevel } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
19
|
+
import type { IEnumerable_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
20
|
+
import type { DbCommand, DbConnection, DbDataReader } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
21
|
+
import type { CommandType } from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
22
|
+
import type { DiagnosticSource } from "@tsonic/dotnet/System.Diagnostics/internal/index.js";
|
|
23
|
+
import type { Task, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
24
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
25
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
26
|
+
import type { Action_1, Boolean as ClrBoolean, DateTimeOffset, Exception, Func_3, Guid, IDisposable, Int32, IServiceProvider, Object as ClrObject, String as ClrString, TimeSpan, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
27
|
+
import * as Microsoft_Extensions_Logging_Internal from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
28
|
+
import type { EventId, ILogger, ILoggerFactory, ILoggerProvider, LogLevel } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
29
29
|
|
|
30
30
|
export interface DbCommandInterceptorAggregator$instance extends InterceptorAggregator_1<IDbCommandInterceptor> {
|
|
31
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_DbCommandInterceptorAggregator: never;
|
|
32
|
+
|
|
31
33
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
32
34
|
|
|
33
|
-
AggregateInterceptors(interceptors:
|
|
35
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
|
|
@@ -47,9 +49,11 @@ export type DbCommandInterceptorAggregator = DbCommandInterceptorAggregator$inst
|
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
export interface DbConnectionInterceptorAggregator$instance extends InterceptorAggregator_1<IDbConnectionInterceptor> {
|
|
52
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_DbConnectionInterceptorAggregator: never;
|
|
53
|
+
|
|
50
54
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
51
55
|
|
|
52
|
-
AggregateInterceptors(interceptors:
|
|
56
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
53
57
|
}
|
|
54
58
|
|
|
55
59
|
|
|
@@ -66,9 +70,11 @@ export type DbConnectionInterceptorAggregator = DbConnectionInterceptorAggregato
|
|
|
66
70
|
|
|
67
71
|
|
|
68
72
|
export interface DbTransactionInterceptorAggregator$instance extends InterceptorAggregator_1<IDbTransactionInterceptor> {
|
|
73
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_DbTransactionInterceptorAggregator: never;
|
|
74
|
+
|
|
69
75
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
70
76
|
|
|
71
|
-
AggregateInterceptors(interceptors:
|
|
77
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
72
78
|
}
|
|
73
79
|
|
|
74
80
|
|
|
@@ -84,7 +90,9 @@ export interface __DbTransactionInterceptorAggregator$views {
|
|
|
84
90
|
export type DbTransactionInterceptorAggregator = DbTransactionInterceptorAggregator$instance & __DbTransactionInterceptorAggregator$views;
|
|
85
91
|
|
|
86
92
|
|
|
87
|
-
export interface DelegatingDbContextLogger$instance {
|
|
93
|
+
export interface DelegatingDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {
|
|
94
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_DelegatingDbContextLogger: never;
|
|
95
|
+
|
|
88
96
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbContextLogger: never;
|
|
89
97
|
|
|
90
98
|
Log(eventData: EventData): void;
|
|
@@ -93,7 +101,7 @@ export interface DelegatingDbContextLogger$instance {
|
|
|
93
101
|
|
|
94
102
|
|
|
95
103
|
export const DelegatingDbContextLogger: {
|
|
96
|
-
new(logger:
|
|
104
|
+
new(logger: Action_1<EventData>, filter: Func_3<EventId, LogLevel, System_Internal.Boolean>): DelegatingDbContextLogger;
|
|
97
105
|
};
|
|
98
106
|
|
|
99
107
|
|
|
@@ -101,12 +109,12 @@ export interface __DelegatingDbContextLogger$views {
|
|
|
101
109
|
As_IDbContextLogger(): Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance;
|
|
102
110
|
}
|
|
103
111
|
|
|
104
|
-
export interface DelegatingDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {}
|
|
105
|
-
|
|
106
112
|
export type DelegatingDbContextLogger = DelegatingDbContextLogger$instance & __DelegatingDbContextLogger$views;
|
|
107
113
|
|
|
108
114
|
|
|
109
115
|
export interface DiagnosticsLogger_1$instance<TLoggerCategory extends LoggerCategory_1<TLoggerCategory>> {
|
|
116
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_DiagnosticsLogger_1: never;
|
|
117
|
+
|
|
110
118
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger: never;
|
|
111
119
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1: never;
|
|
112
120
|
|
|
@@ -132,7 +140,9 @@ export interface __DiagnosticsLogger_1$views<TLoggerCategory extends LoggerCateg
|
|
|
132
140
|
export type DiagnosticsLogger_1<TLoggerCategory extends LoggerCategory_1<TLoggerCategory>> = DiagnosticsLogger_1$instance<TLoggerCategory> & __DiagnosticsLogger_1$views<TLoggerCategory>;
|
|
133
141
|
|
|
134
142
|
|
|
135
|
-
export interface FormattingDbContextLogger$instance {
|
|
143
|
+
export interface FormattingDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {
|
|
144
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_FormattingDbContextLogger: never;
|
|
145
|
+
|
|
136
146
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbContextLogger: never;
|
|
137
147
|
|
|
138
148
|
Log(eventData: EventData): void;
|
|
@@ -141,7 +151,7 @@ export interface FormattingDbContextLogger$instance {
|
|
|
141
151
|
|
|
142
152
|
|
|
143
153
|
export const FormattingDbContextLogger: {
|
|
144
|
-
new(sink:
|
|
154
|
+
new(sink: Action_1<System_Internal.String>, filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, options: DbContextLoggerOptions): FormattingDbContextLogger;
|
|
145
155
|
};
|
|
146
156
|
|
|
147
157
|
|
|
@@ -149,15 +159,15 @@ export interface __FormattingDbContextLogger$views {
|
|
|
149
159
|
As_IDbContextLogger(): Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance;
|
|
150
160
|
}
|
|
151
161
|
|
|
152
|
-
export interface FormattingDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {}
|
|
153
|
-
|
|
154
162
|
export type FormattingDbContextLogger = FormattingDbContextLogger$instance & __FormattingDbContextLogger$views;
|
|
155
163
|
|
|
156
164
|
|
|
157
165
|
export interface IdentityResolutionInterceptorAggregator$instance extends InterceptorAggregator_1<IIdentityResolutionInterceptor> {
|
|
166
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_IdentityResolutionInterceptorAggregator: never;
|
|
167
|
+
|
|
158
168
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
159
169
|
|
|
160
|
-
AggregateInterceptors(interceptors:
|
|
170
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
161
171
|
}
|
|
162
172
|
|
|
163
173
|
|
|
@@ -173,7 +183,9 @@ export interface __IdentityResolutionInterceptorAggregator$views {
|
|
|
173
183
|
export type IdentityResolutionInterceptorAggregator = IdentityResolutionInterceptorAggregator$instance & __IdentityResolutionInterceptorAggregator$views;
|
|
174
184
|
|
|
175
185
|
|
|
176
|
-
export interface Interceptors$instance {
|
|
186
|
+
export interface Interceptors$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IInterceptors$instance {
|
|
187
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_Interceptors: never;
|
|
188
|
+
|
|
177
189
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptors: never;
|
|
178
190
|
|
|
179
191
|
Aggregate<TInterceptor extends IInterceptor>(): TInterceptor | undefined;
|
|
@@ -181,7 +193,7 @@ export interface Interceptors$instance {
|
|
|
181
193
|
|
|
182
194
|
|
|
183
195
|
export const Interceptors: {
|
|
184
|
-
new(serviceProvider: IServiceProvider, injectedInterceptors:
|
|
196
|
+
new(serviceProvider: IServiceProvider, injectedInterceptors: IEnumerable_1<IInterceptor>, interceptorAggregators: IEnumerable_1<IInterceptorAggregator>): Interceptors;
|
|
185
197
|
};
|
|
186
198
|
|
|
187
199
|
|
|
@@ -189,12 +201,12 @@ export interface __Interceptors$views {
|
|
|
189
201
|
As_IInterceptors(): Microsoft_EntityFrameworkCore_Diagnostics_Internal.IInterceptors$instance;
|
|
190
202
|
}
|
|
191
203
|
|
|
192
|
-
export interface Interceptors$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IInterceptors$instance {}
|
|
193
|
-
|
|
194
204
|
export type Interceptors = Interceptors$instance & __Interceptors$views;
|
|
195
205
|
|
|
196
206
|
|
|
197
207
|
export interface LoggingOptions$instance {
|
|
208
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_LoggingOptions: never;
|
|
209
|
+
|
|
198
210
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ILoggingOptions: never;
|
|
199
211
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_ISingletonOptions: never;
|
|
200
212
|
|
|
@@ -222,9 +234,11 @@ export type LoggingOptions = LoggingOptions$instance & __LoggingOptions$views;
|
|
|
222
234
|
|
|
223
235
|
|
|
224
236
|
export interface MaterializationInterceptorAggregator$instance extends InterceptorAggregator_1<IMaterializationInterceptor> {
|
|
237
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_MaterializationInterceptorAggregator: never;
|
|
238
|
+
|
|
225
239
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
226
240
|
|
|
227
|
-
AggregateInterceptors(interceptors:
|
|
241
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
228
242
|
}
|
|
229
243
|
|
|
230
244
|
|
|
@@ -240,7 +254,9 @@ export interface __MaterializationInterceptorAggregator$views {
|
|
|
240
254
|
export type MaterializationInterceptorAggregator = MaterializationInterceptorAggregator$instance & __MaterializationInterceptorAggregator$views;
|
|
241
255
|
|
|
242
256
|
|
|
243
|
-
export interface NullDbContextLogger$instance {
|
|
257
|
+
export interface NullDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {
|
|
258
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_NullDbContextLogger: never;
|
|
259
|
+
|
|
244
260
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbContextLogger: never;
|
|
245
261
|
|
|
246
262
|
Log(eventData: EventData): void;
|
|
@@ -257,15 +273,15 @@ export interface __NullDbContextLogger$views {
|
|
|
257
273
|
As_IDbContextLogger(): Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance;
|
|
258
274
|
}
|
|
259
275
|
|
|
260
|
-
export interface NullDbContextLogger$instance extends Microsoft_EntityFrameworkCore_Diagnostics_Internal.IDbContextLogger$instance {}
|
|
261
|
-
|
|
262
276
|
export type NullDbContextLogger = NullDbContextLogger$instance & __NullDbContextLogger$views;
|
|
263
277
|
|
|
264
278
|
|
|
265
279
|
export interface QueryExpressionInterceptorAggregator$instance extends InterceptorAggregator_1<IQueryExpressionInterceptor> {
|
|
280
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_QueryExpressionInterceptorAggregator: never;
|
|
281
|
+
|
|
266
282
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
267
283
|
|
|
268
|
-
AggregateInterceptors(interceptors:
|
|
284
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
269
285
|
}
|
|
270
286
|
|
|
271
287
|
|
|
@@ -282,6 +298,8 @@ export type QueryExpressionInterceptorAggregator = QueryExpressionInterceptorAgg
|
|
|
282
298
|
|
|
283
299
|
|
|
284
300
|
export interface RelationalCommandDiagnosticsLogger$instance extends DiagnosticsLogger_1$instance<DbLoggerCategory_Database_Command> {
|
|
301
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_RelationalCommandDiagnosticsLogger: never;
|
|
302
|
+
|
|
285
303
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger: never;
|
|
286
304
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1: never;
|
|
287
305
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IRelationalCommandDiagnosticsLogger: never;
|
|
@@ -294,19 +312,19 @@ export interface RelationalCommandDiagnosticsLogger$instance extends Diagnostics
|
|
|
294
312
|
CommandErrorAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, executeMethod: DbCommandMethod, commandId: Guid, connectionId: Guid, exception: Exception, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken): Task;
|
|
295
313
|
CommandInitialized(connection: IRelationalConnection, command: DbCommand, commandMethod: DbCommandMethod, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): DbCommand;
|
|
296
314
|
CommandNonQueryExecuted(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: int, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): int;
|
|
297
|
-
CommandNonQueryExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: int, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
315
|
+
CommandNonQueryExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: int, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<System_Internal.Int32>;
|
|
298
316
|
CommandNonQueryExecuting(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource): InterceptionResult_1<System_Internal.Int32>;
|
|
299
|
-
CommandNonQueryExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
317
|
+
CommandNonQueryExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<InterceptionResult_1<System_Internal.Int32>>;
|
|
300
318
|
CommandReaderExecuted(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: DbDataReader, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): DbDataReader;
|
|
301
|
-
CommandReaderExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: DbDataReader, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
319
|
+
CommandReaderExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: DbDataReader, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<DbDataReader>;
|
|
302
320
|
CommandReaderExecuting(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource): InterceptionResult_1<DbDataReader>;
|
|
303
|
-
CommandReaderExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
321
|
+
CommandReaderExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<InterceptionResult_1<DbDataReader>>;
|
|
304
322
|
CommandScalarExecuted(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: unknown, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): unknown | undefined;
|
|
305
|
-
CommandScalarExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: unknown, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
323
|
+
CommandScalarExecutedAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, methodResult: unknown, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<unknown>;
|
|
306
324
|
CommandScalarExecuting(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource): InterceptionResult_1<unknown>;
|
|
307
|
-
CommandScalarExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken):
|
|
325
|
+
CommandScalarExecutingAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, commandSource: CommandSource, cancellationToken?: CancellationToken): ValueTask_1<InterceptionResult_1<unknown>>;
|
|
308
326
|
DataReaderClosing(connection: IRelationalConnection, command: DbCommand, dataReader: DbDataReader, commandId: Guid, recordsAffected: int, readCount: int, startTime: DateTimeOffset): InterceptionResult;
|
|
309
|
-
DataReaderClosingAsync(connection: IRelationalConnection, command: DbCommand, dataReader: DbDataReader, commandId: Guid, recordsAffected: int, readCount: int, startTime: DateTimeOffset):
|
|
327
|
+
DataReaderClosingAsync(connection: IRelationalConnection, command: DbCommand, dataReader: DbDataReader, commandId: Guid, recordsAffected: int, readCount: int, startTime: DateTimeOffset): ValueTask_1<InterceptionResult>;
|
|
310
328
|
DataReaderDisposing(connection: IRelationalConnection, command: DbCommand, dataReader: DbDataReader, commandId: Guid, recordsAffected: int, readCount: int, startTime: DateTimeOffset, duration: TimeSpan): InterceptionResult;
|
|
311
329
|
NeedsEventData2(definition: EventDefinitionBase, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
312
330
|
ShouldLogCommandCreate(now: DateTimeOffset): boolean;
|
|
@@ -331,6 +349,8 @@ export type RelationalCommandDiagnosticsLogger = RelationalCommandDiagnosticsLog
|
|
|
331
349
|
|
|
332
350
|
|
|
333
351
|
export interface RelationalConnectionDiagnosticsLogger$instance extends DiagnosticsLogger_1$instance<DbLoggerCategory_Database_Connection> {
|
|
352
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_RelationalConnectionDiagnosticsLogger: never;
|
|
353
|
+
|
|
334
354
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger: never;
|
|
335
355
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1: never;
|
|
336
356
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IRelationalConnectionDiagnosticsLogger: never;
|
|
@@ -340,19 +360,19 @@ export interface RelationalConnectionDiagnosticsLogger$instance extends Diagnost
|
|
|
340
360
|
ConnectionClosed(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): void;
|
|
341
361
|
ConnectionClosedAsync(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): Task;
|
|
342
362
|
ConnectionClosing(connection: IRelationalConnection, startTime: DateTimeOffset): InterceptionResult;
|
|
343
|
-
ConnectionClosingAsync(connection: IRelationalConnection, startTime: DateTimeOffset):
|
|
363
|
+
ConnectionClosingAsync(connection: IRelationalConnection, startTime: DateTimeOffset): ValueTask_1<InterceptionResult>;
|
|
344
364
|
ConnectionCreated(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): DbConnection;
|
|
345
365
|
ConnectionCreating(connection: IRelationalConnection, startTime: DateTimeOffset): InterceptionResult_1<DbConnection>;
|
|
346
366
|
ConnectionDisposed(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): void;
|
|
347
367
|
ConnectionDisposedAsync(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): Task;
|
|
348
368
|
ConnectionDisposing(connection: IRelationalConnection, startTime: DateTimeOffset): InterceptionResult;
|
|
349
|
-
ConnectionDisposingAsync(connection: IRelationalConnection, startTime: DateTimeOffset):
|
|
369
|
+
ConnectionDisposingAsync(connection: IRelationalConnection, startTime: DateTimeOffset): ValueTask_1<InterceptionResult>;
|
|
350
370
|
ConnectionError(connection: IRelationalConnection, exception: Exception, startTime: DateTimeOffset, duration: TimeSpan, logErrorAsDebug: boolean): void;
|
|
351
371
|
ConnectionErrorAsync(connection: IRelationalConnection, exception: Exception, startTime: DateTimeOffset, duration: TimeSpan, logErrorAsDebug: boolean, cancellationToken?: CancellationToken): Task;
|
|
352
372
|
ConnectionOpened(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): void;
|
|
353
373
|
ConnectionOpenedAsync(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan, cancellationToken?: CancellationToken): Task;
|
|
354
374
|
ConnectionOpening(connection: IRelationalConnection, startTime: DateTimeOffset): InterceptionResult;
|
|
355
|
-
ConnectionOpeningAsync(connection: IRelationalConnection, startTime: DateTimeOffset, cancellationToken: CancellationToken):
|
|
375
|
+
ConnectionOpeningAsync(connection: IRelationalConnection, startTime: DateTimeOffset, cancellationToken: CancellationToken): ValueTask_1<InterceptionResult>;
|
|
356
376
|
NeedsEventData2(definition: EventDefinitionBase, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
357
377
|
ShouldLogConnectionClose(now: DateTimeOffset): boolean;
|
|
358
378
|
ShouldLogConnectionCreate(now: DateTimeOffset): boolean;
|
|
@@ -376,9 +396,11 @@ export type RelationalConnectionDiagnosticsLogger = RelationalConnectionDiagnost
|
|
|
376
396
|
|
|
377
397
|
|
|
378
398
|
export interface SaveChangesInterceptorAggregator$instance extends InterceptorAggregator_1<ISaveChangesInterceptor> {
|
|
399
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_SaveChangesInterceptorAggregator: never;
|
|
400
|
+
|
|
379
401
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
380
402
|
|
|
381
|
-
AggregateInterceptors(interceptors:
|
|
403
|
+
AggregateInterceptors(interceptors: IReadOnlyList_1<IInterceptor>): IInterceptor | undefined;
|
|
382
404
|
}
|
|
383
405
|
|
|
384
406
|
|
|
@@ -395,6 +417,8 @@ export type SaveChangesInterceptorAggregator = SaveChangesInterceptorAggregator$
|
|
|
395
417
|
|
|
396
418
|
|
|
397
419
|
export interface ScopedLoggerFactory$instance {
|
|
420
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Diagnostics_Internal_ScopedLoggerFactory: never;
|
|
421
|
+
|
|
398
422
|
readonly __tsonic_iface_Microsoft_Extensions_Logging_ILoggerFactory: never;
|
|
399
423
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
400
424
|
|