@tsonic/efcore 10.0.3 → 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 +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- 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
|
}
|
|
@@ -102,6 +110,12 @@ export const QueryableJsonProjectionInfo: {
|
|
|
102
110
|
export type QueryableJsonProjectionInfo = QueryableJsonProjectionInfo$instance;
|
|
103
111
|
|
|
104
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;
|
|
118
|
+
|
|
105
119
|
readonly Depth: int;
|
|
106
120
|
readonly FieldCount: int;
|
|
107
121
|
readonly HasRows: boolean;
|
|
@@ -155,6 +169,8 @@ export const BufferedDataReader: {
|
|
|
155
169
|
export type BufferedDataReader = BufferedDataReader$instance;
|
|
156
170
|
|
|
157
171
|
export interface ByteArraySequenceEqualTranslator$instance {
|
|
172
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
173
|
+
|
|
158
174
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
159
175
|
}
|
|
160
176
|
|
|
@@ -186,6 +202,8 @@ export const CallForwardingExpressionVisitor: {
|
|
|
186
202
|
export type CallForwardingExpressionVisitor = CallForwardingExpressionVisitor$instance;
|
|
187
203
|
|
|
188
204
|
export interface CollateTranslator$instance {
|
|
205
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
206
|
+
|
|
189
207
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
190
208
|
}
|
|
191
209
|
|
|
@@ -205,6 +223,8 @@ export type CollateTranslator = CollateTranslator$instance & __CollateTranslator
|
|
|
205
223
|
|
|
206
224
|
|
|
207
225
|
export interface ComparisonTranslator$instance {
|
|
226
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
227
|
+
|
|
208
228
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
209
229
|
}
|
|
210
230
|
|
|
@@ -336,6 +356,8 @@ export const CompiledQueryBase_2: (abstract new<TContext extends DbContext, TRes
|
|
|
336
356
|
export type CompiledQueryBase_2<TContext extends DbContext, TResult> = CompiledQueryBase_2$instance<TContext, TResult>;
|
|
337
357
|
|
|
338
358
|
export interface CompiledQueryCache$instance {
|
|
359
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_ICompiledQueryCache: never;
|
|
360
|
+
|
|
339
361
|
GetOrAddQuery<TResult>(cacheKey: unknown, compiler: Func<Func<QueryContext, TResult>>): Func<QueryContext, TResult>;
|
|
340
362
|
}
|
|
341
363
|
|
|
@@ -355,6 +377,8 @@ export type CompiledQueryCache = CompiledQueryCache$instance & __CompiledQueryCa
|
|
|
355
377
|
|
|
356
378
|
|
|
357
379
|
export interface ContainsTranslator$instance {
|
|
380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
381
|
+
|
|
358
382
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
359
383
|
}
|
|
360
384
|
|
|
@@ -374,6 +398,15 @@ export type ContainsTranslator = ContainsTranslator$instance & __ContainsTransla
|
|
|
374
398
|
|
|
375
399
|
|
|
376
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
|
+
|
|
377
410
|
readonly DebugView: QueryDebugView;
|
|
378
411
|
readonly ElementType: Type;
|
|
379
412
|
readonly Expression: Expression;
|
|
@@ -392,6 +425,9 @@ export const EntityQueryable_1: {
|
|
|
392
425
|
export type EntityQueryable_1<TResult> = EntityQueryable_1$instance<TResult>;
|
|
393
426
|
|
|
394
427
|
export interface EntityQueryProvider$instance {
|
|
428
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAsyncQueryProvider: never;
|
|
429
|
+
readonly __tsonic_iface_System_Linq_IQueryProvider: never;
|
|
430
|
+
|
|
395
431
|
CreateQuery<TElement>(expression: Expression): IQueryable<TElement>;
|
|
396
432
|
CreateQuery(expression: Expression): IQueryable;
|
|
397
433
|
Execute<TResult>(expression: Expression): TResult;
|
|
@@ -415,6 +451,8 @@ export type EntityQueryProvider = EntityQueryProvider$instance & __EntityQueryPr
|
|
|
415
451
|
|
|
416
452
|
|
|
417
453
|
export interface EnumMethodTranslator$instance {
|
|
454
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
455
|
+
|
|
418
456
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
419
457
|
}
|
|
420
458
|
|
|
@@ -434,6 +472,8 @@ export type EnumMethodTranslator = EnumMethodTranslator$instance & __EnumMethodT
|
|
|
434
472
|
|
|
435
473
|
|
|
436
474
|
export interface EqualsTranslator$instance {
|
|
475
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
476
|
+
|
|
437
477
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
438
478
|
}
|
|
439
479
|
|
|
@@ -502,6 +542,8 @@ export const ExpressionTreeFuncletizer: {
|
|
|
502
542
|
export type ExpressionTreeFuncletizer = ExpressionTreeFuncletizer$instance;
|
|
503
543
|
|
|
504
544
|
export interface ExpressionTreeFuncletizer_PathNode$instance {
|
|
545
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
546
|
+
|
|
505
547
|
get Children(): IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined;
|
|
506
548
|
set Children(value: IReadOnlyList<ExpressionTreeFuncletizer_PathNode> | undefined);
|
|
507
549
|
ExpressionType: Type;
|
|
@@ -525,6 +567,12 @@ export const ExpressionTreeFuncletizer_PathNode: {
|
|
|
525
567
|
export type ExpressionTreeFuncletizer_PathNode = ExpressionTreeFuncletizer_PathNode$instance;
|
|
526
568
|
|
|
527
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
|
+
|
|
528
576
|
CreateDbCommand(): DbCommand;
|
|
529
577
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
530
578
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -543,10 +591,14 @@ export interface __FromSqlQueryingEnumerable_1$views<T> {
|
|
|
543
591
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
544
592
|
}
|
|
545
593
|
|
|
594
|
+
export interface FromSqlQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
595
|
+
|
|
546
596
|
export type FromSqlQueryingEnumerable_1<T> = FromSqlQueryingEnumerable_1$instance<T> & __FromSqlQueryingEnumerable_1$views<T>;
|
|
547
597
|
|
|
548
598
|
|
|
549
599
|
export interface FromSqlQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
600
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
601
|
+
|
|
550
602
|
readonly Argument: Expression;
|
|
551
603
|
readonly Sql: string;
|
|
552
604
|
DetachQueryProvider(): Expression;
|
|
@@ -572,6 +624,8 @@ export type FromSqlQueryRootExpression = FromSqlQueryRootExpression$instance & _
|
|
|
572
624
|
|
|
573
625
|
|
|
574
626
|
export interface GetValueOrDefaultTranslator$instance {
|
|
627
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
628
|
+
|
|
575
629
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
576
630
|
}
|
|
577
631
|
|
|
@@ -591,6 +645,12 @@ export type GetValueOrDefaultTranslator = GetValueOrDefaultTranslator$instance &
|
|
|
591
645
|
|
|
592
646
|
|
|
593
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
|
+
|
|
594
654
|
CreateDbCommand(): DbCommand;
|
|
595
655
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<IGrouping<TKey, TElement>>;
|
|
596
656
|
GetEnumerator(): IEnumerator__System_Collections_Generic<IGrouping<TKey, TElement>>;
|
|
@@ -608,10 +668,18 @@ export interface __GroupBySingleQueryingEnumerable_2$views<TKey, TElement> {
|
|
|
608
668
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
609
669
|
}
|
|
610
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
|
+
|
|
611
673
|
export type GroupBySingleQueryingEnumerable_2<TKey, TElement> = GroupBySingleQueryingEnumerable_2$instance<TKey, TElement> & __GroupBySingleQueryingEnumerable_2$views<TKey, TElement>;
|
|
612
674
|
|
|
613
675
|
|
|
614
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
|
+
|
|
615
683
|
CreateDbCommand(): DbCommand;
|
|
616
684
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<IGrouping<TKey, TElement>>;
|
|
617
685
|
GetEnumerator(): IEnumerator__System_Collections_Generic<IGrouping<TKey, TElement>>;
|
|
@@ -629,6 +697,8 @@ export interface __GroupBySplitQueryingEnumerable_2$views<TKey, TElement> {
|
|
|
629
697
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
630
698
|
}
|
|
631
699
|
|
|
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>> {}
|
|
701
|
+
|
|
632
702
|
export type GroupBySplitQueryingEnumerable_2<TKey, TElement> = GroupBySplitQueryingEnumerable_2$instance<TKey, TElement> & __GroupBySplitQueryingEnumerable_2$views<TKey, TElement>;
|
|
633
703
|
|
|
634
704
|
|
|
@@ -645,6 +715,8 @@ export const InvocationExpressionRemovingExpressionVisitor: {
|
|
|
645
715
|
export type InvocationExpressionRemovingExpressionVisitor = InvocationExpressionRemovingExpressionVisitor$instance;
|
|
646
716
|
|
|
647
717
|
export interface LikeTranslator$instance {
|
|
718
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
719
|
+
|
|
648
720
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
649
721
|
}
|
|
650
722
|
|
|
@@ -681,6 +753,9 @@ export const NavigationExpandingExpressionVisitor: {
|
|
|
681
753
|
export type NavigationExpandingExpressionVisitor = NavigationExpandingExpressionVisitor$instance;
|
|
682
754
|
|
|
683
755
|
export interface NullAsyncQueryProvider$instance {
|
|
756
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAsyncQueryProvider: never;
|
|
757
|
+
readonly __tsonic_iface_System_Linq_IQueryProvider: never;
|
|
758
|
+
|
|
684
759
|
}
|
|
685
760
|
|
|
686
761
|
|
|
@@ -712,6 +787,12 @@ export const NullCheckRemovingExpressionVisitor: {
|
|
|
712
787
|
export type NullCheckRemovingExpressionVisitor = NullCheckRemovingExpressionVisitor$instance;
|
|
713
788
|
|
|
714
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
|
+
|
|
715
796
|
readonly ElementType: Type;
|
|
716
797
|
readonly Expression: Expression;
|
|
717
798
|
readonly Provider: IQueryProvider;
|
|
@@ -728,6 +809,13 @@ export const PrecompiledQueryableAsyncEnumerableAdapter_1: {
|
|
|
728
809
|
export type PrecompiledQueryableAsyncEnumerableAdapter_1<T> = PrecompiledQueryableAsyncEnumerableAdapter_1$instance<T>;
|
|
729
810
|
|
|
730
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
|
+
|
|
731
819
|
DbContext: DbContext;
|
|
732
820
|
readonly ElementType: Type;
|
|
733
821
|
readonly Expression: Expression;
|
|
@@ -747,6 +835,14 @@ export const PrecompiledQueryContext_1: {
|
|
|
747
835
|
export type PrecompiledQueryContext_1<T> = PrecompiledQueryContext_1$instance<T>;
|
|
748
836
|
|
|
749
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
|
+
|
|
750
846
|
}
|
|
751
847
|
|
|
752
848
|
|
|
@@ -758,6 +854,8 @@ export const PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2: {
|
|
|
758
854
|
export type PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2<T, TEntity, TProperty> = PrecompiledQueryContext_1_IncludablePrecompiledQueryContext_2$instance<T, TEntity, TProperty>;
|
|
759
855
|
|
|
760
856
|
export interface QueryableAggregateMethodTranslator$instance {
|
|
857
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IAggregateMethodCallTranslator: never;
|
|
858
|
+
|
|
761
859
|
Translate(method: MethodInfo, source: EnumerableExpression, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
762
860
|
}
|
|
763
861
|
|
|
@@ -791,6 +889,8 @@ export const QueryableMethodNormalizingExpressionVisitor: {
|
|
|
791
889
|
export type QueryableMethodNormalizingExpressionVisitor = QueryableMethodNormalizingExpressionVisitor$instance;
|
|
792
890
|
|
|
793
891
|
export interface QueryCompilationContextFactory$instance {
|
|
892
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryCompilationContextFactory: never;
|
|
893
|
+
|
|
794
894
|
readonly Dependencies: QueryCompilationContextDependencies;
|
|
795
895
|
Create(async: boolean): QueryCompilationContext;
|
|
796
896
|
CreatePrecompiled(async: boolean): QueryCompilationContext;
|
|
@@ -812,6 +912,8 @@ export type QueryCompilationContextFactory = QueryCompilationContextFactory$inst
|
|
|
812
912
|
|
|
813
913
|
|
|
814
914
|
export interface QueryCompiler$instance {
|
|
915
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_Internal_IQueryCompiler: never;
|
|
916
|
+
|
|
815
917
|
CompileQueryCore<TResult>(database: IDatabase, query: Expression, model: IModel, async: boolean): Func<QueryContext, TResult>;
|
|
816
918
|
CreateCompiledAsyncQuery<TResult>(query: Expression): Func<QueryContext, TResult>;
|
|
817
919
|
CreateCompiledQuery<TResult>(query: Expression): Func<QueryContext, TResult>;
|
|
@@ -860,6 +962,8 @@ export const QueryExpressionReplacingExpressionVisitor: {
|
|
|
860
962
|
export type QueryExpressionReplacingExpressionVisitor = QueryExpressionReplacingExpressionVisitor$instance;
|
|
861
963
|
|
|
862
964
|
export interface QueryFiltersCacheKey$instance {
|
|
965
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
966
|
+
|
|
863
967
|
Equals(other: QueryFiltersCacheKey): boolean;
|
|
864
968
|
Equals(obj: unknown): boolean;
|
|
865
969
|
GetHashCode(): int;
|
|
@@ -895,6 +999,8 @@ export const QueryOptimizingExpressionVisitor: {
|
|
|
895
999
|
export type QueryOptimizingExpressionVisitor = QueryOptimizingExpressionVisitor$instance;
|
|
896
1000
|
|
|
897
1001
|
export interface QuerySqlGeneratorFactory$instance {
|
|
1002
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQuerySqlGeneratorFactory: never;
|
|
1003
|
+
|
|
898
1004
|
readonly Dependencies: QuerySqlGeneratorDependencies;
|
|
899
1005
|
Create(): QuerySqlGenerator;
|
|
900
1006
|
}
|
|
@@ -915,6 +1021,8 @@ export type QuerySqlGeneratorFactory = QuerySqlGeneratorFactory$instance & __Que
|
|
|
915
1021
|
|
|
916
1022
|
|
|
917
1023
|
export interface QueryTranslationPostprocessorFactory$instance {
|
|
1024
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPostprocessorFactory: never;
|
|
1025
|
+
|
|
918
1026
|
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
919
1027
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
920
1028
|
}
|
|
@@ -935,6 +1043,8 @@ export type QueryTranslationPostprocessorFactory = QueryTranslationPostprocessor
|
|
|
935
1043
|
|
|
936
1044
|
|
|
937
1045
|
export interface QueryTranslationPreprocessorFactory$instance {
|
|
1046
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPreprocessorFactory: never;
|
|
1047
|
+
|
|
938
1048
|
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
939
1049
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
940
1050
|
}
|
|
@@ -955,6 +1065,8 @@ export type QueryTranslationPreprocessorFactory = QueryTranslationPreprocessorFa
|
|
|
955
1065
|
|
|
956
1066
|
|
|
957
1067
|
export interface RandomTranslator$instance {
|
|
1068
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
1069
|
+
|
|
958
1070
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
959
1071
|
}
|
|
960
1072
|
|
|
@@ -974,6 +1086,8 @@ export type RandomTranslator = RandomTranslator$instance & __RandomTranslator$vi
|
|
|
974
1086
|
|
|
975
1087
|
|
|
976
1088
|
export interface RelationalCommandCache$instance {
|
|
1089
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1090
|
+
|
|
977
1091
|
GetRelationalCommandTemplate(parameters: Dictionary<System_Internal.String, unknown>): IRelationalCommandTemplate;
|
|
978
1092
|
}
|
|
979
1093
|
|
|
@@ -993,6 +1107,8 @@ export type RelationalCommandCache = RelationalCommandCache$instance & __Relatio
|
|
|
993
1107
|
|
|
994
1108
|
|
|
995
1109
|
export interface RelationalParameterBasedSqlProcessorFactory$instance {
|
|
1110
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalParameterBasedSqlProcessorFactory: never;
|
|
1111
|
+
|
|
996
1112
|
readonly Dependencies: RelationalParameterBasedSqlProcessorDependencies;
|
|
997
1113
|
Create(parameters: RelationalParameterBasedSqlProcessorParameters): RelationalParameterBasedSqlProcessor;
|
|
998
1114
|
}
|
|
@@ -1052,6 +1168,8 @@ export const RelationalProjectionBindingExpressionVisitor: {
|
|
|
1052
1168
|
export type RelationalProjectionBindingExpressionVisitor = RelationalProjectionBindingExpressionVisitor$instance;
|
|
1053
1169
|
|
|
1054
1170
|
export interface RelationalQueryableMethodTranslatingExpressionVisitorFactory$instance {
|
|
1171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryableMethodTranslatingExpressionVisitorFactory: never;
|
|
1172
|
+
|
|
1055
1173
|
readonly Dependencies: QueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1056
1174
|
readonly RelationalDependencies: RelationalQueryableMethodTranslatingExpressionVisitorDependencies;
|
|
1057
1175
|
Create(queryCompilationContext: QueryCompilationContext): QueryableMethodTranslatingExpressionVisitor;
|
|
@@ -1073,6 +1191,8 @@ export type RelationalQueryableMethodTranslatingExpressionVisitorFactory = Relat
|
|
|
1073
1191
|
|
|
1074
1192
|
|
|
1075
1193
|
export interface RelationalQueryCompilationContextFactory$instance {
|
|
1194
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryCompilationContextFactory: never;
|
|
1195
|
+
|
|
1076
1196
|
readonly Dependencies: QueryCompilationContextDependencies;
|
|
1077
1197
|
readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
|
|
1078
1198
|
Create(async: boolean): QueryCompilationContext;
|
|
@@ -1095,6 +1215,8 @@ export type RelationalQueryCompilationContextFactory = RelationalQueryCompilatio
|
|
|
1095
1215
|
|
|
1096
1216
|
|
|
1097
1217
|
export interface RelationalQueryContextFactory$instance {
|
|
1218
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryContextFactory: never;
|
|
1219
|
+
|
|
1098
1220
|
readonly Dependencies: QueryContextDependencies;
|
|
1099
1221
|
readonly RelationalDependencies: RelationalQueryContextDependencies;
|
|
1100
1222
|
Create(): QueryContext;
|
|
@@ -1128,6 +1250,8 @@ export const RelationalQueryMetadataExtractingExpressionVisitor: {
|
|
|
1128
1250
|
export type RelationalQueryMetadataExtractingExpressionVisitor = RelationalQueryMetadataExtractingExpressionVisitor$instance;
|
|
1129
1251
|
|
|
1130
1252
|
export interface RelationalQueryStringFactory$instance {
|
|
1253
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IRelationalQueryStringFactory: never;
|
|
1254
|
+
|
|
1131
1255
|
Create(command: DbCommand): string;
|
|
1132
1256
|
}
|
|
1133
1257
|
|
|
@@ -1147,6 +1271,8 @@ export type RelationalQueryStringFactory = RelationalQueryStringFactory$instance
|
|
|
1147
1271
|
|
|
1148
1272
|
|
|
1149
1273
|
export interface RelationalQueryTranslationPostprocessorFactory$instance {
|
|
1274
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPostprocessorFactory: never;
|
|
1275
|
+
|
|
1150
1276
|
readonly Dependencies: QueryTranslationPostprocessorDependencies;
|
|
1151
1277
|
readonly RelationalDependencies: RelationalQueryTranslationPostprocessorDependencies;
|
|
1152
1278
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPostprocessor;
|
|
@@ -1168,6 +1294,8 @@ export type RelationalQueryTranslationPostprocessorFactory = RelationalQueryTran
|
|
|
1168
1294
|
|
|
1169
1295
|
|
|
1170
1296
|
export interface RelationalQueryTranslationPreprocessorFactory$instance {
|
|
1297
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IQueryTranslationPreprocessorFactory: never;
|
|
1298
|
+
|
|
1171
1299
|
readonly Dependencies: QueryTranslationPreprocessorDependencies;
|
|
1172
1300
|
readonly RelationalDependencies: RelationalQueryTranslationPreprocessorDependencies;
|
|
1173
1301
|
Create(queryCompilationContext: QueryCompilationContext): QueryTranslationPreprocessor;
|
|
@@ -1189,6 +1317,8 @@ export type RelationalQueryTranslationPreprocessorFactory = RelationalQueryTrans
|
|
|
1189
1317
|
|
|
1190
1318
|
|
|
1191
1319
|
export interface RelationalShapedQueryCompilingExpressionVisitorFactory$instance {
|
|
1320
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IShapedQueryCompilingExpressionVisitorFactory: never;
|
|
1321
|
+
|
|
1192
1322
|
readonly Dependencies: ShapedQueryCompilingExpressionVisitorDependencies;
|
|
1193
1323
|
readonly RelationalDependencies: RelationalShapedQueryCompilingExpressionVisitorDependencies;
|
|
1194
1324
|
Create(queryCompilationContext: QueryCompilationContext): ShapedQueryCompilingExpressionVisitor;
|
|
@@ -1210,6 +1340,8 @@ export type RelationalShapedQueryCompilingExpressionVisitorFactory = RelationalS
|
|
|
1210
1340
|
|
|
1211
1341
|
|
|
1212
1342
|
export interface RelationalStructuralTypeMaterializerSource$instance extends StructuralTypeMaterializerSource$instance {
|
|
1343
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IStructuralTypeMaterializerSource: never;
|
|
1344
|
+
|
|
1213
1345
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
1214
1346
|
GetMaterializer(entityType: IEntityType): Func<MaterializationContext, unknown>;
|
|
1215
1347
|
GetMaterializer(complexType: IComplexType): Func<MaterializationContext, unknown>;
|
|
@@ -1286,6 +1418,12 @@ export const SingleQueryCollectionContext: {
|
|
|
1286
1418
|
export type SingleQueryCollectionContext = SingleQueryCollectionContext$instance;
|
|
1287
1419
|
|
|
1288
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
|
+
|
|
1289
1427
|
CreateDbCommand(): DbCommand;
|
|
1290
1428
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
1291
1429
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -1303,6 +1441,8 @@ export interface __SingleQueryingEnumerable_1$views<T> {
|
|
|
1303
1441
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
1304
1442
|
}
|
|
1305
1443
|
|
|
1444
|
+
export interface SingleQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
1445
|
+
|
|
1306
1446
|
export type SingleQueryingEnumerable_1<T> = SingleQueryingEnumerable_1$instance<T> & __SingleQueryingEnumerable_1$views<T>;
|
|
1307
1447
|
|
|
1308
1448
|
|
|
@@ -1351,6 +1491,12 @@ export const SplitQueryDataReaderContext: {
|
|
|
1351
1491
|
export type SplitQueryDataReaderContext = SplitQueryDataReaderContext$instance;
|
|
1352
1492
|
|
|
1353
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
|
+
|
|
1354
1500
|
CreateDbCommand(): DbCommand;
|
|
1355
1501
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
1356
1502
|
GetEnumerator(): IEnumerator__System_Collections_Generic<T>;
|
|
@@ -1368,6 +1514,8 @@ export interface __SplitQueryingEnumerable_1$views<T> {
|
|
|
1368
1514
|
As_IRelationalQueryingEnumerable(): IRelationalQueryingEnumerable$instance;
|
|
1369
1515
|
}
|
|
1370
1516
|
|
|
1517
|
+
export interface SplitQueryingEnumerable_1$instance<T> extends System_Collections_Generic_Internal.IAsyncEnumerable<T>, System_Collections_Generic_Internal.IEnumerable<T> {}
|
|
1518
|
+
|
|
1371
1519
|
export type SplitQueryingEnumerable_1<T> = SplitQueryingEnumerable_1$instance<T> & __SplitQueryingEnumerable_1$views<T>;
|
|
1372
1520
|
|
|
1373
1521
|
|
|
@@ -1401,6 +1549,8 @@ export const SqlExpressionSimplifyingExpressionVisitor: {
|
|
|
1401
1549
|
export type SqlExpressionSimplifyingExpressionVisitor = SqlExpressionSimplifyingExpressionVisitor$instance;
|
|
1402
1550
|
|
|
1403
1551
|
export interface SqlQueryRootExpression$instance extends QueryRootExpression {
|
|
1552
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1553
|
+
|
|
1404
1554
|
readonly Argument: Expression;
|
|
1405
1555
|
readonly Sql: string;
|
|
1406
1556
|
DetachQueryProvider(): Expression;
|
|
@@ -1425,6 +1575,8 @@ export type SqlQueryRootExpression = SqlQueryRootExpression$instance & __SqlQuer
|
|
|
1425
1575
|
|
|
1426
1576
|
|
|
1427
1577
|
export interface StringMethodTranslator$instance {
|
|
1578
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IMethodCallTranslator: never;
|
|
1579
|
+
|
|
1428
1580
|
Translate(instance: SqlExpression, method: MethodInfo, arguments: IReadOnlyList<SqlExpression>, logger: IDiagnosticsLogger_1<DbLoggerCategory_Query>): SqlExpression | undefined;
|
|
1429
1581
|
}
|
|
1430
1582
|
|
|
@@ -1444,6 +1596,8 @@ export type StringMethodTranslator = StringMethodTranslator$instance & __StringM
|
|
|
1444
1596
|
|
|
1445
1597
|
|
|
1446
1598
|
export interface StructuralTypeMaterializerSource$instance {
|
|
1599
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IStructuralTypeMaterializerSource: never;
|
|
1600
|
+
|
|
1447
1601
|
readonly Dependencies: StructuralTypeMaterializerSourceDependencies;
|
|
1448
1602
|
AddInitializeExpression(property: IPropertyBase, bindingInfo: ParameterBindingInfo, instanceVariable: Expression, getValueBufferExpression: MethodCallExpression, blockExpressions: List<Expression>, nullable: boolean): void;
|
|
1449
1603
|
CreateMaterializeExpression(parameters: StructuralTypeMaterializerSourceParameters, materializationContextExpression: Expression): Expression;
|
|
@@ -1471,6 +1625,8 @@ export type StructuralTypeMaterializerSource = StructuralTypeMaterializerSource$
|
|
|
1471
1625
|
|
|
1472
1626
|
|
|
1473
1627
|
export interface StructuralTypeMaterializerSourceDependencies$instance {
|
|
1628
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1629
|
+
|
|
1474
1630
|
SingletonInterceptors: IEnumerable__System_Collections_Generic<ISingletonInterceptor>;
|
|
1475
1631
|
_Clone_$(): StructuralTypeMaterializerSourceDependencies;
|
|
1476
1632
|
Equals(obj: unknown): boolean;
|
|
@@ -1501,6 +1657,8 @@ export const SubqueryMemberPushdownExpressionVisitor: {
|
|
|
1501
1657
|
export type SubqueryMemberPushdownExpressionVisitor = SubqueryMemberPushdownExpressionVisitor$instance;
|
|
1502
1658
|
|
|
1503
1659
|
export interface TableValuedFunctionQueryRootExpression$instance extends EntityQueryRootExpression {
|
|
1660
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Query_IPrintableExpression: never;
|
|
1661
|
+
|
|
1504
1662
|
readonly Arguments: IReadOnlyCollection<Expression>;
|
|
1505
1663
|
readonly Function: IStoreFunction;
|
|
1506
1664
|
Equals(obj: unknown): boolean;
|
|
@@ -1524,6 +1682,9 @@ export type TableValuedFunctionQueryRootExpression = TableValuedFunctionQueryRoo
|
|
|
1524
1682
|
|
|
1525
1683
|
|
|
1526
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;
|
|
1687
|
+
|
|
1527
1688
|
readonly Alias: string | string | undefined;
|
|
1528
1689
|
readonly DiscriminatorColumn: ColumnExpression;
|
|
1529
1690
|
DiscriminatorValues: List<System_Internal.String>;
|