@tsonic/efcore 10.0.2 → 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 +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -72,6 +72,8 @@ export enum DbContextLoggerOptions {
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
export interface ICollectionChangedEventData$instance {
|
|
75
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ICollectionChangedEventData: never;
|
|
76
|
+
|
|
75
77
|
readonly EntityEntry: EntityEntry;
|
|
76
78
|
readonly Added: IEnumerable<unknown>;
|
|
77
79
|
readonly Removed: IEnumerable<unknown>;
|
|
@@ -81,6 +83,8 @@ export interface ICollectionChangedEventData$instance {
|
|
|
81
83
|
export type ICollectionChangedEventData = ICollectionChangedEventData$instance;
|
|
82
84
|
|
|
83
85
|
export interface IDbCommandInterceptor$instance extends IInterceptor {
|
|
86
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbCommandInterceptor: never;
|
|
87
|
+
|
|
84
88
|
CommandCanceled(command: DbCommand, eventData: CommandEndEventData): void;
|
|
85
89
|
CommandCanceledAsync(command: DbCommand, eventData: CommandEndEventData, cancellationToken?: CancellationToken): Task;
|
|
86
90
|
CommandCreated(eventData: CommandEndEventData, result: DbCommand): DbCommand;
|
|
@@ -106,6 +110,8 @@ export interface IDbCommandInterceptor$instance extends IInterceptor$instance {}
|
|
|
106
110
|
export type IDbCommandInterceptor = IDbCommandInterceptor$instance;
|
|
107
111
|
|
|
108
112
|
export interface IDbConnectionInterceptor$instance extends IInterceptor {
|
|
113
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbConnectionInterceptor: never;
|
|
114
|
+
|
|
109
115
|
ConnectionClosedAsync(connection: DbConnection, eventData: ConnectionEndEventData): Task;
|
|
110
116
|
ConnectionClosingAsync(connection: DbConnection, eventData: ConnectionEventData, result: InterceptionResult): ValueTask<InterceptionResult>;
|
|
111
117
|
ConnectionCreated(eventData: ConnectionCreatedEventData, result: DbConnection): DbConnection;
|
|
@@ -124,6 +130,8 @@ export interface IDbConnectionInterceptor$instance extends IInterceptor$instance
|
|
|
124
130
|
export type IDbConnectionInterceptor = IDbConnectionInterceptor$instance;
|
|
125
131
|
|
|
126
132
|
export interface IDbContextLogger$instance {
|
|
133
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbContextLogger: never;
|
|
134
|
+
|
|
127
135
|
Log(eventData: EventData): void;
|
|
128
136
|
ShouldLog(eventId: EventId, logLevel: LogLevel): boolean;
|
|
129
137
|
}
|
|
@@ -132,6 +140,8 @@ export interface IDbContextLogger$instance {
|
|
|
132
140
|
export type IDbContextLogger = IDbContextLogger$instance;
|
|
133
141
|
|
|
134
142
|
export interface IDbTransactionInterceptor$instance extends IInterceptor {
|
|
143
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbTransactionInterceptor: never;
|
|
144
|
+
|
|
135
145
|
CreatedSavepoint(transaction: DbTransaction, eventData: TransactionEventData): void;
|
|
136
146
|
CreatedSavepointAsync(transaction: DbTransaction, eventData: TransactionEventData, cancellationToken?: CancellationToken): Task;
|
|
137
147
|
TransactionCommitted(transaction: DbTransaction, eventData: TransactionEndEventData): void;
|
|
@@ -154,12 +164,14 @@ export interface IDbTransactionInterceptor$instance extends IInterceptor$instanc
|
|
|
154
164
|
export type IDbTransactionInterceptor = IDbTransactionInterceptor$instance;
|
|
155
165
|
|
|
156
166
|
export interface IDiagnosticsLogger$instance {
|
|
167
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger: never;
|
|
168
|
+
|
|
157
169
|
readonly Options: ILoggingOptions;
|
|
158
170
|
readonly Definitions: LoggingDefinitions;
|
|
159
171
|
readonly Logger: ILogger;
|
|
160
172
|
readonly DiagnosticSource: DiagnosticSource;
|
|
161
173
|
readonly DbContextLogger: IDbContextLogger;
|
|
162
|
-
readonly Interceptors: IInterceptors;
|
|
174
|
+
readonly Interceptors: IInterceptors | undefined;
|
|
163
175
|
DispatchEventData(definition: EventDefinitionBase, eventData: EventData, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): void;
|
|
164
176
|
NeedsEventData(definition: EventDefinitionBase, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
165
177
|
NeedsEventData<TInterceptor extends IInterceptor>(definition: EventDefinitionBase, interceptor: TInterceptor, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
@@ -171,12 +183,14 @@ export interface IDiagnosticsLogger$instance {
|
|
|
171
183
|
export type IDiagnosticsLogger = IDiagnosticsLogger$instance;
|
|
172
184
|
|
|
173
185
|
export interface IDiagnosticsLogger_1$instance<TLoggerCategory extends LoggerCategory_1<TLoggerCategory>> extends IDiagnosticsLogger {
|
|
186
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1: never;
|
|
187
|
+
|
|
174
188
|
readonly Options: ILoggingOptions;
|
|
175
189
|
readonly Definitions: LoggingDefinitions;
|
|
176
190
|
readonly Logger: ILogger;
|
|
177
191
|
readonly DiagnosticSource: DiagnosticSource;
|
|
178
192
|
readonly DbContextLogger: IDbContextLogger;
|
|
179
|
-
readonly Interceptors: IInterceptors;
|
|
193
|
+
readonly Interceptors: IInterceptors | undefined;
|
|
180
194
|
DispatchEventData(definition: EventDefinitionBase, eventData: EventData, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): void;
|
|
181
195
|
NeedsEventData(definition: EventDefinitionBase, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
182
196
|
NeedsEventData<TInterceptor extends IInterceptor>(definition: EventDefinitionBase, interceptor: TInterceptor, diagnosticSourceEnabled: boolean, simpleLogEnabled: boolean): boolean;
|
|
@@ -191,6 +205,8 @@ export interface IDiagnosticsLogger_1$instance<TLoggerCategory extends LoggerCat
|
|
|
191
205
|
export type IDiagnosticsLogger_1<TLoggerCategory extends LoggerCategory_1<TLoggerCategory>> = IDiagnosticsLogger_1$instance<TLoggerCategory>;
|
|
192
206
|
|
|
193
207
|
export interface IErrorEventData$instance {
|
|
208
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
209
|
+
|
|
194
210
|
readonly Exception: Exception;
|
|
195
211
|
}
|
|
196
212
|
|
|
@@ -198,6 +214,8 @@ export interface IErrorEventData$instance {
|
|
|
198
214
|
export type IErrorEventData = IErrorEventData$instance;
|
|
199
215
|
|
|
200
216
|
export interface IIdentityResolutionInterceptor$instance extends IInterceptor {
|
|
217
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IIdentityResolutionInterceptor: never;
|
|
218
|
+
|
|
201
219
|
UpdateTrackedInstance(interceptionData: IdentityResolutionInterceptionData, existingEntry: EntityEntry, newEntity: unknown): void;
|
|
202
220
|
}
|
|
203
221
|
|
|
@@ -207,6 +225,8 @@ export interface IIdentityResolutionInterceptor$instance extends IInterceptor$in
|
|
|
207
225
|
export type IIdentityResolutionInterceptor = IIdentityResolutionInterceptor$instance;
|
|
208
226
|
|
|
209
227
|
export interface IInstantiationBindingInterceptor$instance extends ISingletonInterceptor, IInterceptor {
|
|
228
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInstantiationBindingInterceptor: never;
|
|
229
|
+
|
|
210
230
|
ModifyBinding(interceptionData: InstantiationBindingInterceptionData, binding: InstantiationBinding): InstantiationBinding;
|
|
211
231
|
}
|
|
212
232
|
|
|
@@ -216,12 +236,16 @@ export interface IInstantiationBindingInterceptor$instance extends ISingletonInt
|
|
|
216
236
|
export type IInstantiationBindingInterceptor = IInstantiationBindingInterceptor$instance;
|
|
217
237
|
|
|
218
238
|
export interface IInterceptor$instance {
|
|
239
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
240
|
+
|
|
219
241
|
}
|
|
220
242
|
|
|
221
243
|
|
|
222
244
|
export type IInterceptor = IInterceptor$instance;
|
|
223
245
|
|
|
224
246
|
export interface IInterceptorAggregator$instance {
|
|
247
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
248
|
+
|
|
225
249
|
readonly InterceptorType: Type;
|
|
226
250
|
AggregateInterceptors(interceptors: IReadOnlyList<IInterceptor>): IInterceptor | undefined;
|
|
227
251
|
}
|
|
@@ -230,6 +254,8 @@ export interface IInterceptorAggregator$instance {
|
|
|
230
254
|
export type IInterceptorAggregator = IInterceptorAggregator$instance;
|
|
231
255
|
|
|
232
256
|
export interface IInterceptors$instance {
|
|
257
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptors: never;
|
|
258
|
+
|
|
233
259
|
Aggregate<TInterceptor extends IInterceptor>(): TInterceptor | undefined;
|
|
234
260
|
}
|
|
235
261
|
|
|
@@ -237,6 +263,8 @@ export interface IInterceptors$instance {
|
|
|
237
263
|
export type IInterceptors = IInterceptors$instance;
|
|
238
264
|
|
|
239
265
|
export interface ILoggingOptions$instance extends ISingletonOptions {
|
|
266
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ILoggingOptions: never;
|
|
267
|
+
|
|
240
268
|
readonly IsSensitiveDataLoggingEnabled: boolean;
|
|
241
269
|
IsSensitiveDataLoggingWarned: boolean;
|
|
242
270
|
readonly DetailedErrorsEnabled: boolean;
|
|
@@ -251,6 +279,8 @@ export interface ILoggingOptions$instance extends Microsoft_EntityFrameworkCore_
|
|
|
251
279
|
export type ILoggingOptions = ILoggingOptions$instance;
|
|
252
280
|
|
|
253
281
|
export interface IMaterializationInterceptor$instance extends ISingletonInterceptor, IInterceptor {
|
|
282
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IMaterializationInterceptor: never;
|
|
283
|
+
|
|
254
284
|
CreatedInstance(materializationData: MaterializationInterceptionData, entity: unknown): unknown;
|
|
255
285
|
CreatingInstance(materializationData: MaterializationInterceptionData, result: InterceptionResult_1<unknown>): InterceptionResult_1<unknown>;
|
|
256
286
|
InitializingInstance(materializationData: MaterializationInterceptionData, entity: unknown, result: InterceptionResult): InterceptionResult;
|
|
@@ -262,6 +292,8 @@ export interface IMaterializationInterceptor$instance extends ISingletonIntercep
|
|
|
262
292
|
export type IMaterializationInterceptor = IMaterializationInterceptor$instance;
|
|
263
293
|
|
|
264
294
|
export interface INavigationBaseEventData$instance {
|
|
295
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
296
|
+
|
|
265
297
|
readonly NavigationBase: INavigationBase;
|
|
266
298
|
}
|
|
267
299
|
|
|
@@ -269,6 +301,8 @@ export interface INavigationBaseEventData$instance {
|
|
|
269
301
|
export type INavigationBaseEventData = INavigationBaseEventData$instance;
|
|
270
302
|
|
|
271
303
|
export interface IQueryExpressionInterceptor$instance extends ISingletonInterceptor, IInterceptor {
|
|
304
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IQueryExpressionInterceptor: never;
|
|
305
|
+
|
|
272
306
|
QueryCompilationStarting(queryExpression: Expression, eventData: QueryExpressionEventData): Expression;
|
|
273
307
|
}
|
|
274
308
|
|
|
@@ -278,12 +312,14 @@ export interface IQueryExpressionInterceptor$instance extends ISingletonIntercep
|
|
|
278
312
|
export type IQueryExpressionInterceptor = IQueryExpressionInterceptor$instance;
|
|
279
313
|
|
|
280
314
|
export interface IRelationalCommandDiagnosticsLogger$instance extends IDiagnosticsLogger_1<DbLoggerCategory_Database_Command>, IDiagnosticsLogger {
|
|
315
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IRelationalCommandDiagnosticsLogger: never;
|
|
316
|
+
|
|
281
317
|
readonly Options: ILoggingOptions;
|
|
282
318
|
readonly Definitions: LoggingDefinitions;
|
|
283
319
|
readonly Logger: ILogger;
|
|
284
320
|
readonly DiagnosticSource: DiagnosticSource;
|
|
285
321
|
readonly DbContextLogger: IDbContextLogger;
|
|
286
|
-
readonly Interceptors: IInterceptors;
|
|
322
|
+
readonly Interceptors: IInterceptors | undefined;
|
|
287
323
|
CommandCanceled(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, executeMethod: DbCommandMethod, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): void;
|
|
288
324
|
CommandCanceledAsync(connection: IRelationalConnection, command: DbCommand, logCommandText: string, context: DbContext, executeMethod: DbCommandMethod, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource, cancellationToken?: CancellationToken): Task;
|
|
289
325
|
CommandCreated(connection: IRelationalConnection, command: DbCommand, commandMethod: DbCommandMethod, context: DbContext, commandId: Guid, connectionId: Guid, startTime: DateTimeOffset, duration: TimeSpan, commandSource: CommandSource): DbCommand;
|
|
@@ -314,12 +350,14 @@ export interface IRelationalCommandDiagnosticsLogger$instance extends IDiagnosti
|
|
|
314
350
|
export type IRelationalCommandDiagnosticsLogger = IRelationalCommandDiagnosticsLogger$instance;
|
|
315
351
|
|
|
316
352
|
export interface IRelationalConnectionDiagnosticsLogger$instance extends IDiagnosticsLogger_1<DbLoggerCategory_Database_Connection>, IDiagnosticsLogger {
|
|
353
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IRelationalConnectionDiagnosticsLogger: never;
|
|
354
|
+
|
|
317
355
|
readonly Options: ILoggingOptions;
|
|
318
356
|
readonly Definitions: LoggingDefinitions;
|
|
319
357
|
readonly Logger: ILogger;
|
|
320
358
|
readonly DiagnosticSource: DiagnosticSource;
|
|
321
359
|
readonly DbContextLogger: IDbContextLogger;
|
|
322
|
-
readonly Interceptors: IInterceptors;
|
|
360
|
+
readonly Interceptors: IInterceptors | undefined;
|
|
323
361
|
ConnectionCreated(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): DbConnection;
|
|
324
362
|
ConnectionCreating(connection: IRelationalConnection, startTime: DateTimeOffset): InterceptionResult_1<DbConnection>;
|
|
325
363
|
ConnectionDisposed(connection: IRelationalConnection, startTime: DateTimeOffset, duration: TimeSpan): void;
|
|
@@ -343,6 +381,8 @@ export interface IRelationalConnectionDiagnosticsLogger$instance extends IDiagno
|
|
|
343
381
|
export type IRelationalConnectionDiagnosticsLogger = IRelationalConnectionDiagnosticsLogger$instance;
|
|
344
382
|
|
|
345
383
|
export interface ISaveChangesInterceptor$instance extends IInterceptor {
|
|
384
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ISaveChangesInterceptor: never;
|
|
385
|
+
|
|
346
386
|
SaveChangesCanceled(eventData: DbContextEventData): void;
|
|
347
387
|
SaveChangesCanceledAsync(eventData: DbContextEventData, cancellationToken?: CancellationToken): Task;
|
|
348
388
|
SaveChangesFailed(eventData: DbContextErrorEventData): void;
|
|
@@ -361,6 +401,8 @@ export interface ISaveChangesInterceptor$instance extends IInterceptor$instance
|
|
|
361
401
|
export type ISaveChangesInterceptor = ISaveChangesInterceptor$instance;
|
|
362
402
|
|
|
363
403
|
export interface ISingletonInterceptor$instance extends IInterceptor {
|
|
404
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ISingletonInterceptor: never;
|
|
405
|
+
|
|
364
406
|
}
|
|
365
407
|
|
|
366
408
|
|
|
@@ -502,6 +544,9 @@ export const CascadeDeleteOrphanEventData: {
|
|
|
502
544
|
export type CascadeDeleteOrphanEventData = CascadeDeleteOrphanEventData$instance;
|
|
503
545
|
|
|
504
546
|
export interface CollectionChangedEventData$instance extends NavigationEventData$instance {
|
|
547
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ICollectionChangedEventData: never;
|
|
548
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
549
|
+
|
|
505
550
|
readonly Added: IEnumerable<unknown>;
|
|
506
551
|
readonly EntityEntry: EntityEntry;
|
|
507
552
|
readonly Removed: IEnumerable<unknown>;
|
|
@@ -567,6 +612,8 @@ export const CommandEndEventData: {
|
|
|
567
612
|
export type CommandEndEventData = CommandEndEventData$instance;
|
|
568
613
|
|
|
569
614
|
export interface CommandErrorEventData$instance extends CommandEndEventData {
|
|
615
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
616
|
+
|
|
570
617
|
readonly Exception: Exception;
|
|
571
618
|
}
|
|
572
619
|
|
|
@@ -600,7 +647,7 @@ export const CommandEventData: {
|
|
|
600
647
|
export type CommandEventData = CommandEventData$instance;
|
|
601
648
|
|
|
602
649
|
export interface CommandExecutedEventData$instance extends CommandEndEventData {
|
|
603
|
-
readonly Result: unknown;
|
|
650
|
+
readonly Result: unknown | undefined;
|
|
604
651
|
}
|
|
605
652
|
|
|
606
653
|
|
|
@@ -639,6 +686,8 @@ export const ComplexTypePropertyChangedEventData: {
|
|
|
639
686
|
export type ComplexTypePropertyChangedEventData = ComplexTypePropertyChangedEventData$instance;
|
|
640
687
|
|
|
641
688
|
export interface ConcurrencyExceptionEventData$instance extends DbContextErrorEventData$instance {
|
|
689
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
690
|
+
|
|
642
691
|
readonly Entries: IReadOnlyList<EntityEntry>;
|
|
643
692
|
}
|
|
644
693
|
|
|
@@ -697,6 +746,8 @@ export const ConnectionEndEventData: {
|
|
|
697
746
|
export type ConnectionEndEventData = ConnectionEndEventData$instance;
|
|
698
747
|
|
|
699
748
|
export interface ConnectionErrorEventData$instance extends ConnectionEndEventData {
|
|
749
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
750
|
+
|
|
700
751
|
readonly Exception: Exception;
|
|
701
752
|
}
|
|
702
753
|
|
|
@@ -786,6 +837,9 @@ export const DataReaderEventData: {
|
|
|
786
837
|
export type DataReaderEventData = DataReaderEventData$instance;
|
|
787
838
|
|
|
788
839
|
export interface DbCommandInterceptor$instance extends IInterceptor {
|
|
840
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbCommandInterceptor: never;
|
|
841
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
842
|
+
|
|
789
843
|
CommandCanceled(command: DbCommand, eventData: CommandEndEventData): void;
|
|
790
844
|
CommandCanceledAsync(command: DbCommand, eventData: CommandEndEventData, cancellationToken?: CancellationToken): Task;
|
|
791
845
|
CommandCreated(eventData: CommandEndEventData, result: DbCommand): DbCommand;
|
|
@@ -811,8 +865,7 @@ export interface DbCommandInterceptor$instance extends IInterceptor {
|
|
|
811
865
|
}
|
|
812
866
|
|
|
813
867
|
|
|
814
|
-
export const DbCommandInterceptor: {
|
|
815
|
-
new(): DbCommandInterceptor;
|
|
868
|
+
export const DbCommandInterceptor: (abstract new() => DbCommandInterceptor) & {
|
|
816
869
|
};
|
|
817
870
|
|
|
818
871
|
|
|
@@ -826,6 +879,9 @@ export type DbCommandInterceptor = DbCommandInterceptor$instance & __DbCommandIn
|
|
|
826
879
|
|
|
827
880
|
|
|
828
881
|
export interface DbConnectionInterceptor$instance extends IInterceptor {
|
|
882
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbConnectionInterceptor: never;
|
|
883
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
884
|
+
|
|
829
885
|
ConnectionCanceled(connection: DbConnection, eventData: ConnectionEndEventData): void;
|
|
830
886
|
ConnectionCanceledAsync(connection: DbConnection, eventData: ConnectionEndEventData, cancellationToken?: CancellationToken): Task;
|
|
831
887
|
ConnectionClosed(connection: DbConnection, eventData: ConnectionEndEventData): void;
|
|
@@ -847,8 +903,7 @@ export interface DbConnectionInterceptor$instance extends IInterceptor {
|
|
|
847
903
|
}
|
|
848
904
|
|
|
849
905
|
|
|
850
|
-
export const DbConnectionInterceptor: {
|
|
851
|
-
new(): DbConnectionInterceptor;
|
|
906
|
+
export const DbConnectionInterceptor: (abstract new() => DbConnectionInterceptor) & {
|
|
852
907
|
};
|
|
853
908
|
|
|
854
909
|
|
|
@@ -862,6 +917,8 @@ export type DbConnectionInterceptor = DbConnectionInterceptor$instance & __DbCon
|
|
|
862
917
|
|
|
863
918
|
|
|
864
919
|
export interface DbContextErrorEventData$instance extends DbContextEventData {
|
|
920
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
921
|
+
|
|
865
922
|
readonly Exception: DbUpdateConcurrencyException | Exception;
|
|
866
923
|
}
|
|
867
924
|
|
|
@@ -881,7 +938,7 @@ export type DbContextErrorEventData = DbContextErrorEventData$instance & __DbCon
|
|
|
881
938
|
|
|
882
939
|
|
|
883
940
|
export interface DbContextEventData$instance extends EventData {
|
|
884
|
-
readonly Context: DbContext;
|
|
941
|
+
readonly Context: DbContext | undefined;
|
|
885
942
|
}
|
|
886
943
|
|
|
887
944
|
|
|
@@ -893,6 +950,8 @@ export const DbContextEventData: {
|
|
|
893
950
|
export type DbContextEventData = DbContextEventData$instance;
|
|
894
951
|
|
|
895
952
|
export interface DbContextTypeErrorEventData$instance extends DbContextTypeEventData {
|
|
953
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
954
|
+
|
|
896
955
|
readonly Exception: Exception;
|
|
897
956
|
}
|
|
898
957
|
|
|
@@ -924,6 +983,9 @@ export const DbContextTypeEventData: {
|
|
|
924
983
|
export type DbContextTypeEventData = DbContextTypeEventData$instance;
|
|
925
984
|
|
|
926
985
|
export interface DbTransactionInterceptor$instance extends IInterceptor {
|
|
986
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IDbTransactionInterceptor: never;
|
|
987
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
988
|
+
|
|
927
989
|
CreatedSavepoint(transaction: DbTransaction, eventData: TransactionEventData): void;
|
|
928
990
|
CreatedSavepointAsync(transaction: DbTransaction, eventData: TransactionEventData, cancellationToken?: CancellationToken): Task;
|
|
929
991
|
CreatingSavepoint(transaction: DbTransaction, eventData: TransactionEventData, result: InterceptionResult): InterceptionResult;
|
|
@@ -955,8 +1017,7 @@ export interface DbTransactionInterceptor$instance extends IInterceptor {
|
|
|
955
1017
|
}
|
|
956
1018
|
|
|
957
1019
|
|
|
958
|
-
export const DbTransactionInterceptor: {
|
|
959
|
-
new(): DbTransactionInterceptor;
|
|
1020
|
+
export const DbTransactionInterceptor: (abstract new() => DbTransactionInterceptor) & {
|
|
960
1021
|
};
|
|
961
1022
|
|
|
962
1023
|
|
|
@@ -1112,21 +1173,16 @@ export const EventDefinition_6: {
|
|
|
1112
1173
|
|
|
1113
1174
|
export type EventDefinition_6<TParam1, TParam2, TParam3, TParam4, TParam5, TParam6> = EventDefinition_6$instance<TParam1, TParam2, TParam3, TParam4, TParam5, TParam6>;
|
|
1114
1175
|
|
|
1115
|
-
export
|
|
1116
|
-
protected WarningAsError(message: string): Exception;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
export interface EventDefinitionBase$instance extends EventDefinitionBase$protected {
|
|
1176
|
+
export interface EventDefinitionBase$instance {
|
|
1121
1177
|
readonly EventId: EventId;
|
|
1122
1178
|
readonly EventIdCode: string;
|
|
1123
1179
|
readonly Level: LogLevel;
|
|
1124
1180
|
readonly WarningBehavior: WarningBehavior;
|
|
1181
|
+
WarningAsError(message: string): Exception;
|
|
1125
1182
|
}
|
|
1126
1183
|
|
|
1127
1184
|
|
|
1128
|
-
export const EventDefinitionBase: {
|
|
1129
|
-
new(loggingOptions: ILoggingOptions, eventId: EventId, level: LogLevel, eventIdCode: string): EventDefinitionBase;
|
|
1185
|
+
export const EventDefinitionBase: (abstract new(loggingOptions: ILoggingOptions, eventId: EventId, level: LogLevel, eventIdCode: string) => EventDefinitionBase) & {
|
|
1130
1186
|
};
|
|
1131
1187
|
|
|
1132
1188
|
|
|
@@ -1198,6 +1254,9 @@ export const ForeignKeyEventData: {
|
|
|
1198
1254
|
export type ForeignKeyEventData = ForeignKeyEventData$instance;
|
|
1199
1255
|
|
|
1200
1256
|
export interface IgnoringIdentityResolutionInterceptor$instance extends IInterceptor {
|
|
1257
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IIdentityResolutionInterceptor: never;
|
|
1258
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
1259
|
+
|
|
1201
1260
|
UpdateTrackedInstance(interceptionData: IdentityResolutionInterceptionData, existingEntry: EntityEntry, newEntity: unknown): void;
|
|
1202
1261
|
}
|
|
1203
1262
|
|
|
@@ -1218,7 +1277,7 @@ export type IgnoringIdentityResolutionInterceptor = IgnoringIdentityResolutionIn
|
|
|
1218
1277
|
|
|
1219
1278
|
export interface IndexEventData$instance extends EventData {
|
|
1220
1279
|
readonly EntityType: IEntityType;
|
|
1221
|
-
readonly Name: string;
|
|
1280
|
+
readonly Name: string | undefined;
|
|
1222
1281
|
readonly PropertyNames: List<System_Internal.String>;
|
|
1223
1282
|
}
|
|
1224
1283
|
|
|
@@ -1232,7 +1291,7 @@ export type IndexEventData = IndexEventData$instance;
|
|
|
1232
1291
|
|
|
1233
1292
|
export interface IndexWithPropertiesEventData$instance extends EventData {
|
|
1234
1293
|
readonly EntityType: IEntityType;
|
|
1235
|
-
readonly Name: string;
|
|
1294
|
+
readonly Name: string | undefined;
|
|
1236
1295
|
readonly Property1Name: string;
|
|
1237
1296
|
readonly Property2Name: string;
|
|
1238
1297
|
readonly PropertyNames: List<System_Internal.String>;
|
|
@@ -1250,7 +1309,7 @@ export type IndexWithPropertiesEventData = IndexWithPropertiesEventData$instance
|
|
|
1250
1309
|
|
|
1251
1310
|
export interface IndexWithPropertyEventData$instance extends EventData {
|
|
1252
1311
|
readonly EntityType: IEntityType;
|
|
1253
|
-
readonly Name: string;
|
|
1312
|
+
readonly Name: string | undefined;
|
|
1254
1313
|
readonly PropertyName: string;
|
|
1255
1314
|
readonly PropertyNames: List<System_Internal.String>;
|
|
1256
1315
|
}
|
|
@@ -1263,19 +1322,16 @@ export const IndexWithPropertyEventData: {
|
|
|
1263
1322
|
|
|
1264
1323
|
export type IndexWithPropertyEventData = IndexWithPropertyEventData$instance;
|
|
1265
1324
|
|
|
1266
|
-
export
|
|
1267
|
-
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1325
|
+
export interface InterceptorAggregator_1$instance<TInterceptor extends IInterceptor> {
|
|
1326
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptorAggregator: never;
|
|
1270
1327
|
|
|
1271
|
-
export interface InterceptorAggregator_1$instance<TInterceptor extends IInterceptor> extends InterceptorAggregator_1$protected<TInterceptor> {
|
|
1272
1328
|
readonly InterceptorType: Type;
|
|
1273
1329
|
AggregateInterceptors(interceptors: IReadOnlyList<IInterceptor>): IInterceptor | undefined;
|
|
1330
|
+
CreateChain(interceptors: IEnumerable<TInterceptor>): TInterceptor;
|
|
1274
1331
|
}
|
|
1275
1332
|
|
|
1276
1333
|
|
|
1277
|
-
export const InterceptorAggregator_1: {
|
|
1278
|
-
new<TInterceptor extends IInterceptor>(): InterceptorAggregator_1<TInterceptor>;
|
|
1334
|
+
export const InterceptorAggregator_1: (abstract new<TInterceptor extends IInterceptor>() => InterceptorAggregator_1<TInterceptor>) & {
|
|
1279
1335
|
};
|
|
1280
1336
|
|
|
1281
1337
|
|
|
@@ -1331,8 +1387,7 @@ export interface LoggerCategory_1$instance<T> {
|
|
|
1331
1387
|
}
|
|
1332
1388
|
|
|
1333
1389
|
|
|
1334
|
-
export const LoggerCategory_1: {
|
|
1335
|
-
new<T>(): LoggerCategory_1<T>;
|
|
1390
|
+
export const LoggerCategory_1: (abstract new<T>() => LoggerCategory_1<T>) & {
|
|
1336
1391
|
readonly Name: string;
|
|
1337
1392
|
};
|
|
1338
1393
|
|
|
@@ -1430,8 +1485,7 @@ export interface LoggingDefinitions$instance {
|
|
|
1430
1485
|
}
|
|
1431
1486
|
|
|
1432
1487
|
|
|
1433
|
-
export const LoggingDefinitions: {
|
|
1434
|
-
new(): LoggingDefinitions;
|
|
1488
|
+
export const LoggingDefinitions: (abstract new() => LoggingDefinitions) & {
|
|
1435
1489
|
};
|
|
1436
1490
|
|
|
1437
1491
|
|
|
@@ -1550,6 +1604,8 @@ export const MinBatchSizeEventData: {
|
|
|
1550
1604
|
export type MinBatchSizeEventData = MinBatchSizeEventData$instance;
|
|
1551
1605
|
|
|
1552
1606
|
export interface NavigationBaseEventData$instance extends EventData {
|
|
1607
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
1608
|
+
|
|
1553
1609
|
readonly NavigationBase: IReadOnlyNavigationBase;
|
|
1554
1610
|
}
|
|
1555
1611
|
|
|
@@ -1567,6 +1623,8 @@ export type NavigationBaseEventData = NavigationBaseEventData$instance & __Navig
|
|
|
1567
1623
|
|
|
1568
1624
|
|
|
1569
1625
|
export interface NavigationEventData$instance extends EventData {
|
|
1626
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
1627
|
+
|
|
1570
1628
|
readonly Navigation: INavigation | IReadOnlyNavigation;
|
|
1571
1629
|
}
|
|
1572
1630
|
|
|
@@ -1640,6 +1698,8 @@ export const QueryExpressionEventData: {
|
|
|
1640
1698
|
export type QueryExpressionEventData = QueryExpressionEventData$instance;
|
|
1641
1699
|
|
|
1642
1700
|
export interface ReferenceChangedEventData$instance extends NavigationEventData$instance {
|
|
1701
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
1702
|
+
|
|
1643
1703
|
readonly EntityEntry: EntityEntry;
|
|
1644
1704
|
readonly NewReferencedEntity: unknown | undefined;
|
|
1645
1705
|
readonly OldReferencedEntity: unknown | undefined;
|
|
@@ -1661,6 +1721,8 @@ export type ReferenceChangedEventData = ReferenceChangedEventData$instance & __R
|
|
|
1661
1721
|
|
|
1662
1722
|
|
|
1663
1723
|
export interface RelationalConcurrencyExceptionEventData$instance extends ConcurrencyExceptionEventData$instance {
|
|
1724
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
1725
|
+
|
|
1664
1726
|
readonly Command: DbCommand;
|
|
1665
1727
|
readonly CommandId: Guid;
|
|
1666
1728
|
readonly Connection: DbConnection;
|
|
@@ -1766,8 +1828,7 @@ export interface RelationalLoggingDefinitions$instance extends LoggingDefinition
|
|
|
1766
1828
|
}
|
|
1767
1829
|
|
|
1768
1830
|
|
|
1769
|
-
export const RelationalLoggingDefinitions: {
|
|
1770
|
-
new(): RelationalLoggingDefinitions;
|
|
1831
|
+
export const RelationalLoggingDefinitions: (abstract new() => RelationalLoggingDefinitions) & {
|
|
1771
1832
|
};
|
|
1772
1833
|
|
|
1773
1834
|
|
|
@@ -1799,6 +1860,9 @@ export const SaveChangesEventData: {
|
|
|
1799
1860
|
export type SaveChangesEventData = SaveChangesEventData$instance;
|
|
1800
1861
|
|
|
1801
1862
|
export interface SaveChangesInterceptor$instance extends IInterceptor {
|
|
1863
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
1864
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ISaveChangesInterceptor: never;
|
|
1865
|
+
|
|
1802
1866
|
SaveChangesCanceled(eventData: DbContextEventData): void;
|
|
1803
1867
|
SaveChangesCanceledAsync(eventData: DbContextEventData, cancellationToken?: CancellationToken): Task;
|
|
1804
1868
|
SaveChangesFailed(eventData: DbContextErrorEventData): void;
|
|
@@ -1812,8 +1876,7 @@ export interface SaveChangesInterceptor$instance extends IInterceptor {
|
|
|
1812
1876
|
}
|
|
1813
1877
|
|
|
1814
1878
|
|
|
1815
|
-
export const SaveChangesInterceptor: {
|
|
1816
|
-
new(): SaveChangesInterceptor;
|
|
1879
|
+
export const SaveChangesInterceptor: (abstract new() => SaveChangesInterceptor) & {
|
|
1817
1880
|
};
|
|
1818
1881
|
|
|
1819
1882
|
|
|
@@ -1889,6 +1952,9 @@ export const SharedDependentEntityEventData: {
|
|
|
1889
1952
|
export type SharedDependentEntityEventData = SharedDependentEntityEventData$instance;
|
|
1890
1953
|
|
|
1891
1954
|
export interface SkipCollectionChangedEventData$instance extends SkipNavigationEventData$instance {
|
|
1955
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_ICollectionChangedEventData: never;
|
|
1956
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
1957
|
+
|
|
1892
1958
|
readonly Added: IEnumerable<unknown>;
|
|
1893
1959
|
readonly EntityEntry: EntityEntry;
|
|
1894
1960
|
readonly Removed: IEnumerable<unknown>;
|
|
@@ -1911,6 +1977,8 @@ export type SkipCollectionChangedEventData = SkipCollectionChangedEventData$inst
|
|
|
1911
1977
|
|
|
1912
1978
|
|
|
1913
1979
|
export interface SkipNavigationEventData$instance extends EventData {
|
|
1980
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_INavigationBaseEventData: never;
|
|
1981
|
+
|
|
1914
1982
|
readonly Navigation: IReadOnlySkipNavigation | ISkipNavigation;
|
|
1915
1983
|
}
|
|
1916
1984
|
|
|
@@ -1982,6 +2050,8 @@ export const TransactionEnlistedEventData: {
|
|
|
1982
2050
|
export type TransactionEnlistedEventData = TransactionEnlistedEventData$instance;
|
|
1983
2051
|
|
|
1984
2052
|
export interface TransactionErrorEventData$instance extends TransactionEndEventData {
|
|
2053
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
2054
|
+
|
|
1985
2055
|
readonly Action: string;
|
|
1986
2056
|
readonly Exception: Exception;
|
|
1987
2057
|
}
|
|
@@ -2085,6 +2155,8 @@ export const TypeEventData: {
|
|
|
2085
2155
|
export type TypeEventData = TypeEventData$instance;
|
|
2086
2156
|
|
|
2087
2157
|
export interface TypeLoadingEventData$instance extends AssemblyEventData {
|
|
2158
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IErrorEventData: never;
|
|
2159
|
+
|
|
2088
2160
|
readonly Exception: Exception;
|
|
2089
2161
|
}
|
|
2090
2162
|
|
|
@@ -2128,6 +2200,9 @@ export const UpdateEntryEventData: {
|
|
|
2128
2200
|
export type UpdateEntryEventData = UpdateEntryEventData$instance;
|
|
2129
2201
|
|
|
2130
2202
|
export interface UpdatingIdentityResolutionInterceptor$instance extends IInterceptor {
|
|
2203
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IIdentityResolutionInterceptor: never;
|
|
2204
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Diagnostics_IInterceptor: never;
|
|
2205
|
+
|
|
2131
2206
|
UpdateTrackedInstance(interceptionData: IdentityResolutionInterceptionData, existingEntry: EntityEntry, newEntity: unknown): void;
|
|
2132
2207
|
}
|
|
2133
2208
|
|
|
@@ -2159,13 +2234,9 @@ export const ValueConverterEventData: {
|
|
|
2159
2234
|
|
|
2160
2235
|
export type ValueConverterEventData = ValueConverterEventData$instance;
|
|
2161
2236
|
|
|
2162
|
-
export
|
|
2163
|
-
protected Clone(): WarningsConfiguration;
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
export interface WarningsConfiguration$instance extends WarningsConfiguration$protected {
|
|
2237
|
+
export interface WarningsConfiguration$instance {
|
|
2168
2238
|
readonly DefaultBehavior: WarningBehavior;
|
|
2239
|
+
Clone(): WarningsConfiguration;
|
|
2169
2240
|
GetBehavior(eventId: EventId): Nullable<WarningBehavior>;
|
|
2170
2241
|
GetLevel(eventId: EventId): Nullable<LogLevel>;
|
|
2171
2242
|
GetServiceProviderHashCode(): int;
|
|
@@ -2179,7 +2250,6 @@ export interface WarningsConfiguration$instance extends WarningsConfiguration$pr
|
|
|
2179
2250
|
|
|
2180
2251
|
export const WarningsConfiguration: {
|
|
2181
2252
|
new(): WarningsConfiguration;
|
|
2182
|
-
new(copyFrom: WarningsConfiguration): WarningsConfiguration;
|
|
2183
2253
|
};
|
|
2184
2254
|
|
|
2185
2255
|
|