@tsonic/efcore 10.0.2 → 10.0.3
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 +18 -35
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +28 -69
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +153 -261
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +43 -55
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +8 -16
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +24 -46
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +8 -50
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +160 -247
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +5 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -3
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +304 -407
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +130 -268
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +266 -598
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +6 -15
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +436 -763
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +95 -116
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +56 -64
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +229 -347
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +468 -719
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +151 -301
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +144 -335
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +4 -10
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +73 -102
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +244 -452
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +19 -47
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +3 -32
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +3 -9
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +114 -133
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +21 -43
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +21 -49
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/package.json +1 -1
|
@@ -101,18 +101,14 @@ export const QueryableJsonProjectionInfo: {
|
|
|
101
101
|
|
|
102
102
|
export type QueryableJsonProjectionInfo = QueryableJsonProjectionInfo$instance;
|
|
103
103
|
|
|
104
|
-
export
|
|
105
|
-
protected Dispose(disposing: boolean): void;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
export interface BufferedDataReader$instance extends BufferedDataReader$protected, DbDataReader {
|
|
104
|
+
export interface BufferedDataReader$instance extends DbDataReader {
|
|
110
105
|
readonly Depth: int;
|
|
111
106
|
readonly FieldCount: int;
|
|
112
107
|
readonly HasRows: boolean;
|
|
113
108
|
readonly IsClosed: boolean;
|
|
114
109
|
readonly RecordsAffected: int;
|
|
115
110
|
Close(): void;
|
|
111
|
+
Dispose(disposing: boolean): void;
|
|
116
112
|
get_Item(name: string): unknown;
|
|
117
113
|
get_Item(ordinal: int): unknown;
|
|
118
114
|
GetBoolean(ordinal: int): boolean;
|
|
@@ -177,12 +173,8 @@ export interface ByteArraySequenceEqualTranslator$instance extends Microsoft_Ent
|
|
|
177
173
|
export type ByteArraySequenceEqualTranslator = ByteArraySequenceEqualTranslator$instance & __ByteArraySequenceEqualTranslator$views;
|
|
178
174
|
|
|
179
175
|
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
export interface CallForwardingExpressionVisitor$instance extends CallForwardingExpressionVisitor$protected, ExpressionVisitor {
|
|
176
|
+
export interface CallForwardingExpressionVisitor$instance extends ExpressionVisitor {
|
|
177
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
186
178
|
}
|
|
187
179
|
|
|
188
180
|
|
|
@@ -231,13 +223,8 @@ export interface ComparisonTranslator$instance extends Microsoft_EntityFramework
|
|
|
231
223
|
export type ComparisonTranslator = ComparisonTranslator$instance & __ComparisonTranslator$views;
|
|
232
224
|
|
|
233
225
|
|
|
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>> {
|
|
226
|
+
export interface CompiledAsyncEnumerableQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, IAsyncEnumerable<TResult>> {
|
|
227
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, IAsyncEnumerable<TResult>>;
|
|
241
228
|
Execute(context: TContext): IAsyncEnumerable<TResult>;
|
|
242
229
|
Execute<TParam1>(context: TContext, param1: TParam1): IAsyncEnumerable<TResult>;
|
|
243
230
|
Execute<TParam1, TParam2>(context: TContext, param1: TParam1, param2: TParam2): IAsyncEnumerable<TResult>;
|
|
@@ -264,13 +251,8 @@ export const CompiledAsyncEnumerableQuery_2: {
|
|
|
264
251
|
|
|
265
252
|
export type CompiledAsyncEnumerableQuery_2<TContext extends DbContext, TResult> = CompiledAsyncEnumerableQuery_2$instance<TContext, TResult>;
|
|
266
253
|
|
|
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>> {
|
|
254
|
+
export interface CompiledAsyncTaskQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, Task<TResult>> {
|
|
255
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, Task<TResult>>;
|
|
274
256
|
ExecuteAsync(context: TContext): Task<TResult>;
|
|
275
257
|
ExecuteAsync(context: TContext, cancellationToken: CancellationToken): Task<TResult>;
|
|
276
258
|
ExecuteAsync<TParam1>(context: TContext, param1: TParam1): Task<TResult>;
|
|
@@ -312,13 +294,8 @@ export const CompiledAsyncTaskQuery_2: {
|
|
|
312
294
|
|
|
313
295
|
export type CompiledAsyncTaskQuery_2<TContext extends DbContext, TResult> = CompiledAsyncTaskQuery_2$instance<TContext, TResult>;
|
|
314
296
|
|
|
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> {
|
|
297
|
+
export interface CompiledQuery_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2<TContext, TResult> {
|
|
298
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
322
299
|
Execute(context: TContext): TResult;
|
|
323
300
|
Execute<TParam1>(context: TContext, param1: TParam1): TResult;
|
|
324
301
|
Execute<TParam1, TParam2>(context: TContext, param1: TParam1, param2: TParam2): TResult;
|
|
@@ -345,19 +322,14 @@ export const CompiledQuery_2: {
|
|
|
345
322
|
|
|
346
323
|
export type CompiledQuery_2<TContext extends DbContext, TResult> = CompiledQuery_2$instance<TContext, TResult>;
|
|
347
324
|
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
export interface CompiledQueryBase_2$instance<TContext extends DbContext, TResult> extends CompiledQueryBase_2$protected<TContext, TResult> {
|
|
325
|
+
export interface CompiledQueryBase_2$instance<TContext extends DbContext, TResult> {
|
|
326
|
+
CreateCompiledQuery(queryCompiler: IQueryCompiler, expression: Expression): Func<QueryContext, TResult>;
|
|
327
|
+
ExecuteCore(context: TContext, ...parameters: unknown[]): TResult;
|
|
328
|
+
ExecuteCore(context: TContext, cancellationToken: CancellationToken, ...parameters: unknown[]): TResult;
|
|
356
329
|
}
|
|
357
330
|
|
|
358
331
|
|
|
359
|
-
export const CompiledQueryBase_2: {
|
|
360
|
-
new<TContext extends DbContext, TResult>(queryExpression: LambdaExpression): CompiledQueryBase_2<TContext, TResult>;
|
|
332
|
+
export const CompiledQueryBase_2: (abstract new<TContext extends DbContext, TResult>(queryExpression: LambdaExpression) => CompiledQueryBase_2<TContext, TResult>) & {
|
|
361
333
|
};
|
|
362
334
|
|
|
363
335
|
|
|
@@ -480,49 +452,45 @@ export interface EqualsTranslator$instance extends Microsoft_EntityFrameworkCore
|
|
|
480
452
|
export type EqualsTranslator = EqualsTranslator$instance & __EqualsTranslator$views;
|
|
481
453
|
|
|
482
454
|
|
|
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 {
|
|
455
|
+
export interface ExpressionTreeFuncletizer$instance extends ExpressionVisitor {
|
|
520
456
|
CalculatePathsToEvaluatableRoots(linqOperatorMethodCall: MethodCallExpression, argumentIndex: int): ExpressionTreeFuncletizer_PathNode | undefined;
|
|
521
457
|
CalculatePathsToEvaluatableRoots(expression: Expression): ExpressionTreeFuncletizer_PathNode | undefined;
|
|
522
458
|
ExtractParameters(expression: Expression, parameters: Dictionary<System_Internal.String, unknown>, parameterize: boolean, clearParameterizedValues: boolean): Expression;
|
|
523
459
|
ExtractParameters(expression: Expression, parameters: Dictionary<System_Internal.String, unknown>, parameterize: boolean, clearParameterizedValues: boolean, precompiledQuery: boolean): Expression;
|
|
524
460
|
ResetPathCalculation(): void;
|
|
525
461
|
Visit(expression: Expression): Expression | undefined;
|
|
462
|
+
VisitBinary(binary: BinaryExpression): Expression;
|
|
463
|
+
VisitBlock(node: BlockExpression): Expression;
|
|
464
|
+
VisitCatchBlock(node: CatchBlock): CatchBlock;
|
|
465
|
+
VisitConditional(conditional: ConditionalExpression): Expression;
|
|
466
|
+
VisitConstant(constant: ConstantExpression): Expression;
|
|
467
|
+
VisitDebugInfo(node: DebugInfoExpression): Expression;
|
|
468
|
+
VisitDefault(node: DefaultExpression): Expression;
|
|
469
|
+
VisitDynamic(node: DynamicExpression): Expression;
|
|
470
|
+
VisitElementInit(node: ElementInit): ElementInit;
|
|
471
|
+
VisitExtension(extension: Expression): Expression;
|
|
472
|
+
VisitGoto(node: GotoExpression): Expression;
|
|
473
|
+
VisitIndex(index: IndexExpression): Expression;
|
|
474
|
+
VisitInvocation(invocation: InvocationExpression): Expression;
|
|
475
|
+
VisitLabel(node: LabelExpression): Expression;
|
|
476
|
+
VisitLabelTarget(node: LabelTarget): LabelTarget;
|
|
477
|
+
VisitLambda<T>(lambda: Expression<T>): Expression;
|
|
478
|
+
VisitListInit(listInit: ListInitExpression): Expression;
|
|
479
|
+
VisitLoop(node: LoopExpression): Expression;
|
|
480
|
+
VisitMember(member: MemberExpression): Expression;
|
|
481
|
+
VisitMemberInit(memberInit: MemberInitExpression): Expression;
|
|
482
|
+
VisitMemberListBinding(node: MemberListBinding): MemberListBinding;
|
|
483
|
+
VisitMemberMemberBinding(node: MemberMemberBinding): MemberMemberBinding;
|
|
484
|
+
VisitMethodCall(methodCall: MethodCallExpression): Expression;
|
|
485
|
+
VisitNew(new_: NewExpression): Expression;
|
|
486
|
+
VisitNewArray(newArray: NewArrayExpression): Expression;
|
|
487
|
+
VisitParameter(parameterExpression: ParameterExpression): Expression;
|
|
488
|
+
VisitRuntimeVariables(node: RuntimeVariablesExpression): Expression;
|
|
489
|
+
VisitSwitch(node: SwitchExpression): Expression;
|
|
490
|
+
VisitSwitchCase(node: SwitchCase): SwitchCase;
|
|
491
|
+
VisitTry(node: TryExpression): Expression;
|
|
492
|
+
VisitTypeBinary(typeBinary: TypeBinaryExpression): Expression;
|
|
493
|
+
VisitUnary(unary: UnaryExpression): Expression;
|
|
526
494
|
}
|
|
527
495
|
|
|
528
496
|
|
|
@@ -535,12 +503,12 @@ export type ExpressionTreeFuncletizer = ExpressionTreeFuncletizer$instance;
|
|
|
535
503
|
|
|
536
504
|
export interface ExpressionTreeFuncletizer_PathNode$instance {
|
|
537
505
|
get Children(): IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined;
|
|
538
|
-
set Children(value: IReadOnlyList<ExpressionTreeFuncletizer_PathNode>);
|
|
506
|
+
set Children(value: IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined);
|
|
539
507
|
ExpressionType: Type;
|
|
540
508
|
get ParameterName(): string | undefined;
|
|
541
|
-
set ParameterName(value: string);
|
|
509
|
+
set ParameterName(value: string | undefined);
|
|
542
510
|
get PathFromParent(): Func<Expression, Expression> | undefined;
|
|
543
|
-
set PathFromParent(value: Func<Expression, Expression>);
|
|
511
|
+
set PathFromParent(value: Func<Expression, Expression> | undefined);
|
|
544
512
|
_Clone_$(): ExpressionTreeFuncletizer_PathNode;
|
|
545
513
|
Equals(obj: unknown): boolean;
|
|
546
514
|
Equals(other: ExpressionTreeFuncletizer_PathNode): boolean;
|
|
@@ -578,19 +546,15 @@ export interface __FromSqlQueryingEnumerable_1$views<T> {
|
|
|
578
546
|
export type FromSqlQueryingEnumerable_1<T> = FromSqlQueryingEnumerable_1$instance<T> & __FromSqlQueryingEnumerable_1$views<T>;
|
|
579
547
|
|
|
580
548
|
|
|
581
|
-
export
|
|
582
|
-
protected Print(expressionPrinter: ExpressionPrinter): void;
|
|
583
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
export interface FromSqlQueryRootExpression$instance extends FromSqlQueryRootExpression$protected, EntityQueryRootExpression {
|
|
549
|
+
export interface FromSqlQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
588
550
|
readonly Argument: Expression;
|
|
589
551
|
readonly Sql: string;
|
|
590
552
|
DetachQueryProvider(): Expression;
|
|
591
553
|
Equals(obj: unknown): boolean;
|
|
592
554
|
GetHashCode(): int;
|
|
555
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
593
556
|
UpdateEntityType(entityType: IEntityType): EntityQueryRootExpression;
|
|
557
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
594
558
|
}
|
|
595
559
|
|
|
596
560
|
|
|
@@ -668,12 +632,8 @@ export interface __GroupBySplitQueryingEnumerable_2$views<TKey, TElement> {
|
|
|
668
632
|
export type GroupBySplitQueryingEnumerable_2<TKey, TElement> = GroupBySplitQueryingEnumerable_2$instance<TKey, TElement> & __GroupBySplitQueryingEnumerable_2$views<TKey, TElement>;
|
|
669
633
|
|
|
670
634
|
|
|
671
|
-
export
|
|
672
|
-
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
export interface InvocationExpressionRemovingExpressionVisitor$instance extends InvocationExpressionRemovingExpressionVisitor$protected, ExpressionVisitor {
|
|
635
|
+
export interface InvocationExpressionRemovingExpressionVisitor$instance extends ExpressionVisitor {
|
|
636
|
+
VisitInvocation(invocationExpression: InvocationExpression): Expression;
|
|
677
637
|
}
|
|
678
638
|
|
|
679
639
|
|
|
@@ -703,16 +663,12 @@ export interface LikeTranslator$instance extends Microsoft_EntityFrameworkCore_Q
|
|
|
703
663
|
export type LikeTranslator = LikeTranslator$instance & __LikeTranslator$views;
|
|
704
664
|
|
|
705
665
|
|
|
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 {
|
|
666
|
+
export interface NavigationExpandingExpressionVisitor$instance extends ExpressionVisitor {
|
|
715
667
|
Expand(query: Expression): Expression;
|
|
668
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
669
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
670
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
671
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
716
672
|
}
|
|
717
673
|
|
|
718
674
|
|
|
@@ -729,7 +685,6 @@ export interface NullAsyncQueryProvider$instance {
|
|
|
729
685
|
|
|
730
686
|
|
|
731
687
|
export const NullAsyncQueryProvider: {
|
|
732
|
-
new(): NullAsyncQueryProvider;
|
|
733
688
|
readonly Instance: IAsyncQueryProvider;
|
|
734
689
|
};
|
|
735
690
|
|
|
@@ -743,13 +698,9 @@ export interface NullAsyncQueryProvider$instance extends Microsoft_EntityFramewo
|
|
|
743
698
|
export type NullAsyncQueryProvider = NullAsyncQueryProvider$instance & __NullAsyncQueryProvider$views;
|
|
744
699
|
|
|
745
700
|
|
|
746
|
-
export
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
export interface NullCheckRemovingExpressionVisitor$instance extends NullCheckRemovingExpressionVisitor$protected, ExpressionVisitor {
|
|
701
|
+
export interface NullCheckRemovingExpressionVisitor$instance extends ExpressionVisitor {
|
|
702
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
703
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
753
704
|
}
|
|
754
705
|
|
|
755
706
|
|
|
@@ -825,14 +776,10 @@ export interface QueryableAggregateMethodTranslator$instance extends Microsoft_E
|
|
|
825
776
|
export type QueryableAggregateMethodTranslator = QueryableAggregateMethodTranslator$instance & __QueryableAggregateMethodTranslator$views;
|
|
826
777
|
|
|
827
778
|
|
|
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 {
|
|
779
|
+
export interface QueryableMethodNormalizingExpressionVisitor$instance extends ExpressionVisitor {
|
|
835
780
|
Normalize(expression: Expression): Expression;
|
|
781
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
782
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
836
783
|
}
|
|
837
784
|
|
|
838
785
|
|
|
@@ -843,12 +790,8 @@ export const QueryableMethodNormalizingExpressionVisitor: {
|
|
|
843
790
|
|
|
844
791
|
export type QueryableMethodNormalizingExpressionVisitor = QueryableMethodNormalizingExpressionVisitor$instance;
|
|
845
792
|
|
|
846
|
-
export
|
|
847
|
-
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
export interface QueryCompilationContextFactory$instance extends QueryCompilationContextFactory$protected {
|
|
793
|
+
export interface QueryCompilationContextFactory$instance {
|
|
794
|
+
readonly Dependencies: QueryCompilationContextDependencies;
|
|
852
795
|
Create(async: boolean): QueryCompilationContext;
|
|
853
796
|
CreatePrecompiled(async: boolean): QueryCompilationContext;
|
|
854
797
|
}
|
|
@@ -930,21 +873,17 @@ export const QueryFiltersCacheKey: {
|
|
|
930
873
|
|
|
931
874
|
export type QueryFiltersCacheKey = QueryFiltersCacheKey$instance;
|
|
932
875
|
|
|
933
|
-
export
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
export interface QueryOptimizingExpressionVisitor$instance extends QueryOptimizingExpressionVisitor$protected, ExpressionVisitor {
|
|
876
|
+
export interface QueryOptimizingExpressionVisitor$instance extends ExpressionVisitor {
|
|
877
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
878
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
879
|
+
VisitElementInit(elementInit: ElementInit): ElementInit;
|
|
880
|
+
VisitLambda<T>(lambdaExpression: Expression<T>): Expression;
|
|
881
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
882
|
+
VisitMemberAssignment(memberAssignment: MemberAssignment): MemberAssignment;
|
|
883
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
884
|
+
VisitNew(newExpression: NewExpression): Expression;
|
|
885
|
+
VisitNewArray(newArrayExpression: NewArrayExpression): Expression;
|
|
886
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
948
887
|
}
|
|
949
888
|
|
|
950
889
|
|
|
@@ -955,12 +894,8 @@ export const QueryOptimizingExpressionVisitor: {
|
|
|
955
894
|
|
|
956
895
|
export type QueryOptimizingExpressionVisitor = QueryOptimizingExpressionVisitor$instance;
|
|
957
896
|
|
|
958
|
-
export
|
|
959
|
-
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
export interface QuerySqlGeneratorFactory$instance extends QuerySqlGeneratorFactory$protected {
|
|
897
|
+
export interface QuerySqlGeneratorFactory$instance {
|
|
898
|
+
readonly Dependencies: QuerySqlGeneratorDependencies;
|
|
964
899
|
Create(): QuerySqlGenerator;
|
|
965
900
|
}
|
|
966
901
|
|
|
@@ -979,12 +914,8 @@ export interface QuerySqlGeneratorFactory$instance extends Microsoft_EntityFrame
|
|
|
979
914
|
export type QuerySqlGeneratorFactory = QuerySqlGeneratorFactory$instance & __QuerySqlGeneratorFactory$views;
|
|
980
915
|
|
|
981
916
|
|
|
982
|
-
export
|
|
983
|
-
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
export interface QueryTranslationPostprocessorFactory$instance extends QueryTranslationPostprocessorFactory$protected {
|
|
917
|
+
export interface QueryTranslationPostprocessorFactory$instance {
|
|
918
|
+
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
988
919
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
989
920
|
}
|
|
990
921
|
|
|
@@ -1003,12 +934,8 @@ export interface QueryTranslationPostprocessorFactory$instance extends Microsoft
|
|
|
1003
934
|
export type QueryTranslationPostprocessorFactory = QueryTranslationPostprocessorFactory$instance & __QueryTranslationPostprocessorFactory$views;
|
|
1004
935
|
|
|
1005
936
|
|
|
1006
|
-
export
|
|
1007
|
-
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
export interface QueryTranslationPreprocessorFactory$instance extends QueryTranslationPreprocessorFactory$protected {
|
|
937
|
+
export interface QueryTranslationPreprocessorFactory$instance {
|
|
938
|
+
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
1012
939
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
1013
940
|
}
|
|
1014
941
|
|
|
@@ -1065,12 +992,8 @@ export interface RelationalCommandCache$instance extends Microsoft_EntityFramewo
|
|
|
1065
992
|
export type RelationalCommandCache = RelationalCommandCache$instance & __RelationalCommandCache$views;
|
|
1066
993
|
|
|
1067
994
|
|
|
1068
|
-
export
|
|
1069
|
-
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
export interface RelationalParameterBasedSqlProcessorFactory$instance extends RelationalParameterBasedSqlProcessorFactory$protected {
|
|
995
|
+
export interface RelationalParameterBasedSqlProcessorFactory$instance {
|
|
996
|
+
readonly Dependencies: RelationalParameterBasedSqlProcessorDependencies;
|
|
1074
997
|
Create(parameters: RelationalParameterBasedSqlProcessorParameters): RelationalParameterBasedSqlProcessor;
|
|
1075
998
|
}
|
|
1076
999
|
|
|
@@ -1089,14 +1012,10 @@ export interface RelationalParameterBasedSqlProcessorFactory$instance extends Mi
|
|
|
1089
1012
|
export type RelationalParameterBasedSqlProcessorFactory = RelationalParameterBasedSqlProcessorFactory$instance & __RelationalParameterBasedSqlProcessorFactory$views;
|
|
1090
1013
|
|
|
1091
1014
|
|
|
1092
|
-
export
|
|
1093
|
-
|
|
1094
|
-
protected VisitExtension(expression: Expression): Expression;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
export interface RelationalParameterProcessor$instance extends RelationalParameterProcessor$protected, ExpressionVisitor {
|
|
1015
|
+
export interface RelationalParameterProcessor$instance extends ExpressionVisitor {
|
|
1016
|
+
readonly Dependencies: RelationalParameterBasedSqlProcessorDependencies;
|
|
1099
1017
|
Expand(queryExpression: Expression, parametersDecorator: ParametersCacheDecorator): Expression;
|
|
1018
|
+
VisitExtension(expression: Expression): Expression;
|
|
1100
1019
|
}
|
|
1101
1020
|
|
|
1102
1021
|
|
|
@@ -1107,24 +1026,20 @@ export const RelationalParameterProcessor: {
|
|
|
1107
1026
|
|
|
1108
1027
|
export type RelationalParameterProcessor = RelationalParameterProcessor$instance;
|
|
1109
1028
|
|
|
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 {
|
|
1029
|
+
export interface RelationalProjectionBindingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1126
1030
|
Translate(selectExpression: SelectExpression, expression: Expression): Expression;
|
|
1127
1031
|
Visit(expression: Expression): Expression | undefined;
|
|
1032
|
+
VisitBinary(binaryExpression: BinaryExpression): Expression;
|
|
1033
|
+
VisitConditional(conditionalExpression: ConditionalExpression): Expression;
|
|
1034
|
+
VisitElementInit(elementInit: ElementInit): ElementInit;
|
|
1035
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1036
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
1037
|
+
VisitMemberAssignment(memberAssignment: MemberAssignment): MemberAssignment;
|
|
1038
|
+
VisitMemberInit(memberInitExpression: MemberInitExpression): Expression;
|
|
1039
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1040
|
+
VisitNew(newExpression: NewExpression): Expression;
|
|
1041
|
+
VisitNewArray(newArrayExpression: NewArrayExpression): Expression;
|
|
1042
|
+
VisitUnary(unaryExpression: UnaryExpression): Expression;
|
|
1128
1043
|
}
|
|
1129
1044
|
|
|
1130
1045
|
|
|
@@ -1136,13 +1051,9 @@ export const RelationalProjectionBindingExpressionVisitor: {
|
|
|
1136
1051
|
|
|
1137
1052
|
export type RelationalProjectionBindingExpressionVisitor = RelationalProjectionBindingExpressionVisitor$instance;
|
|
1138
1053
|
|
|
1139
|
-
export
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance extends RelationalQueryableMethodTranslatingExpressionVisitorFactory$protected {
|
|
1054
|
+
export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance {
|
|
1055
|
+
readonly Dependencies: QueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1056
|
+
readonly RelationalDependencies: RelationalQueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1146
1057
|
Create(queryCompilationContext: QueryCompilationContext): QueryableMethodTranslatingExpressionVisitor;
|
|
1147
1058
|
}
|
|
1148
1059
|
|
|
@@ -1161,13 +1072,9 @@ export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$in
|
|
|
1161
1072
|
export type RelationalQueryableMethodTranslatingExpressionVisitorFactory = RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance & __RelationalQueryableMethodTranslatingExpressionVisitorFactory$views;
|
|
1162
1073
|
|
|
1163
1074
|
|
|
1164
|
-
export
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
export interface RelationalQueryCompilationContextFactory$instance extends RelationalQueryCompilationContextFactory$protected {
|
|
1075
|
+
export interface RelationalQueryCompilationContextFactory$instance {
|
|
1076
|
+
readonly Dependencies: QueryCompilationContextDependencies;
|
|
1077
|
+
readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
|
|
1171
1078
|
Create(async: boolean): QueryCompilationContext;
|
|
1172
1079
|
CreatePrecompiled(async: boolean): QueryCompilationContext;
|
|
1173
1080
|
}
|
|
@@ -1187,13 +1094,9 @@ export interface RelationalQueryCompilationContextFactory$instance extends Micro
|
|
|
1187
1094
|
export type RelationalQueryCompilationContextFactory = RelationalQueryCompilationContextFactory$instance & __RelationalQueryCompilationContextFactory$views;
|
|
1188
1095
|
|
|
1189
1096
|
|
|
1190
|
-
export
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
export interface RelationalQueryContextFactory$instance extends RelationalQueryContextFactory$protected {
|
|
1097
|
+
export interface RelationalQueryContextFactory$instance {
|
|
1098
|
+
readonly Dependencies: QueryContextDependencies;
|
|
1099
|
+
readonly RelationalDependencies: RelationalQueryContextDependencies;
|
|
1197
1100
|
Create(): QueryContext;
|
|
1198
1101
|
}
|
|
1199
1102
|
|
|
@@ -1212,12 +1115,8 @@ export interface RelationalQueryContextFactory$instance extends Microsoft_Entity
|
|
|
1212
1115
|
export type RelationalQueryContextFactory = RelationalQueryContextFactory$instance & __RelationalQueryContextFactory$views;
|
|
1213
1116
|
|
|
1214
1117
|
|
|
1215
|
-
export
|
|
1216
|
-
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
export interface RelationalQueryMetadataExtractingExpressionVisitor$instance extends RelationalQueryMetadataExtractingExpressionVisitor$protected, ExpressionVisitor {
|
|
1118
|
+
export interface RelationalQueryMetadataExtractingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1119
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1221
1120
|
}
|
|
1222
1121
|
|
|
1223
1122
|
|
|
@@ -1247,13 +1146,9 @@ export interface RelationalQueryStringFactory$instance extends Microsoft_EntityF
|
|
|
1247
1146
|
export type RelationalQueryStringFactory = RelationalQueryStringFactory$instance & __RelationalQueryStringFactory$views;
|
|
1248
1147
|
|
|
1249
1148
|
|
|
1250
|
-
export
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
export interface RelationalQueryTranslationPostprocessorFactory$instance extends RelationalQueryTranslationPostprocessorFactory$protected {
|
|
1149
|
+
export interface RelationalQueryTranslationPostprocessorFactory$instance {
|
|
1150
|
+
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
1151
|
+
readonly RelationalDependencies: RelationalQueryTranslationPostprocessorDependencies;
|
|
1257
1152
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
1258
1153
|
}
|
|
1259
1154
|
|
|
@@ -1272,13 +1167,9 @@ export interface RelationalQueryTranslationPostprocessorFactory$instance extends
|
|
|
1272
1167
|
export type RelationalQueryTranslationPostprocessorFactory = RelationalQueryTranslationPostprocessorFactory$instance & __RelationalQueryTranslationPostprocessorFactory$views;
|
|
1273
1168
|
|
|
1274
1169
|
|
|
1275
|
-
export
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
export interface RelationalQueryTranslationPreprocessorFactory$instance extends RelationalQueryTranslationPreprocessorFactory$protected {
|
|
1170
|
+
export interface RelationalQueryTranslationPreprocessorFactory$instance {
|
|
1171
|
+
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
1172
|
+
readonly RelationalDependencies: RelationalQueryTranslationPreprocessorDependencies;
|
|
1282
1173
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
1283
1174
|
}
|
|
1284
1175
|
|
|
@@ -1297,13 +1188,9 @@ export interface RelationalQueryTranslationPreprocessorFactory$instance extends
|
|
|
1297
1188
|
export type RelationalQueryTranslationPreprocessorFactory = RelationalQueryTranslationPreprocessorFactory$instance & __RelationalQueryTranslationPreprocessorFactory$views;
|
|
1298
1189
|
|
|
1299
1190
|
|
|
1300
|
-
export
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance extends RelationalShapedQueryCompilingExpressionVisitorFactory$protected {
|
|
1191
|
+
export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance {
|
|
1192
|
+
readonly Dependencies: ShapedQueryCompilingExpressionVisitorDependencies;
|
|
1193
|
+
readonly RelationalDependencies: RelationalShapedQueryCompilingExpressionVisitorDependencies;
|
|
1307
1194
|
Create(queryCompilationContext: QueryCompilationContext): ShapedQueryCompilingExpressionVisitor;
|
|
1308
1195
|
}
|
|
1309
1196
|
|
|
@@ -1322,15 +1209,11 @@ export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance
|
|
|
1322
1209
|
export type RelationalShapedQueryCompilingExpressionVisitorFactory = RelationalShapedQueryCompilingExpressionVisitorFactory$instance & __RelationalShapedQueryCompilingExpressionVisitorFactory$views;
|
|
1323
1210
|
|
|
1324
1211
|
|
|
1325
|
-
export
|
|
1326
|
-
protected ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
export interface RelationalStructuralTypeMaterializerSource$instance extends RelationalStructuralTypeMaterializerSource$protected, StructuralTypeMaterializerSource$instance {
|
|
1212
|
+
export interface RelationalStructuralTypeMaterializerSource$instance extends StructuralTypeMaterializerSource$instance {
|
|
1331
1213
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
1332
1214
|
GetMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1333
1215
|
GetMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1216
|
+
ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1334
1217
|
}
|
|
1335
1218
|
|
|
1336
1219
|
|
|
@@ -1346,12 +1229,8 @@ export interface __RelationalStructuralTypeMaterializerSource$views {
|
|
|
1346
1229
|
export type RelationalStructuralTypeMaterializerSource = RelationalStructuralTypeMaterializerSource$instance & __RelationalStructuralTypeMaterializerSource$views;
|
|
1347
1230
|
|
|
1348
1231
|
|
|
1349
|
-
export
|
|
1350
|
-
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
export interface RelationalValueConverterCompensatingExpressionVisitor$instance extends RelationalValueConverterCompensatingExpressionVisitor$protected, ExpressionVisitor {
|
|
1232
|
+
export interface RelationalValueConverterCompensatingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1233
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1355
1234
|
}
|
|
1356
1235
|
|
|
1357
1236
|
|
|
@@ -1363,7 +1242,8 @@ export const RelationalValueConverterCompensatingExpressionVisitor: {
|
|
|
1363
1242
|
export type RelationalValueConverterCompensatingExpressionVisitor = RelationalValueConverterCompensatingExpressionVisitor$instance;
|
|
1364
1243
|
|
|
1365
1244
|
export interface ResultContext$instance {
|
|
1366
|
-
Values: unknown[];
|
|
1245
|
+
get Values(): unknown[] | undefined;
|
|
1246
|
+
set Values(value: unknown[] | undefined);
|
|
1367
1247
|
}
|
|
1368
1248
|
|
|
1369
1249
|
|
|
@@ -1374,12 +1254,8 @@ export const ResultContext: {
|
|
|
1374
1254
|
|
|
1375
1255
|
export type ResultContext = ResultContext$instance;
|
|
1376
1256
|
|
|
1377
|
-
export
|
|
1378
|
-
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
export interface SelectExpressionProjectionApplyingExpressionVisitor$instance extends SelectExpressionProjectionApplyingExpressionVisitor$protected, ExpressionVisitor {
|
|
1257
|
+
export interface SelectExpressionProjectionApplyingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1258
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1383
1259
|
}
|
|
1384
1260
|
|
|
1385
1261
|
|
|
@@ -1397,7 +1273,7 @@ export interface SingleQueryCollectionContext$instance {
|
|
|
1397
1273
|
readonly ParentIdentifier: unknown[];
|
|
1398
1274
|
readonly ResultContext: ResultContext;
|
|
1399
1275
|
get SelfIdentifier(): unknown[] | undefined;
|
|
1400
|
-
set SelfIdentifier(value: unknown[]);
|
|
1276
|
+
set SelfIdentifier(value: unknown[] | undefined);
|
|
1401
1277
|
UpdateSelfIdentifier(selfIdentifier: unknown[]): void;
|
|
1402
1278
|
}
|
|
1403
1279
|
|
|
@@ -1512,12 +1388,8 @@ export const SplitQueryResultCoordinator: {
|
|
|
1512
1388
|
|
|
1513
1389
|
export type SplitQueryResultCoordinator = SplitQueryResultCoordinator$instance;
|
|
1514
1390
|
|
|
1515
|
-
export
|
|
1516
|
-
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
export interface SqlExpressionSimplifyingExpressionVisitor$instance extends SqlExpressionSimplifyingExpressionVisitor$protected, ExpressionVisitor {
|
|
1391
|
+
export interface SqlExpressionSimplifyingExpressionVisitor$instance extends ExpressionVisitor {
|
|
1392
|
+
VisitExtension(extensionExpression: Expression): Expression;
|
|
1521
1393
|
}
|
|
1522
1394
|
|
|
1523
1395
|
|
|
@@ -1528,18 +1400,14 @@ export const SqlExpressionSimplifyingExpressionVisitor: {
|
|
|
1528
1400
|
|
|
1529
1401
|
export type SqlExpressionSimplifyingExpressionVisitor = SqlExpressionSimplifyingExpressionVisitor$instance;
|
|
1530
1402
|
|
|
1531
|
-
export
|
|
1532
|
-
protected Print(expressionPrinter: ExpressionPrinter): void;
|
|
1533
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
export interface SqlQueryRootExpression$instance extends SqlQueryRootExpression$protected, QueryRootExpression {
|
|
1403
|
+
export interface SqlQueryRootExpression$instance extends QueryRootExpression {
|
|
1538
1404
|
readonly Argument: Expression;
|
|
1539
1405
|
readonly Sql: string;
|
|
1540
1406
|
DetachQueryProvider(): Expression;
|
|
1541
1407
|
Equals(obj: unknown): boolean;
|
|
1542
1408
|
GetHashCode(): int;
|
|
1409
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1410
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1543
1411
|
}
|
|
1544
1412
|
|
|
1545
1413
|
|
|
@@ -1575,20 +1443,16 @@ export interface StringMethodTranslator$instance extends Microsoft_EntityFramewo
|
|
|
1575
1443
|
export type StringMethodTranslator = StringMethodTranslator$instance & __StringMethodTranslator$views;
|
|
1576
1444
|
|
|
1577
1445
|
|
|
1578
|
-
export
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
protected ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
export interface StructuralTypeMaterializerSource$instance extends StructuralTypeMaterializerSource$protected {
|
|
1446
|
+
export interface StructuralTypeMaterializerSource$instance {
|
|
1447
|
+
readonly Dependencies: StructuralTypeMaterializerSourceDependencies;
|
|
1448
|
+
AddInitializeExpression(property: IPropertyBase, bindingInfo: ParameterBindingInfo, instanceVariable: Expression, getValueBufferExpression: MethodCallExpression, blockExpressions: List<Expression>, nullable: boolean): void;
|
|
1586
1449
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
1587
1450
|
GetEmptyMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1588
1451
|
GetEmptyMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1589
1452
|
GetEmptyMaterializer(entityType: ITypeBase, binding: InstantiationBinding, serviceProperties: List<IServiceProperty>): Func<MaterializationContext, unknown>;
|
|
1590
1453
|
GetMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1591
1454
|
GetMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
1455
|
+
ReadComplexTypeDirectly(complexType: IComplexType): boolean;
|
|
1592
1456
|
}
|
|
1593
1457
|
|
|
1594
1458
|
|
|
@@ -1623,13 +1487,9 @@ export const StructuralTypeMaterializerSourceDependencies: {
|
|
|
1623
1487
|
|
|
1624
1488
|
export type StructuralTypeMaterializerSourceDependencies = StructuralTypeMaterializerSourceDependencies$instance;
|
|
1625
1489
|
|
|
1626
|
-
export
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
export interface SubqueryMemberPushdownExpressionVisitor$instance extends SubqueryMemberPushdownExpressionVisitor$protected, ExpressionVisitor {
|
|
1490
|
+
export interface SubqueryMemberPushdownExpressionVisitor$instance extends ExpressionVisitor {
|
|
1491
|
+
VisitMember(memberExpression: MemberExpression): Expression;
|
|
1492
|
+
VisitMethodCall(methodCallExpression: MethodCallExpression): Expression;
|
|
1633
1493
|
}
|
|
1634
1494
|
|
|
1635
1495
|
|
|
@@ -1640,18 +1500,14 @@ export const SubqueryMemberPushdownExpressionVisitor: {
|
|
|
1640
1500
|
|
|
1641
1501
|
export type SubqueryMemberPushdownExpressionVisitor = SubqueryMemberPushdownExpressionVisitor$instance;
|
|
1642
1502
|
|
|
1643
|
-
export
|
|
1644
|
-
protected Print(expressionPrinter: ExpressionPrinter): void;
|
|
1645
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
export interface TableValuedFunctionQueryRootExpression$instance extends TableValuedFunctionQueryRootExpression$protected, EntityQueryRootExpression {
|
|
1503
|
+
export interface TableValuedFunctionQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
1650
1504
|
readonly Arguments: IReadOnlyCollection<Expression>;
|
|
1651
1505
|
readonly Function: IStoreFunction;
|
|
1652
1506
|
Equals(obj: unknown): boolean;
|
|
1653
1507
|
GetHashCode(): int;
|
|
1508
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1654
1509
|
UpdateEntityType(entityType: IEntityType): EntityQueryRootExpression;
|
|
1510
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1655
1511
|
}
|
|
1656
1512
|
|
|
1657
1513
|
|
|
@@ -1667,16 +1523,8 @@ export interface __TableValuedFunctionQueryRootExpression$views {
|
|
|
1667
1523
|
export type TableValuedFunctionQueryRootExpression = TableValuedFunctionQueryRootExpression$instance & __TableValuedFunctionQueryRootExpression$views;
|
|
1668
1524
|
|
|
1669
1525
|
|
|
1670
|
-
export
|
|
1671
|
-
|
|
1672
|
-
protected VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1673
|
-
protected WithAnnotations2(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TpcTablesExpression;
|
|
1674
|
-
protected abstract WithAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, IAnnotation>): TableExpressionBase;
|
|
1675
|
-
}
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
export interface TpcTablesExpression$instance extends TpcTablesExpression$protected, TableExpressionBase {
|
|
1679
|
-
readonly Alias: string;
|
|
1526
|
+
export interface TpcTablesExpression$instance extends TableExpressionBase {
|
|
1527
|
+
readonly Alias: string | string | undefined;
|
|
1680
1528
|
readonly DiscriminatorColumn: ColumnExpression;
|
|
1681
1529
|
DiscriminatorValues: List<System_Internal.String>;
|
|
1682
1530
|
readonly EntityType: IEntityType;
|
|
@@ -1684,8 +1532,10 @@ export interface TpcTablesExpression$instance extends TpcTablesExpression$protec
|
|
|
1684
1532
|
Clone(alias: string, cloningExpressionVisitor: ExpressionVisitor): TableExpressionBase;
|
|
1685
1533
|
Equals(obj: unknown): boolean;
|
|
1686
1534
|
GetHashCode(): int;
|
|
1535
|
+
Print(expressionPrinter: ExpressionPrinter): void;
|
|
1687
1536
|
Prune(discriminatorValues: IReadOnlyList<System_Internal.String>): TpcTablesExpression;
|
|
1688
1537
|
Quote(): Expression;
|
|
1538
|
+
VisitChildren(visitor: ExpressionVisitor): Expression;
|
|
1689
1539
|
}
|
|
1690
1540
|
|
|
1691
1541
|
|