@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
|
@@ -42,6 +42,8 @@ export type RelationalCommandResolver = (parameters: Dictionary<System_Internal.
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
export interface ICompiledQueryCache$instance {
|
|
45
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_ICompiledQueryCache: never;
|
|
46
|
+
|
|
45
47
|
GetOrAddQuery<TResult>(cacheKey: unknown, compiler: Func<Func<QueryContext, TResult>>): Func<QueryContext, TResult>;
|
|
46
48
|
}
|
|
47
49
|
|
|
@@ -49,6 +51,8 @@ export interface ICompiledQueryCache$instance {
|
|
|
49
51
|
export type ICompiledQueryCache = ICompiledQueryCache$instance;
|
|
50
52
|
|
|
51
53
|
export interface IParameterNullabilityInfo$instance {
|
|
54
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IParameterNullabilityInfo: never;
|
|
55
|
+
|
|
52
56
|
readonly IsNonNullableReferenceType: boolean;
|
|
53
57
|
}
|
|
54
58
|
|
|
@@ -56,6 +60,8 @@ export interface IParameterNullabilityInfo$instance {
|
|
|
56
60
|
export type IParameterNullabilityInfo = IParameterNullabilityInfo$instance;
|
|
57
61
|
|
|
58
62
|
export interface IQueryCompiler$instance {
|
|
63
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IQueryCompiler: never;
|
|
64
|
+
|
|
59
65
|
CreateCompiledQuery<TResult>(query: Expression): Func<QueryContext, TResult>;
|
|
60
66
|
Execute<TResult>(query: Expression): TResult;
|
|
61
67
|
ExecuteAsync<TResult>(query: Expression, cancellationToken: CancellationToken): TResult;
|
|
@@ -66,6 +72,8 @@ export interface IQueryCompiler$instance {
|
|
|
66
72
|
export type IQueryCompiler = IQueryCompiler$instance;
|
|
67
73
|
|
|
68
74
|
export interface IRelationalQueryingEnumerable$instance extends IQueryingEnumerable {
|
|
75
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
76
|
+
|
|
69
77
|
CreateDbCommand(): DbCommand;
|
|
70
78
|
ToQueryString(): string;
|
|
71
79
|
}
|
|
@@ -101,18 +109,20 @@ export const QueryableJsonProjectionInfo: {
|
|
|
101
109
|
|
|
102
110
|
export type QueryableJsonProjectionInfo = QueryableJsonProjectionInfo$instance;
|
|
103
111
|
|
|
104
|
-
export
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
112
|
+
export interface BufferedDataReader$instance extends DbDataReader {
|
|
113
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
114
|
+
readonly __tsonic_iface_System_Data_IDataReader: never;
|
|
115
|
+
readonly __tsonic_iface_System_Data_IDataRecord: never;
|
|
116
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
117
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
108
118
|
|
|
109
|
-
export interface BufferedDataReader$instance extends BufferedDataReader$protected, DbDataReader {
|
|
110
119
|
readonly Depth: int;
|
|
111
120
|
readonly FieldCount: int;
|
|
112
121
|
readonly HasRows: boolean;
|
|
113
122
|
readonly IsClosed: boolean;
|
|
114
123
|
readonly RecordsAffected: int;
|
|
115
124
|
Close(): void;
|
|
125
|
+
Dispose(disposing: boolean): void;
|
|
116
126
|
get_Item(name: string): unknown;
|
|
117
127
|
get_Item(ordinal: int): unknown;
|
|
118
128
|
GetBoolean(ordinal: int): boolean;
|
|
@@ -159,6 +169,8 @@ export const BufferedDataReader: {
|
|
|
159
169
|
export type BufferedDataReader = BufferedDataReader$instance;
|
|
160
170
|
|
|
161
171
|
export interface ByteArraySequenceEqualTranslator$instance {
|
|
172
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
173
|
+
|
|
162
174
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
163
175
|
}
|
|
164
176
|
|
|
@@ -177,12 +189,8 @@ export interface ByteArraySequenceEqualTranslator$instance extends Microsoft_Ent
|
|
|
177
189
|
export type ByteArraySequenceEqualTranslator = ByteArraySequenceEqualTranslator$instance & __ByteArraySequenceEqualTranslator$views;
|
|
178
190
|
|
|
179
191
|
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
export interface CallForwardingExpressionVisitor$instance extends CallForwardingExpressionVisitor$protected, ExpressionVisitor {
|
|
192
|
+
export interface CallForwardingExpressionVisitor$instance extends ExpressionVisitor {
|
|
193
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
186
194
|
}
|
|
187
195
|
|
|
188
196
|
|
|
@@ -194,6 +202,8 @@ export const CallForwardingExpressionVisitor: {
|
|
|
194
202
|
export type CallForwardingExpressionVisitor = CallForwardingExpressionVisitor$instance;
|
|
195
203
|
|
|
196
204
|
export interface CollateTranslator$instance {
|
|
205
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
206
|
+
|
|
197
207
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
198
208
|
}
|
|
199
209
|
|
|
@@ -213,6 +223,8 @@ export type CollateTranslator = CollateTranslator$instance & __CollateTranslator
|
|
|
213
223
|
|
|
214
224
|
|
|
215
225
|
export interface ComparisonTranslator$instance {
|
|
226
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
227
|
+
|
|
216
228
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
217
229
|
}
|
|
218
230
|
|
|
@@ -231,13 +243,8 @@ export interface ComparisonTranslator$instance extends Microsoft_EntityFramework
|
|
|
231
243
|
export type ComparisonTranslator = ComparisonTranslator$instance & __ComparisonTranslator$views;
|
|
232
244
|
|
|
233
245
|
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
protected abstract CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export interface CompiledAsyncEnumerableQuery_2$instance<TContext extends DbContext, TResult> extends CompiledAsyncEnumerableQuery_2$protected<TContext, TResult>, CompiledQueryBase_2<TContext, IAsyncEnumerable<TResult>> {
|
|
246
|
+
export interface CompiledAsyncEnumerableQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, IAsyncEnumerable<TResult>> {
|
|
247
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, IAsyncEnumerable<TResult>>;
|
|
241
248
|
Execute(context: TContext): IAsyncEnumerable<TResult>;
|
|
242
249
|
Execute<TParam1>(context: TContext, param1: TParam1): IAsyncEnumerable<TResult>;
|
|
243
250
|
Execute<TParam1, TParam2>(context: TContext, param1: TParam1, param2: TParam2): IAsyncEnumerable<TResult>;
|
|
@@ -264,13 +271,8 @@ export const CompiledAsyncEnumerableQuery_2: {
|
|
|
264
271
|
|
|
265
272
|
export type CompiledAsyncEnumerableQuery_2<TContext extends DbContext, TResult> = CompiledAsyncEnumerableQuery_2$instance<TContext, TResult>;
|
|
266
273
|
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
protected abstract CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
export interface CompiledAsyncTaskQuery_2$instance<TContext extends DbContext, TResult> extends CompiledAsyncTaskQuery_2$protected<TContext, TResult>, CompiledQueryBase_2<TContext, Task<TResult>> {
|
|
274
|
+
export interface CompiledAsyncTaskQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, Task<TResult>> {
|
|
275
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, Task<TResult>>;
|
|
274
276
|
ExecuteAsync(context: TContext): Task<TResult>;
|
|
275
277
|
ExecuteAsync(context: TContext, cancellationToken: CancellationToken): Task<TResult>;
|
|
276
278
|
ExecuteAsync<TParam1>(context: TContext, param1: TParam1): Task<TResult>;
|
|
@@ -312,13 +314,8 @@ export const CompiledAsyncTaskQuery_2: {
|
|
|
312
314
|
|
|
313
315
|
export type CompiledAsyncTaskQuery_2<TContext extends DbContext, TResult> = CompiledAsyncTaskQuery_2$instance<TContext, TResult>;
|
|
314
316
|
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
protected abstract CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
export interface CompiledQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQuery_2$protected<TContext, TResult>, CompiledQueryBase_2<TContext, TResult> {
|
|
317
|
+
export interface CompiledQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, TResult> {
|
|
318
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
322
319
|
Execute(context: TContext): TResult;
|
|
323
320
|
Execute<TParam1>(context: TContext, param1: TParam1): TResult;
|
|
324
321
|
Execute<TParam1, TParam2>(context: TContext, param1: TParam1, param2: TParam2): TResult;
|
|
@@ -345,25 +342,22 @@ export const CompiledQuery_2: {
|
|
|
345
342
|
|
|
346
343
|
export type CompiledQuery_2<TContext extends DbContext, TResult> = CompiledQuery_2$instance<TContext, TResult>;
|
|
347
344
|
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
export interface CompiledQueryBase_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2$protected<TContext, TResult> {
|
|
345
|
+
export interface CompiledQueryBase_2$instance<TContext extends DbContext, TResult> {
|
|
346
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
347
|
+
ExecuteCore(context: TContext, ...parameters: unknown[]): TResult;
|
|
348
|
+
ExecuteCore(context: TContext, cancellationToken: CancellationToken, ...parameters: unknown[]): TResult;
|
|
356
349
|
}
|
|
357
350
|
|
|
358
351
|
|
|
359
|
-
export const CompiledQueryBase_2: {
|
|
360
|
-
new<TContext extends DbContext, TResult>(queryExpression: LambdaExpression): CompiledQueryBase_2<TContext, TResult>;
|
|
352
|
+
export const CompiledQueryBase_2: (abstract new<TContext extends DbContext, TResult>(queryExpression: LambdaExpression) => CompiledQueryBase_2<TContext, TResult>) & {
|
|
361
353
|
};
|
|
362
354
|
|
|
363
355
|
|
|
364
356
|
export type CompiledQueryBase_2<TContext extends DbContext, TResult> = CompiledQueryBase_2$instance<TContext, TResult>;
|
|
365
357
|
|
|
366
358
|
export interface CompiledQueryCache$instance {
|
|
359
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_ICompiledQueryCache: never;
|
|
360
|
+
|
|
367
361
|
GetOrAddQuery<TResult>(cacheKey: unknown, compiler: Func<Func<QueryContext, TResult>>): Func<QueryContext, TResult>;
|
|
368
362
|
}
|
|
369
363
|
|
|
@@ -383,6 +377,8 @@ export type CompiledQueryCache = CompiledQueryCache$instance & __CompiledQueryCa
|
|
|
383
377
|
|
|
384
378
|
|
|
385
379
|
export interface ContainsTranslator$instance {
|
|
380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
381
|
+
|
|
386
382
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
387
383
|
}
|
|
388
384
|
|
|
@@ -402,6 +398,15 @@ export type ContainsTranslator = ContainsTranslator$instance & __ContainsTransla
|
|
|
402
398
|
|
|
403
399
|
|
|
404
400
|
export interface EntityQueryable_1$instance<TResult> {
|
|
401
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
402
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
403
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
404
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
405
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable: never;
|
|
406
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable_1: never;
|
|
407
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
408
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
409
|
+
|
|
405
410
|
readonly DebugView: QueryDebugView;
|
|
406
411
|
readonly ElementType: Type;
|
|
407
412
|
readonly Expression: Expression;
|
|
@@ -420,6 +425,9 @@ export const EntityQueryable_1: {
|
|
|
420
425
|
export type EntityQueryable_1<TResult> = EntityQueryable_1$instance<TResult>;
|
|
421
426
|
|
|
422
427
|
export interface EntityQueryProvider$instance {
|
|
428
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAsyncQueryProvider: never;
|
|
429
|
+
readonly __tsonic_iface_System_Linq_IQueryProvider: never;
|
|
430
|
+
|
|
423
431
|
CreateQuery<TElement>(expression: Expression): IQueryable<TElement>;
|
|
424
432
|
CreateQuery(expression: Expression): IQueryable;
|
|
425
433
|
Execute<TResult>(expression: Expression): TResult;
|
|
@@ -443,6 +451,8 @@ export type EntityQueryProvider = EntityQueryProvider$instance & __EntityQueryPr
|
|
|
443
451
|
|
|
444
452
|
|
|
445
453
|
export interface EnumMethodTranslator$instance {
|
|
454
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
455
|
+
|
|
446
456
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
447
457
|
}
|
|
448
458
|
|
|
@@ -462,6 +472,8 @@ export type EnumMethodTranslator = EnumMethodTranslator$instance & __EnumMethodT
|
|
|
462
472
|
|
|
463
473
|
|
|
464
474
|
export interface EqualsTranslator$instance {
|
|
475
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
476
|
+
|
|
465
477
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
466
478
|
}
|
|
467
479
|
|
|
@@ -480,49 +492,45 @@ export interface EqualsTranslator$instance extends Microsoft_EntityFrameworkCore
|
|
|
480
492
|
export type EqualsTranslator = EqualsTranslator$instance & __EqualsTranslator$views;
|
|
481
493
|
|
|
482
494
|
|
|
483
|
-
export
|
|
484
|
-
protected VisitBinary(binary: BinaryExpression): Expression;
|
|
485
|
-
protected VisitBlock(node: BlockExpression): Expression;
|
|
486
|
-
protected VisitCatchBlock(node: CatchBlock): CatchBlock;
|
|
487
|
-
protected VisitConditional(conditional: ConditionalExpression): Expression;
|
|
488
|
-
protected VisitConstant(constant: ConstantExpression): Expression;
|
|
489
|
-
protected VisitDebugInfo(node: DebugInfoExpression): Expression;
|
|
490
|
-
protected VisitDefault(node: DefaultExpression): Expression;
|
|
491
|
-
protected VisitDynamic(node: DynamicExpression): Expression;
|
|
492
|
-
protected VisitElementInit(node: ElementInit): ElementInit;
|
|
493
|
-
protected VisitExtension(extension: Expression): Expression;
|
|
494
|
-
protected VisitGoto(node: GotoExpression): Expression;
|
|
495
|
-
protected VisitIndex(index: IndexExpression): Expression;
|
|
496
|
-
protected VisitInvocation(invocation: InvocationExpression): Expression;
|
|
497
|
-
protected VisitLabel(node: LabelExpression): Expression;
|
|
498
|
-
protected VisitLabelTarget(node: LabelTarget): LabelTarget;
|
|
499
|
-
protected VisitLambda<T>(lambda: Expression<T>): Expression;
|
|
500
|
-
protected VisitListInit(listInit: ListInitExpression): Expression;
|
|
501
|
-
protected VisitLoop(node: LoopExpression): Expression;
|
|
502
|
-
protected VisitMember(member: MemberExpression): Expression;
|
|
503
|
-
protected VisitMemberInit(memberInit: MemberInitExpression): Expression;
|
|
504
|
-
protected VisitMemberListBinding(node: MemberListBinding): MemberListBinding;
|
|
505
|
-
protected VisitMemberMemberBinding(node: MemberMemberBinding): MemberMemberBinding;
|
|
506
|
-
protected VisitMethodCall(methodCall: MethodCallExpression): Expression;
|
|
507
|
-
protected VisitNew(new_: NewExpression): Expression;
|
|
508
|
-
protected VisitNewArray(newArray: NewArrayExpression): Expression;
|
|
509
|
-
protected VisitParameter(parameterExpression: ParameterExpression): Expression;
|
|
510
|
-
protected VisitRuntimeVariables(node: RuntimeVariablesExpression): Expression;
|
|
511
|
-
protected VisitSwitch(node: SwitchExpression): Expression;
|
|
512
|
-
protected VisitSwitchCase(node: SwitchCase): SwitchCase;
|
|
513
|
-
protected VisitTry(node: TryExpression): Expression;
|
|
514
|
-
protected VisitTypeBinary(typeBinary: TypeBinaryExpression): Expression;
|
|
515
|
-
protected VisitUnary(unary: UnaryExpression): Expression;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
export interface ExpressionTreeFuncletizer$instance extends ExpressionTreeFuncletizer$protected, ExpressionVisitor {
|
|
495
|
+
export interface ExpressionTreeFuncletizer$instance extends ExpressionVisitor {
|
|
520
496
|
CalculatePathsToEvaluatableRoots(linqOperatorMethodCall: MethodCallExpression, argumentIndex: int): ExpressionTreeFuncletizer_PathNode | undefined;
|
|
521
497
|
CalculatePathsToEvaluatableRoots(expression: Expression): ExpressionTreeFuncletizer_PathNode | undefined;
|
|
522
498
|
ExtractParameters(expression: Expression, parameters: Dictionary<System_Internal.String, unknown>, parameterize: boolean, clearParameterizedValues: boolean): Expression;
|
|
523
499
|
ExtractParameters(expression: Expression, parameters: Dictionary<System_Internal.String, unknown>, parameterize: boolean, clearParameterizedValues: boolean, precompiledQuery: boolean): Expression;
|
|
524
500
|
ResetPathCalculation(): void;
|
|
525
501
|
Visit(expression: Expression): Expression | undefined;
|
|
502
|
+
VisitBinary(binary: BinaryExpression): Expression;
|
|
503
|
+
VisitBlock(node: BlockExpression): Expression;
|
|
504
|
+
VisitCatchBlock(node: CatchBlock): CatchBlock;
|
|
505
|
+
VisitConditional(conditional: ConditionalExpression): Expression;
|
|
506
|
+
VisitConstant(constant: ConstantExpression): Expression;
|
|
507
|
+
VisitDebugInfo(node: DebugInfoExpression): Expression;
|
|
508
|
+
VisitDefault(node: DefaultExpression): Expression;
|
|
509
|
+
VisitDynamic(node: DynamicExpression): Expression;
|
|
510
|
+
VisitElementInit(node: ElementInit): ElementInit;
|
|
511
|
+
VisitExtension(extension: Expression): Expression;
|
|
512
|
+
VisitGoto(node: GotoExpression): Expression;
|
|
513
|
+
VisitIndex(index: IndexExpression): Expression;
|
|
514
|
+
VisitInvocation(invocation: InvocationExpression): Expression;
|
|
515
|
+
VisitLabel(node: LabelExpression): Expression;
|
|
516
|
+
VisitLabelTarget(node: LabelTarget): LabelTarget;
|
|
517
|
+
VisitLambda<T>(lambda: Expression<T>): Expression;
|
|
518
|
+
VisitListInit(listInit: ListInitExpression): Expression;
|
|
519
|
+
VisitLoop(node: LoopExpression): Expression;
|
|
520
|
+
VisitMember(member: MemberExpression): Expression;
|
|
521
|
+
VisitMemberInit(memberInit: MemberInitExpression): Expression;
|
|
522
|
+
VisitMemberListBinding(node: MemberListBinding): MemberListBinding;
|
|
523
|
+
VisitMemberMemberBinding(node: MemberMemberBinding): MemberMemberBinding;
|
|
524
|
+
VisitMethodCall(methodCall: MethodCallExpression): Expression;
|
|
525
|
+
VisitNew(new_: NewExpression): Expression;
|
|
526
|
+
VisitNewArray(newArray: NewArrayExpression): Expression;
|
|
527
|
+
VisitParameter(parameterExpression: ParameterExpression): Expression;
|
|
528
|
+
VisitRuntimeVariables(node: RuntimeVariablesExpression): Expression;
|
|
529
|
+
VisitSwitch(node: SwitchExpression): Expression;
|
|
530
|
+
VisitSwitchCase(node: SwitchCase): SwitchCase;
|
|
531
|
+
VisitTry(node: TryExpression): Expression;
|
|
532
|
+
VisitTypeBinary(typeBinary: TypeBinaryExpression): Expression;
|
|
533
|
+
VisitUnary(unary: UnaryExpression): Expression;
|
|
526
534
|
}
|
|
527
535
|
|
|
528
536
|
|
|
@@ -534,13 +542,15 @@ export const ExpressionTreeFuncletizer: {
|
|
|
534
542
|
export type ExpressionTreeFuncletizer = ExpressionTreeFuncletizer$instance;
|
|
535
543
|
|
|
536
544
|
export interface ExpressionTreeFuncletizer_PathNode$instance {
|
|
545
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
546
|
+
|
|
537
547
|
get Children(): IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined;
|
|
538
|
-
set Children(value: IReadOnlyList<ExpressionTreeFuncletizer_PathNode>);
|
|
548
|
+
set Children(value: IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined);
|
|
539
549
|
ExpressionType: Type;
|
|
540
550
|
get ParameterName(): string | undefined;
|
|
541
|
-
set ParameterName(value: string);
|
|
551
|
+
set ParameterName(value: string | undefined);
|
|
542
552
|
get PathFromParent(): Func<Expression, Expression> | undefined;
|
|
543
|
-
set PathFromParent(value: Func<Expression, Expression>);
|
|
553
|
+
set PathFromParent(value: Func<Expression, Expression> | undefined);
|
|
544
554
|
_Clone_$(): ExpressionTreeFuncletizer_PathNode;
|
|
545
555
|
Equals(obj: unknown): boolean;
|
|
546
556
|
Equals(other: ExpressionTreeFuncletizer_PathNode): boolean;
|
|
@@ -557,6 +567,12 @@ export const ExpressionTreeFuncletizer_PathNode: {
|
|
|
557
567
|
export type ExpressionTreeFuncletizer_PathNode = ExpressionTreeFuncletizer_PathNode$instance;
|
|
558
568
|
|
|
559
569
|
export interface FromSqlQueryingEnumerable_1$instance<T> {
|
|
570
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryingEnumerable: never;
|
|
571
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
572
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
573
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
574
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
575
|
+
|
|
560
576
|
CreateDbCommand(): DbCommand;
|
|
561
577
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
562
578
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -575,22 +591,22 @@ export interface __FromSqlQueryingEnumerable_1$views<T> {
|
|
|
575
591
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
576
592
|
}
|
|
577
593
|
|
|
578
|
-
export
|
|
594
|
+
export interface FromSqlQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
579
595
|
|
|
596
|
+
export type FromSqlQueryingEnumerable_1<T> = FromSqlQueryingEnumerable_1$instance<T> & __FromSqlQueryingEnumerable_1$views<T>;
|
|
580
597
|
|
|
581
|
-
export abstract class FromSqlQueryRootExpression$protected {
|
|
582
|
-
protected Print(expressionPrinter: ExpressionPrinter): void;
|
|
583
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
584
|
-
}
|
|
585
598
|
|
|
599
|
+
export interface FromSqlQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
600
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
586
601
|
|
|
587
|
-
export interface FromSqlQueryRootExpression$instance extends FromSqlQueryRootExpression$protected, EntityQueryRootExpression {
|
|
588
602
|
readonly Argument: Expression;
|
|
589
603
|
readonly Sql: string;
|
|
590
604
|
DetachQueryProvider(): Expression;
|
|
591
605
|
Equals(obj: unknown): boolean;
|
|
592
606
|
GetHashCode(): int;
|
|
607
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
593
608
|
UpdateEntityType(entityType: IEntityType): EntityQueryRootExpression;
|
|
609
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
594
610
|
}
|
|
595
611
|
|
|
596
612
|
|
|
@@ -608,6 +624,8 @@ export type FromSqlQueryRootExpression = FromSqlQueryRootExpression$instance & _
|
|
|
608
624
|
|
|
609
625
|
|
|
610
626
|
export interface GetValueOrDefaultTranslator$instance {
|
|
627
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
628
|
+
|
|
611
629
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
612
630
|
}
|
|
613
631
|
|
|
@@ -627,6 +645,12 @@ export type GetValueOrDefaultTranslator = GetValueOrDefaultTranslator$instance &
|
|
|
627
645
|
|
|
628
646
|
|
|
629
647
|
export interface GroupBySingleQueryingEnumerable_2$instance<TKey, TElement> {
|
|
648
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryingEnumerable: never;
|
|
649
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
650
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
651
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
652
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
653
|
+
|
|
630
654
|
CreateDbCommand(): DbCommand;
|
|
631
655
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<IGrouping<TKey, TElement>>;
|
|
632
656
|
GetEnumerator(): IEnumerator__System_Collections_Generic<IGrouping<TKey, TElement>>;
|
|
@@ -644,10 +668,18 @@ export interface __GroupBySingleQueryingEnumerable_2$views<TKey, TElement> {
|
|
|
644
668
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
645
669
|
}
|
|
646
670
|
|
|
671
|
+
export interface GroupBySingleQueryingEnumerable_2$instance<TKey, TElement> extends System_Collections_Generic_Internal.IAsyncEnumerable<IGrouping<TKey, TElement>>, System_Collections_Generic_Internal.IEnumerable<IGrouping<TKey, TElement>> {}
|
|
672
|
+
|
|
647
673
|
export type GroupBySingleQueryingEnumerable_2<TKey, TElement> = GroupBySingleQueryingEnumerable_2$instance<TKey, TElement> & __GroupBySingleQueryingEnumerable_2$views<TKey, TElement>;
|
|
648
674
|
|
|
649
675
|
|
|
650
676
|
export interface GroupBySplitQueryingEnumerable_2$instance<TKey, TElement> {
|
|
677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryingEnumerable: never;
|
|
678
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
679
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
680
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
681
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
682
|
+
|
|
651
683
|
CreateDbCommand(): DbCommand;
|
|
652
684
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<IGrouping<TKey, TElement>>;
|
|
653
685
|
GetEnumerator(): IEnumerator__System_Collections_Generic<IGrouping<TKey, TElement>>;
|
|
@@ -665,15 +697,13 @@ export interface __GroupBySplitQueryingEnumerable_2$views<TKey, TElement> {
|
|
|
665
697
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
666
698
|
}
|
|
667
699
|
|
|
668
|
-
export
|
|
669
|
-
|
|
700
|
+
export interface GroupBySplitQueryingEnumerable_2$instance<TKey, TElement> extends System_Collections_Generic_Internal.IAsyncEnumerable<IGrouping<TKey, TElement>>, System_Collections_Generic_Internal.IEnumerable<IGrouping<TKey, TElement>> {}
|
|
670
701
|
|
|
671
|
-
export
|
|
672
|
-
protected VisitInvocation(invocationExpression: InvocationExpression): Expression;
|
|
673
|
-
}
|
|
702
|
+
export type GroupBySplitQueryingEnumerable_2<TKey, TElement> = GroupBySplitQueryingEnumerable_2$instance<TKey, TElement> & __GroupBySplitQueryingEnumerable_2$views<TKey, TElement>;
|
|
674
703
|
|
|
675
704
|
|
|
676
|
-
export interface InvocationExpressionRemovingExpressionVisitor$instance extends
|
|
705
|
+
export interface InvocationExpressionRemovingExpressionVisitor$instance extends ExpressionVisitor {
|
|
706
|
+
VisitInvocation(invocationExpression: InvocationExpression): Expression;
|
|
677
707
|
}
|
|
678
708
|
|
|
679
709
|
|
|
@@ -685,6 +715,8 @@ export const InvocationExpressionRemovingExpressionVisitor: {
|
|
|
685
715
|
export type InvocationExpressionRemovingExpressionVisitor = InvocationExpressionRemovingExpressionVisitor$instance;
|
|
686
716
|
|
|
687
717
|
export interface LikeTranslator$instance {
|
|
718
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
719
|
+
|
|
688
720
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
689
721
|
}
|
|
690
722
|
|
|
@@ -703,16 +735,12 @@ export interface LikeTranslator$instance extends Microsoft_EntityFrameworkCore_Q
|
|
|
703
735
|
export type LikeTranslator = LikeTranslator$instance & __LikeTranslator$views;
|
|
704
736
|
|
|
705
737
|
|
|
706
|
-
export
|
|
707
|
-
protected VisitExtension(extensionExpression: Expression): Expression;
|
|
708
|
-
protected VisitMember(memberExpression: MemberExpression): Expression;
|
|
709
|
-
protected VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
710
|
-
protected VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
export interface NavigationExpandingExpressionVisitor$instance extends NavigationExpandingExpressionVisitor$protected, ExpressionVisitor {
|
|
738
|
+
export interface NavigationExpandingExpressionVisitor$instance extends ExpressionVisitor {
|
|
715
739
|
Expand(query: Expression): Expression;
|
|
740
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
741
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
742
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
743
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
716
744
|
}
|
|
717
745
|
|
|
718
746
|
|
|
@@ -725,11 +753,13 @@ export const NavigationExpandingExpressionVisitor: {
|
|
|
725
753
|
export type NavigationExpandingExpressionVisitor = NavigationExpandingExpressionVisitor$instance;
|
|
726
754
|
|
|
727
755
|
export interface NullAsyncQueryProvider$instance {
|
|
756
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAsyncQueryProvider: never;
|
|
757
|
+
readonly __tsonic_iface_System_Linq_IQueryProvider: never;
|
|
758
|
+
|
|
728
759
|
}
|
|
729
760
|
|
|
730
761
|
|
|
731
762
|
export const NullAsyncQueryProvider: {
|
|
732
|
-
new(): NullAsyncQueryProvider;
|
|
733
763
|
readonly Instance: IAsyncQueryProvider;
|
|
734
764
|
};
|
|
735
765
|
|
|
@@ -743,13 +773,9 @@ export interface NullAsyncQueryProvider$instance extends Microsoft_EntityFramewo
|
|
|
743
773
|
export type NullAsyncQueryProvider = NullAsyncQueryProvider$instance & __NullAsyncQueryProvider$views;
|
|
744
774
|
|
|
745
775
|
|
|
746
|
-
export
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
export interface NullCheckRemovingExpressionVisitor$instance extends NullCheckRemovingExpressionVisitor$protected, ExpressionVisitor {
|
|
776
|
+
export interface NullCheckRemovingExpressionVisitor$instance extends ExpressionVisitor {
|
|
777
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
778
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
753
779
|
}
|
|
754
780
|
|
|
755
781
|
|
|
@@ -761,6 +787,12 @@ export const NullCheckRemovingExpressionVisitor: {
|
|
|
761
787
|
export type NullCheckRemovingExpressionVisitor = NullCheckRemovingExpressionVisitor$instance;
|
|
762
788
|
|
|
763
789
|
export interface PrecompiledQueryableAsyncEnumerableAdapter_1$instance<T> {
|
|
790
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
791
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
792
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
793
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
794
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
795
|
+
|
|
764
796
|
readonly ElementType: Type;
|
|
765
797
|
readonly Expression: Expression;
|
|
766
798
|
readonly Provider: IQueryProvider;
|
|
@@ -777,6 +809,13 @@ export const PrecompiledQueryableAsyncEnumerableAdapter_1: {
|
|
|
777
809
|
export type PrecompiledQueryableAsyncEnumerableAdapter_1<T> = PrecompiledQueryableAsyncEnumerableAdapter_1$instance<T>;
|
|
778
810
|
|
|
779
811
|
export interface PrecompiledQueryContext_1$instance<T> {
|
|
812
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
813
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
814
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable: never;
|
|
815
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable_1: never;
|
|
816
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
817
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
818
|
+
|
|
780
819
|
DbContext: DbContext;
|
|
781
820
|
readonly ElementType: Type;
|
|
782
821
|
readonly Expression: Expression;
|
|
@@ -796,6 +835,14 @@ export const PrecompiledQueryContext_1: {
|
|
|
796
835
|
export type PrecompiledQueryContext_1<T> = PrecompiledQueryContext_1$instance<T>;
|
|
797
836
|
|
|
798
837
|
export interface PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2$instance<T, TEntity, TProperty> extends PrecompiledQueryContext_1<TEntity>, IIncludableQueryable_2<TEntity, TProperty> {
|
|
838
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IIncludableQueryable_2: never;
|
|
839
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
840
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
841
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable: never;
|
|
842
|
+
readonly __tsonic_iface_System_Linq_IOrderedQueryable_1: never;
|
|
843
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
844
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
845
|
+
|
|
799
846
|
}
|
|
800
847
|
|
|
801
848
|
|
|
@@ -807,6 +854,8 @@ export const PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2: {
|
|
|
807
854
|
export type PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2<T, TEntity, TProperty> = PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2$instance<T, TEntity, TProperty>;
|
|
808
855
|
|
|
809
856
|
export interface QueryableAggregateMethodTranslator$instance {
|
|
857
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAggregateMethodCallTranslator: never;
|
|
858
|
+
|
|
810
859
|
Translate(method: MethodInfo, source: EnumerableExpression, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
811
860
|
}
|
|
812
861
|
|
|
@@ -825,14 +874,10 @@ export interface QueryableAggregateMethodTranslator$instance extends Microsoft_E
|
|
|
825
874
|
export type QueryableAggregateMethodTranslator = QueryableAggregateMethodTranslator$instance & __QueryableAggregateMethodTranslator$views;
|
|
826
875
|
|
|
827
876
|
|
|
828
|
-
export
|
|
829
|
-
protected VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
830
|
-
protected VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
export interface QueryableMethodNormalizingExpressionVisitor$instance extends QueryableMethodNormalizingExpressionVisitor$protected, ExpressionVisitor {
|
|
877
|
+
export interface QueryableMethodNormalizingExpressionVisitor$instance extends ExpressionVisitor {
|
|
835
878
|
Normalize(expression: Expression): Expression;
|
|
879
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
880
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
836
881
|
}
|
|
837
882
|
|
|
838
883
|
|
|
@@ -843,12 +888,10 @@ export const QueryableMethodNormalizingExpressionVisitor: {
|
|
|
843
888
|
|
|
844
889
|
export type QueryableMethodNormalizingExpressionVisitor = QueryableMethodNormalizingExpressionVisitor$instance;
|
|
845
890
|
|
|
846
|
-
export
|
|
847
|
-
|
|
848
|
-
}
|
|
849
|
-
|
|
891
|
+
export interface QueryCompilationContextFactory$instance {
|
|
892
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryCompilationContextFactory: never;
|
|
850
893
|
|
|
851
|
-
|
|
894
|
+
readonly Dependencies: QueryCompilationContextDependencies;
|
|
852
895
|
Create(async: boolean): QueryCompilationContext;
|
|
853
896
|
CreatePrecompiled(async: boolean): QueryCompilationContext;
|
|
854
897
|
}
|
|
@@ -869,6 +912,8 @@ export type QueryCompilationContextFactory = QueryCompilationContextFactory$inst
|
|
|
869
912
|
|
|
870
913
|
|
|
871
914
|
export interface QueryCompiler$instance {
|
|
915
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IQueryCompiler: never;
|
|
916
|
+
|
|
872
917
|
CompileQueryCore<TResult>(database: IDatabase, query: Expression, model: IModel, async: boolean): Func<QueryContext, TResult>;
|
|
873
918
|
CreateCompiledAsyncQuery<TResult>(query: Expression): Func<QueryContext, TResult>;
|
|
874
919
|
CreateCompiledQuery<TResult>(query: Expression): Func<QueryContext, TResult>;
|
|
@@ -917,6 +962,8 @@ export const QueryExpressionReplacingExpressionVisitor: {
|
|
|
917
962
|
export type QueryExpressionReplacingExpressionVisitor = QueryExpressionReplacingExpressionVisitor$instance;
|
|
918
963
|
|
|
919
964
|
export interface QueryFiltersCacheKey$instance {
|
|
965
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
966
|
+
|
|
920
967
|
Equals(other: QueryFiltersCacheKey): boolean;
|
|
921
968
|
Equals(obj: unknown): boolean;
|
|
922
969
|
GetHashCode(): int;
|
|
@@ -930,21 +977,17 @@ export const QueryFiltersCacheKey: {
|
|
|
930
977
|
|
|
931
978
|
export type QueryFiltersCacheKey = QueryFiltersCacheKey$instance;
|
|
932
979
|
|
|
933
|
-
export
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
export interface QueryOptimizingExpressionVisitor$instance extends QueryOptimizingExpressionVisitor$protected, ExpressionVisitor {
|
|
980
|
+
export interface QueryOptimizingExpressionVisitor$instance extends ExpressionVisitor {
|
|
981
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
982
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
983
|
+
VisitElementInit(elementInit: ElementInit): ElementInit;
|
|
984
|
+
VisitLambda<T>(lambdaExpression: Expression<T>): Expression;
|
|
985
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
986
|
+
VisitMemberAssignment(memberAssignment: MemberAssignment): MemberAssignment;
|
|
987
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
988
|
+
VisitNew(newExpression: NewExpression): Expression;
|
|
989
|
+
VisitNewArray(newArrayExpression: NewArrayExpression): Expression;
|
|
990
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
948
991
|
}
|
|
949
992
|
|
|
950
993
|
|
|
@@ -955,12 +998,10 @@ export const QueryOptimizingExpressionVisitor: {
|
|
|
955
998
|
|
|
956
999
|
export type QueryOptimizingExpressionVisitor = QueryOptimizingExpressionVisitor$instance;
|
|
957
1000
|
|
|
958
|
-
export
|
|
959
|
-
|
|
960
|
-
}
|
|
961
|
-
|
|
1001
|
+
export interface QuerySqlGeneratorFactory$instance {
|
|
1002
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQuerySqlGeneratorFactory: never;
|
|
962
1003
|
|
|
963
|
-
|
|
1004
|
+
readonly Dependencies: QuerySqlGeneratorDependencies;
|
|
964
1005
|
Create(): QuerySqlGenerator;
|
|
965
1006
|
}
|
|
966
1007
|
|
|
@@ -979,12 +1020,10 @@ export interface QuerySqlGeneratorFactory$instance extends Microsoft_EntityFrame
|
|
|
979
1020
|
export type QuerySqlGeneratorFactory = QuerySqlGeneratorFactory$instance & __QuerySqlGeneratorFactory$views;
|
|
980
1021
|
|
|
981
1022
|
|
|
982
|
-
export
|
|
983
|
-
|
|
984
|
-
}
|
|
985
|
-
|
|
1023
|
+
export interface QueryTranslationPostprocessorFactory$instance {
|
|
1024
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPostprocessorFactory: never;
|
|
986
1025
|
|
|
987
|
-
|
|
1026
|
+
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
988
1027
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
989
1028
|
}
|
|
990
1029
|
|
|
@@ -1003,12 +1042,10 @@ export interface QueryTranslationPostprocessorFactory$instance extends Microsoft
|
|
|
1003
1042
|
export type QueryTranslationPostprocessorFactory = QueryTranslationPostprocessorFactory$instance & __QueryTranslationPostprocessorFactory$views;
|
|
1004
1043
|
|
|
1005
1044
|
|
|
1006
|
-
export
|
|
1007
|
-
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1045
|
+
export interface QueryTranslationPreprocessorFactory$instance {
|
|
1046
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPreprocessorFactory: never;
|
|
1010
1047
|
|
|
1011
|
-
|
|
1048
|
+
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
1012
1049
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
1013
1050
|
}
|
|
1014
1051
|
|
|
@@ -1028,6 +1065,8 @@ export type QueryTranslationPreprocessorFactory = QueryTranslationPreprocessorFa
|
|
|
1028
1065
|
|
|
1029
1066
|
|
|
1030
1067
|
export interface RandomTranslator$instance {
|
|
1068
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
1069
|
+
|
|
1031
1070
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
1032
1071
|
}
|
|
1033
1072
|
|
|
@@ -1047,6 +1086,8 @@ export type RandomTranslator = RandomTranslator$instance & __RandomTranslator$vi
|
|
|
1047
1086
|
|
|
1048
1087
|
|
|
1049
1088
|
export interface RelationalCommandCache$instance {
|
|
1089
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1090
|
+
|
|
1050
1091
|
GetRelationalCommandTemplate(parameters: Dictionary<System_Internal.String, unknown>): IRelationalCommandTemplate;
|
|
1051
1092
|
}
|
|
1052
1093
|
|
|
@@ -1065,12 +1106,10 @@ export interface RelationalCommandCache$instance extends Microsoft_EntityFramewo
|
|
|
1065
1106
|
export type RelationalCommandCache = RelationalCommandCache$instance & __RelationalCommandCache$views;
|
|
1066
1107
|
|
|
1067
1108
|
|
|
1068
|
-
export
|
|
1069
|
-
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1109
|
+
export interface RelationalParameterBasedSqlProcessorFactory$instance {
|
|
1110
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalParameterBasedSqlProcessorFactory: never;
|
|
1072
1111
|
|
|
1073
|
-
|
|
1112
|
+
readonly Dependencies: RelationalParameterBasedSqlProcessorDependencies;
|
|
1074
1113
|
Create(parameters: RelationalParameterBasedSqlProcessorParameters): RelationalParameterBasedSqlProcessor;
|
|
1075
1114
|
}
|
|
1076
1115
|
|
|
@@ -1089,14 +1128,10 @@ export interface RelationalParameterBasedSqlProcessorFactory$instance extends Mi
|
|
|
1089
1128
|
export type RelationalParameterBasedSqlProcessorFactory = RelationalParameterBasedSqlProcessorFactory$instance & __RelationalParameterBasedSqlProcessorFactory$views;
|
|
1090
1129
|
|
|
1091
1130
|
|
|
1092
|
-
export
|
|
1093
|
-
|
|
1094
|
-
protected VisitExtension(expression: Expression): Expression;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
export interface RelationalParameterProcessor$instance extends RelationalParameterProcessor$protected, ExpressionVisitor {
|
|
1131
|
+
export interface RelationalParameterProcessor$instance extends ExpressionVisitor {
|
|
1132
|
+
readonly Dependencies: RelationalParameterBasedSqlProcessorDependencies;
|
|
1099
1133
|
Expand(queryExpression: Expression, parametersDecorator: ParametersCacheDecorator): Expression;
|
|
1134
|
+
VisitExtension(expression: Expression): Expression;
|
|
1100
1135
|
}
|
|
1101
1136
|
|
|
1102
1137
|
|
|
@@ -1107,24 +1142,20 @@ export const RelationalParameterProcessor: {
|
|
|
1107
1142
|
|
|
1108
1143
|
export type RelationalParameterProcessor = RelationalParameterProcessor$instance;
|
|
1109
1144
|
|
|
1110
|
-
export
|
|
1111
|
-
protected VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
1112
|
-
protected VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
1113
|
-
protected VisitElementInit(elementInit: ElementInit): ElementInit;
|
|
1114
|
-
protected VisitExtension(extensionExpression: Expression): Expression;
|
|
1115
|
-
protected VisitMember(memberExpression: MemberExpression): Expression;
|
|
1116
|
-
protected VisitMemberAssignment(memberAssignment: MemberAssignment): MemberAssignment;
|
|
1117
|
-
protected VisitMemberInit(memberInitExpression: MemberInitExpression): Expression;
|
|
1118
|
-
protected VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1119
|
-
protected VisitNew(newExpression: NewExpression): Expression;
|
|
1120
|
-
protected VisitNewArray(newArrayExpression: NewArrayExpression): Expression;
|
|
1121
|
-
protected VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
export interface RelationalProjectionBindingExpressionVisitor$instance extends RelationalProjectionBindingExpressionVisitor$protected, ExpressionVisitor {
|
|
1145
|
+
export interface RelationalProjectionBindingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1126
1146
|
Translate(selectExpression: SelectExpression, expression: Expression): Expression;
|
|
1127
1147
|
Visit(expression: Expression): Expression | undefined;
|
|
1148
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
1149
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
1150
|
+
VisitElementInit(elementInit: ElementInit): ElementInit;
|
|
1151
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1152
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
1153
|
+
VisitMemberAssignment(memberAssignment: MemberAssignment): MemberAssignment;
|
|
1154
|
+
VisitMemberInit(memberInitExpression: MemberInitExpression): Expression;
|
|
1155
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1156
|
+
VisitNew(newExpression: NewExpression): Expression;
|
|
1157
|
+
VisitNewArray(newArrayExpression: NewArrayExpression): Expression;
|
|
1158
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
1128
1159
|
}
|
|
1129
1160
|
|
|
1130
1161
|
|
|
@@ -1136,13 +1167,11 @@ export const RelationalProjectionBindingExpressionVisitor: {
|
|
|
1136
1167
|
|
|
1137
1168
|
export type RelationalProjectionBindingExpressionVisitor = RelationalProjectionBindingExpressionVisitor$instance;
|
|
1138
1169
|
|
|
1139
|
-
export
|
|
1140
|
-
|
|
1141
|
-
protected readonly RelationalDependencies: RelationalQueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1170
|
+
export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance {
|
|
1171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryableMethodTranslatingExpressionVisitorFactory: never;
|
|
1144
1172
|
|
|
1145
|
-
|
|
1173
|
+
readonly Dependencies: QueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1174
|
+
readonly RelationalDependencies: RelationalQueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1146
1175
|
Create(queryCompilationContext: QueryCompilationContext): QueryableMethodTranslatingExpressionVisitor;
|
|
1147
1176
|
}
|
|
1148
1177
|
|
|
@@ -1161,13 +1190,11 @@ export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$in
|
|
|
1161
1190
|
export type RelationalQueryableMethodTranslatingExpressionVisitorFactory = RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance & __RelationalQueryableMethodTranslatingExpressionVisitorFactory$views;
|
|
1162
1191
|
|
|
1163
1192
|
|
|
1164
|
-
export
|
|
1165
|
-
|
|
1166
|
-
protected readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1193
|
+
export interface RelationalQueryCompilationContextFactory$instance {
|
|
1194
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryCompilationContextFactory: never;
|
|
1169
1195
|
|
|
1170
|
-
|
|
1196
|
+
readonly Dependencies: QueryCompilationContextDependencies;
|
|
1197
|
+
readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
|
|
1171
1198
|
Create(async: boolean): QueryCompilationContext;
|
|
1172
1199
|
CreatePrecompiled(async: boolean): QueryCompilationContext;
|
|
1173
1200
|
}
|
|
@@ -1187,13 +1214,11 @@ export interface RelationalQueryCompilationContextFactory$instance extends Micro
|
|
|
1187
1214
|
export type RelationalQueryCompilationContextFactory = RelationalQueryCompilationContextFactory$instance & __RelationalQueryCompilationContextFactory$views;
|
|
1188
1215
|
|
|
1189
1216
|
|
|
1190
|
-
export
|
|
1191
|
-
|
|
1192
|
-
protected readonly RelationalDependencies: RelationalQueryContextDependencies;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1217
|
+
export interface RelationalQueryContextFactory$instance {
|
|
1218
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryContextFactory: never;
|
|
1195
1219
|
|
|
1196
|
-
|
|
1220
|
+
readonly Dependencies: QueryContextDependencies;
|
|
1221
|
+
readonly RelationalDependencies: RelationalQueryContextDependencies;
|
|
1197
1222
|
Create(): QueryContext;
|
|
1198
1223
|
}
|
|
1199
1224
|
|
|
@@ -1212,12 +1237,8 @@ export interface RelationalQueryContextFactory$instance extends Microsoft_Entity
|
|
|
1212
1237
|
export type RelationalQueryContextFactory = RelationalQueryContextFactory$instance & __RelationalQueryContextFactory$views;
|
|
1213
1238
|
|
|
1214
1239
|
|
|
1215
|
-
export
|
|
1216
|
-
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
export interface RelationalQueryMetadataExtractingExpressionVisitor$instance extends RelationalQueryMetadataExtractingExpressionVisitor$protected, ExpressionVisitor {
|
|
1240
|
+
export interface RelationalQueryMetadataExtractingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1241
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1221
1242
|
}
|
|
1222
1243
|
|
|
1223
1244
|
|
|
@@ -1229,6 +1250,8 @@ export const RelationalQueryMetadataExtractingExpressionVisitor: {
|
|
|
1229
1250
|
export type RelationalQueryMetadataExtractingExpressionVisitor = RelationalQueryMetadataExtractingExpressionVisitor$instance;
|
|
1230
1251
|
|
|
1231
1252
|
export interface RelationalQueryStringFactory$instance {
|
|
1253
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQueryStringFactory: never;
|
|
1254
|
+
|
|
1232
1255
|
Create(command: DbCommand): string;
|
|
1233
1256
|
}
|
|
1234
1257
|
|
|
@@ -1247,13 +1270,11 @@ export interface RelationalQueryStringFactory$instance extends Microsoft_EntityF
|
|
|
1247
1270
|
export type RelationalQueryStringFactory = RelationalQueryStringFactory$instance & __RelationalQueryStringFactory$views;
|
|
1248
1271
|
|
|
1249
1272
|
|
|
1250
|
-
export
|
|
1251
|
-
|
|
1252
|
-
protected readonly RelationalDependencies: RelationalQueryTranslationPostprocessorDependencies;
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1273
|
+
export interface RelationalQueryTranslationPostprocessorFactory$instance {
|
|
1274
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPostprocessorFactory: never;
|
|
1255
1275
|
|
|
1256
|
-
|
|
1276
|
+
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
1277
|
+
readonly RelationalDependencies: RelationalQueryTranslationPostprocessorDependencies;
|
|
1257
1278
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
1258
1279
|
}
|
|
1259
1280
|
|
|
@@ -1272,13 +1293,11 @@ export interface RelationalQueryTranslationPostprocessorFactory$instance extends
|
|
|
1272
1293
|
export type RelationalQueryTranslationPostprocessorFactory = RelationalQueryTranslationPostprocessorFactory$instance & __RelationalQueryTranslationPostprocessorFactory$views;
|
|
1273
1294
|
|
|
1274
1295
|
|
|
1275
|
-
export
|
|
1276
|
-
|
|
1277
|
-
protected readonly RelationalDependencies: RelationalQueryTranslationPreprocessorDependencies;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1296
|
+
export interface RelationalQueryTranslationPreprocessorFactory$instance {
|
|
1297
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPreprocessorFactory: never;
|
|
1280
1298
|
|
|
1281
|
-
|
|
1299
|
+
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
1300
|
+
readonly RelationalDependencies: RelationalQueryTranslationPreprocessorDependencies;
|
|
1282
1301
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
1283
1302
|
}
|
|
1284
1303
|
|
|
@@ -1297,13 +1316,11 @@ export interface RelationalQueryTranslationPreprocessorFactory$instance extends
|
|
|
1297
1316
|
export type RelationalQueryTranslationPreprocessorFactory = RelationalQueryTranslationPreprocessorFactory$instance & __RelationalQueryTranslationPreprocessorFactory$views;
|
|
1298
1317
|
|
|
1299
1318
|
|
|
1300
|
-
export
|
|
1301
|
-
|
|
1302
|
-
protected readonly RelationalDependencies: RelationalShapedQueryCompilingExpressionVisitorDependencies;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1319
|
+
export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance {
|
|
1320
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IShapedQueryCompilingExpressionVisitorFactory: never;
|
|
1305
1321
|
|
|
1306
|
-
|
|
1322
|
+
readonly Dependencies: ShapedQueryCompilingExpressionVisitorDependencies;
|
|
1323
|
+
readonly RelationalDependencies: RelationalShapedQueryCompilingExpressionVisitorDependencies;
|
|
1307
1324
|
Create(queryCompilationContext: QueryCompilationContext): ShapedQueryCompilingExpressionVisitor;
|
|
1308
1325
|
}
|
|
1309
1326
|
|
|
@@ -1322,15 +1339,13 @@ export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance
|
|
|
1322
1339
|
export type RelationalShapedQueryCompilingExpressionVisitorFactory = RelationalShapedQueryCompilingExpressionVisitorFactory$instance & __RelationalShapedQueryCompilingExpressionVisitorFactory$views;
|
|
1323
1340
|
|
|
1324
1341
|
|
|
1325
|
-
export
|
|
1326
|
-
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1342
|
+
export interface RelationalStructuralTypeMaterializerSource$instance extends StructuralTypeMaterializerSource$instance {
|
|
1343
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IStructuralTypeMaterializerSource: never;
|
|
1329
1344
|
|
|
1330
|
-
export interface RelationalStructuralTypeMaterializerSource$instance extends RelationalStructuralTypeMaterializerSource$protected, StructuralTypeMaterializerSource$instance {
|
|
1331
1345
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
1332
1346
|
GetMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1333
1347
|
GetMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1348
|
+
ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1334
1349
|
}
|
|
1335
1350
|
|
|
1336
1351
|
|
|
@@ -1346,12 +1361,8 @@ export interface __RelationalStructuralTypeMaterializerSource$views {
|
|
|
1346
1361
|
export type RelationalStructuralTypeMaterializerSource = RelationalStructuralTypeMaterializerSource$instance & __RelationalStructuralTypeMaterializerSource$views;
|
|
1347
1362
|
|
|
1348
1363
|
|
|
1349
|
-
export
|
|
1350
|
-
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
export interface RelationalValueConverterCompensatingExpressionVisitor$instance extends RelationalValueConverterCompensatingExpressionVisitor$protected, ExpressionVisitor {
|
|
1364
|
+
export interface RelationalValueConverterCompensatingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1365
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1355
1366
|
}
|
|
1356
1367
|
|
|
1357
1368
|
|
|
@@ -1363,7 +1374,8 @@ export const RelationalValueConverterCompensatingExpressionVisitor: {
|
|
|
1363
1374
|
export type RelationalValueConverterCompensatingExpressionVisitor = RelationalValueConverterCompensatingExpressionVisitor$instance;
|
|
1364
1375
|
|
|
1365
1376
|
export interface ResultContext$instance {
|
|
1366
|
-
Values: unknown[];
|
|
1377
|
+
get Values(): unknown[] | undefined;
|
|
1378
|
+
set Values(value: unknown[] | undefined);
|
|
1367
1379
|
}
|
|
1368
1380
|
|
|
1369
1381
|
|
|
@@ -1374,12 +1386,8 @@ export const ResultContext: {
|
|
|
1374
1386
|
|
|
1375
1387
|
export type ResultContext = ResultContext$instance;
|
|
1376
1388
|
|
|
1377
|
-
export
|
|
1378
|
-
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
export interface SelectExpressionProjectionApplyingExpressionVisitor$instance extends SelectExpressionProjectionApplyingExpressionVisitor$protected, ExpressionVisitor {
|
|
1389
|
+
export interface SelectExpressionProjectionApplyingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1390
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1383
1391
|
}
|
|
1384
1392
|
|
|
1385
1393
|
|
|
@@ -1397,7 +1405,7 @@ export interface SingleQueryCollectionContext$instance {
|
|
|
1397
1405
|
readonly ParentIdentifier: unknown[];
|
|
1398
1406
|
readonly ResultContext: ResultContext;
|
|
1399
1407
|
get SelfIdentifier(): unknown[] | undefined;
|
|
1400
|
-
set SelfIdentifier(value: unknown[]);
|
|
1408
|
+
set SelfIdentifier(value: unknown[] | undefined);
|
|
1401
1409
|
UpdateSelfIdentifier(selfIdentifier: unknown[]): void;
|
|
1402
1410
|
}
|
|
1403
1411
|
|
|
@@ -1410,6 +1418,12 @@ export const SingleQueryCollectionContext: {
|
|
|
1410
1418
|
export type SingleQueryCollectionContext = SingleQueryCollectionContext$instance;
|
|
1411
1419
|
|
|
1412
1420
|
export interface SingleQueryingEnumerable_1$instance<T> {
|
|
1421
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryingEnumerable: never;
|
|
1422
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
1423
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
1424
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1425
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1426
|
+
|
|
1413
1427
|
CreateDbCommand(): DbCommand;
|
|
1414
1428
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
1415
1429
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -1427,6 +1441,8 @@ export interface __SingleQueryingEnumerable_1$views<T> {
|
|
|
1427
1441
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
1428
1442
|
}
|
|
1429
1443
|
|
|
1444
|
+
export interface SingleQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
1445
|
+
|
|
1430
1446
|
export type SingleQueryingEnumerable_1<T> = SingleQueryingEnumerable_1$instance<T> & __SingleQueryingEnumerable_1$views<T>;
|
|
1431
1447
|
|
|
1432
1448
|
|
|
@@ -1475,6 +1491,12 @@ export const SplitQueryDataReaderContext: {
|
|
|
1475
1491
|
export type SplitQueryDataReaderContext = SplitQueryDataReaderContext$instance;
|
|
1476
1492
|
|
|
1477
1493
|
export interface SplitQueryingEnumerable_1$instance<T> {
|
|
1494
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryingEnumerable: never;
|
|
1495
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IRelationalQueryingEnumerable: never;
|
|
1496
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
1497
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1498
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1499
|
+
|
|
1478
1500
|
CreateDbCommand(): DbCommand;
|
|
1479
1501
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
1480
1502
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -1492,6 +1514,8 @@ export interface __SplitQueryingEnumerable_1$views<T> {
|
|
|
1492
1514
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
1493
1515
|
}
|
|
1494
1516
|
|
|
1517
|
+
export interface SplitQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
1518
|
+
|
|
1495
1519
|
export type SplitQueryingEnumerable_1<T> = SplitQueryingEnumerable_1$instance<T> & __SplitQueryingEnumerable_1$views<T>;
|
|
1496
1520
|
|
|
1497
1521
|
|
|
@@ -1512,12 +1536,8 @@ export const SplitQueryResultCoordinator: {
|
|
|
1512
1536
|
|
|
1513
1537
|
export type SplitQueryResultCoordinator = SplitQueryResultCoordinator$instance;
|
|
1514
1538
|
|
|
1515
|
-
export
|
|
1516
|
-
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
export interface SqlExpressionSimplifyingExpressionVisitor$instance extends SqlExpressionSimplifyingExpressionVisitor$protected, ExpressionVisitor {
|
|
1539
|
+
export interface SqlExpressionSimplifyingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1540
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1521
1541
|
}
|
|
1522
1542
|
|
|
1523
1543
|
|
|
@@ -1528,18 +1548,16 @@ export const SqlExpressionSimplifyingExpressionVisitor: {
|
|
|
1528
1548
|
|
|
1529
1549
|
export type SqlExpressionSimplifyingExpressionVisitor = SqlExpressionSimplifyingExpressionVisitor$instance;
|
|
1530
1550
|
|
|
1531
|
-
export
|
|
1532
|
-
|
|
1533
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1551
|
+
export interface SqlQueryRootExpression$instance extends QueryRootExpression {
|
|
1552
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1536
1553
|
|
|
1537
|
-
export interface SqlQueryRootExpression$instance extends SqlQueryRootExpression$protected, QueryRootExpression {
|
|
1538
1554
|
readonly Argument: Expression;
|
|
1539
1555
|
readonly Sql: string;
|
|
1540
1556
|
DetachQueryProvider(): Expression;
|
|
1541
1557
|
Equals(obj: unknown): boolean;
|
|
1542
1558
|
GetHashCode(): int;
|
|
1559
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1560
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1543
1561
|
}
|
|
1544
1562
|
|
|
1545
1563
|
|
|
@@ -1557,6 +1575,8 @@ export type SqlQueryRootExpression = SqlQueryRootExpression$instance & __SqlQuer
|
|
|
1557
1575
|
|
|
1558
1576
|
|
|
1559
1577
|
export interface StringMethodTranslator$instance {
|
|
1578
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
1579
|
+
|
|
1560
1580
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
1561
1581
|
}
|
|
1562
1582
|
|
|
@@ -1575,20 +1595,18 @@ export interface StringMethodTranslator$instance extends Microsoft_EntityFramewo
|
|
|
1575
1595
|
export type StringMethodTranslator = StringMethodTranslator$instance & __StringMethodTranslator$views;
|
|
1576
1596
|
|
|
1577
1597
|
|
|
1578
|
-
export
|
|
1579
|
-
|
|
1580
|
-
protected AddInitializeExpression(property: IPropertyBase, bindingInfo: ParameterBindingInfo, instanceVariable: Expression, getValueBufferExpression: MethodCallExpression, blockExpressions: List<Expression>, nullable: boolean): void;
|
|
1581
|
-
protected ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1598
|
+
export interface StructuralTypeMaterializerSource$instance {
|
|
1599
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IStructuralTypeMaterializerSource: never;
|
|
1584
1600
|
|
|
1585
|
-
|
|
1601
|
+
readonly Dependencies: StructuralTypeMaterializerSourceDependencies;
|
|
1602
|
+
AddInitializeExpression(property: IPropertyBase, bindingInfo: ParameterBindingInfo, instanceVariable: Expression, getValueBufferExpression: MethodCallExpression, blockExpressions: List<Expression>, nullable: boolean): void;
|
|
1586
1603
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
1587
1604
|
GetEmptyMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1588
1605
|
GetEmptyMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1589
1606
|
GetEmptyMaterializer(entityType: ITypeBase, binding: InstantiationBinding, serviceProperties: List<IServiceProperty>): Func<MaterializationContext, unknown>;
|
|
1590
1607
|
GetMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1591
1608
|
GetMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1609
|
+
ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1592
1610
|
}
|
|
1593
1611
|
|
|
1594
1612
|
|
|
@@ -1607,6 +1625,8 @@ export type StructuralTypeMaterializerSource = StructuralTypeMaterializerSource$
|
|
|
1607
1625
|
|
|
1608
1626
|
|
|
1609
1627
|
export interface StructuralTypeMaterializerSourceDependencies$instance {
|
|
1628
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1629
|
+
|
|
1610
1630
|
SingletonInterceptors: IEnumerable__System_Collections_Generic<ISingletonInterceptor>;
|
|
1611
1631
|
_Clone_$(): StructuralTypeMaterializerSourceDependencies;
|
|
1612
1632
|
Equals(obj: unknown): boolean;
|
|
@@ -1623,13 +1643,9 @@ export const StructuralTypeMaterializerSourceDependencies: {
|
|
|
1623
1643
|
|
|
1624
1644
|
export type StructuralTypeMaterializerSourceDependencies = StructuralTypeMaterializerSourceDependencies$instance;
|
|
1625
1645
|
|
|
1626
|
-
export
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
export interface SubqueryMemberPushdownExpressionVisitor$instance extends SubqueryMemberPushdownExpressionVisitor$protected, ExpressionVisitor {
|
|
1646
|
+
export interface SubqueryMemberPushdownExpressionVisitor$instance extends ExpressionVisitor {
|
|
1647
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
1648
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1633
1649
|
}
|
|
1634
1650
|
|
|
1635
1651
|
|
|
@@ -1640,18 +1656,16 @@ export const SubqueryMemberPushdownExpressionVisitor: {
|
|
|
1640
1656
|
|
|
1641
1657
|
export type SubqueryMemberPushdownExpressionVisitor = SubqueryMemberPushdownExpressionVisitor$instance;
|
|
1642
1658
|
|
|
1643
|
-
export
|
|
1644
|
-
|
|
1645
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1646
|
-
}
|
|
1659
|
+
export interface TableValuedFunctionQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
1660
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1647
1661
|
|
|
1648
|
-
|
|
1649
|
-
export interface TableValuedFunctionQueryRootExpression$instance extends TableValuedFunctionQueryRootExpression$protected, EntityQueryRootExpression {
|
|
1650
1662
|
readonly Arguments: IReadOnlyCollection<Expression>;
|
|
1651
1663
|
readonly Function: IStoreFunction;
|
|
1652
1664
|
Equals(obj: unknown): boolean;
|
|
1653
1665
|
GetHashCode(): int;
|
|
1666
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1654
1667
|
UpdateEntityType(entityType: IEntityType): EntityQueryRootExpression;
|
|
1668
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1655
1669
|
}
|
|
1656
1670
|
|
|
1657
1671
|
|
|
@@ -1667,16 +1681,11 @@ export interface __TableValuedFunctionQueryRootExpression$views {
|
|
|
1667
1681
|
export type TableValuedFunctionQueryRootExpression = TableValuedFunctionQueryRootExpression$instance & __TableValuedFunctionQueryRootExpression$views;
|
|
1668
1682
|
|
|
1669
1683
|
|
|
1670
|
-
export
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TpcTablesExpression;
|
|
1674
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1675
|
-
}
|
|
1676
|
-
|
|
1684
|
+
export interface TpcTablesExpression$instance extends TableExpressionBase {
|
|
1685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1686
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQuotableExpression: never;
|
|
1677
1687
|
|
|
1678
|
-
|
|
1679
|
-
readonly Alias: string;
|
|
1688
|
+
readonly Alias: string | string | undefined;
|
|
1680
1689
|
readonly DiscriminatorColumn: ColumnExpression;
|
|
1681
1690
|
DiscriminatorValues: List<System_Internal.String>;
|
|
1682
1691
|
readonly EntityType: IEntityType;
|
|
@@ -1684,8 +1693,10 @@ export interface TpcTablesExpression$instance extends TpcTablesExpression$protec
|
|
|
1684
1693
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1685
1694
|
Equals(obj: unknown): boolean;
|
|
1686
1695
|
GetHashCode(): int;
|
|
1696
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1687
1697
|
Prune(discriminatorValues: IReadOnlyList<System_Internal.String>): TpcTablesExpression;
|
|
1688
1698
|
Quote(): Expression;
|
|
1699
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1689
1700
|
}
|
|
1690
1701
|
|
|
1691
1702
|
|