@tsonic/efcore 0.1.1 → 0.1.2
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/bindings.json +8 -8
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +14 -14
- package/Microsoft.EntityFrameworkCore/internal/metadata.json +4 -4
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +12 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/metadata.json +2 -2
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +80 -80
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +21 -21
- package/Microsoft.EntityFrameworkCore.Internal/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +145 -145
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +128 -128
- package/Microsoft.EntityFrameworkCore.Metadata/internal/metadata.json +72 -72
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +24 -24
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +5 -5
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +30 -30
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +116 -116
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/metadata.json +15 -15
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Migrations/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +71 -71
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +75 -75
- package/Microsoft.EntityFrameworkCore.Query/internal/metadata.json +33 -33
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +25 -25
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/metadata.json +6 -6
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +51 -51
- package/Microsoft.EntityFrameworkCore.Storage/internal/metadata.json +23 -23
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/metadata.json +2 -2
- package/__internal/extensions/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -72,7 +72,7 @@ export interface IAsyncQueryProvider$instance extends IQueryProvider {
|
|
|
72
72
|
export type IAsyncQueryProvider = IAsyncQueryProvider$instance;
|
|
73
73
|
|
|
74
74
|
export interface ICompiledQueryCacheKeyGenerator$instance {
|
|
75
|
-
generateCacheKey(query: Expression,
|
|
75
|
+
generateCacheKey(query: Expression, async: boolean): unknown;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
|
|
@@ -105,7 +105,7 @@ export interface IIncludableQueryable_2$instance<TEntity, TProperty> extends IQu
|
|
|
105
105
|
export type IIncludableQueryable_2<TEntity, TProperty> = IIncludableQueryable_2$instance<TEntity, TProperty>;
|
|
106
106
|
|
|
107
107
|
export interface ILiftableConstantFactory$instance {
|
|
108
|
-
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string,
|
|
108
|
+
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string, type: Type): Expression;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
|
|
@@ -186,7 +186,7 @@ export interface IQueryableMethodTranslatingExpressionVisitorFactory$instance {
|
|
|
186
186
|
export type IQueryableMethodTranslatingExpressionVisitorFactory = IQueryableMethodTranslatingExpressionVisitorFactory$instance;
|
|
187
187
|
|
|
188
188
|
export interface IQueryCompilationContextFactory$instance {
|
|
189
|
-
create(
|
|
189
|
+
create(async: boolean): QueryCompilationContext;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
|
|
@@ -228,8 +228,8 @@ export interface IQueryTranslationPreprocessorFactory$instance {
|
|
|
228
228
|
export type IQueryTranslationPreprocessorFactory = IQueryTranslationPreprocessorFactory$instance;
|
|
229
229
|
|
|
230
230
|
export interface IRelationalLiftableConstantFactory$instance extends ILiftableConstantFactory {
|
|
231
|
-
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string,
|
|
232
|
-
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<RelationalMaterializerLiftableConstantContext, unknown>>, variableName: string,
|
|
231
|
+
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string, type: Type): Expression;
|
|
232
|
+
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<RelationalMaterializerLiftableConstantContext, unknown>>, variableName: string, type: Type): LiftableConstantExpression;
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
|
|
@@ -283,25 +283,25 @@ export interface ISqlExpressionFactory$instance {
|
|
|
283
283
|
add(left: SqlExpression, right: SqlExpression, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
284
284
|
applyDefaultTypeMapping(sqlExpression: SqlExpression): SqlExpression | undefined;
|
|
285
285
|
applyTypeMapping(sqlExpression: SqlExpression, typeMapping: RelationalTypeMapping): SqlExpression | undefined;
|
|
286
|
-
|
|
287
|
-
|
|
286
|
+
case(operand: SqlExpression, whenClauses: IReadOnlyList<CaseWhenClause>, elseResult: SqlExpression, existingExpression?: SqlExpression): SqlExpression;
|
|
287
|
+
case(whenClauses: IReadOnlyList<CaseWhenClause>, elseResult: SqlExpression): SqlExpression;
|
|
288
288
|
constant(value: unknown, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
289
289
|
constant(value: unknown, sensitive: boolean, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
290
|
-
constant(value: unknown,
|
|
291
|
-
constant(value: unknown,
|
|
292
|
-
convert(operand: SqlExpression,
|
|
290
|
+
constant(value: unknown, type: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
291
|
+
constant(value: unknown, type: Type, sensitive: boolean, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
292
|
+
convert(operand: SqlExpression, type: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
293
293
|
equal(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
294
294
|
exists(subquery: SelectExpression): SqlExpression;
|
|
295
|
-
fragment(sql: string,
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
295
|
+
fragment(sql: string, type?: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
296
|
+
function(instance: SqlExpression, name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, instancePropagatesNullability: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
297
|
+
function(name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
298
|
+
function(schema: string, name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
299
|
+
in(item: SqlExpression, subquery: SelectExpression): SqlExpression;
|
|
300
|
+
in(item: SqlExpression, valuesParameter: SqlParameterExpression): SqlExpression;
|
|
301
|
+
in(item: SqlExpression, values: IReadOnlyList<SqlExpression>): SqlExpression;
|
|
302
302
|
like(match: SqlExpression, pattern: SqlExpression, escapeChar?: SqlExpression): SqlExpression;
|
|
303
303
|
makeBinary(operatorType: ExpressionType, left: SqlExpression, right: SqlExpression, typeMapping: RelationalTypeMapping, existingExpression?: SqlExpression): SqlExpression | undefined;
|
|
304
|
-
makeUnary(operatorType: ExpressionType, operand: SqlExpression,
|
|
304
|
+
makeUnary(operatorType: ExpressionType, operand: SqlExpression, type: Type, typeMapping?: RelationalTypeMapping, existingExpression?: SqlExpression): SqlExpression | undefined;
|
|
305
305
|
niladicFunction(instance: SqlExpression, name: string, nullable: boolean, instancePropagatesNullability: boolean, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
306
306
|
niladicFunction(name: string, nullable: boolean, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
307
307
|
niladicFunction(schema: string, name: string, nullable: boolean, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
@@ -391,7 +391,7 @@ export interface CollectionResultExpression$instance extends Expression {
|
|
|
391
391
|
readonly projectionBindingExpression: ProjectionBindingExpression;
|
|
392
392
|
readonly queryExpression: Expression;
|
|
393
393
|
readonly structuralProperty: IPropertyBase | undefined;
|
|
394
|
-
readonly
|
|
394
|
+
readonly type: Type;
|
|
395
395
|
print(expressionPrinter: ExpressionPrinter): void;
|
|
396
396
|
update(queryExpression: Expression): CollectionResultExpression;
|
|
397
397
|
}
|
|
@@ -412,7 +412,7 @@ export type CollectionResultExpression = CollectionResultExpression$instance & _
|
|
|
412
412
|
|
|
413
413
|
|
|
414
414
|
export interface CompiledQueryCacheKeyGenerator$instance {
|
|
415
|
-
generateCacheKey(query: Expression,
|
|
415
|
+
generateCacheKey(query: Expression, async: boolean): unknown;
|
|
416
416
|
}
|
|
417
417
|
|
|
418
418
|
|
|
@@ -482,7 +482,7 @@ export interface EnumerableExpression$instance extends Expression {
|
|
|
482
482
|
readonly orderings: IReadOnlyList<OrderingExpression>;
|
|
483
483
|
readonly predicate: SqlExpression | undefined;
|
|
484
484
|
readonly selector: Expression;
|
|
485
|
-
readonly
|
|
485
|
+
readonly type: Type;
|
|
486
486
|
appendOrdering(orderingExpression: OrderingExpression): EnumerableExpression;
|
|
487
487
|
applyOrdering(orderingExpression: OrderingExpression): EnumerableExpression;
|
|
488
488
|
applyPredicate(sqlExpression: SqlExpression): EnumerableExpression;
|
|
@@ -586,7 +586,7 @@ export interface GroupByShaperExpression$instance extends Expression {
|
|
|
586
586
|
readonly groupingEnumerable: ShapedQueryExpression;
|
|
587
587
|
readonly keySelector: Expression;
|
|
588
588
|
readonly nodeType: ExpressionType;
|
|
589
|
-
readonly
|
|
589
|
+
readonly type: Type;
|
|
590
590
|
print(expressionPrinter: ExpressionPrinter): void;
|
|
591
591
|
update(keySelector: Expression, groupingEnumerable: ShapedQueryExpression): GroupByShaperExpression;
|
|
592
592
|
}
|
|
@@ -612,7 +612,7 @@ export interface IncludeExpression$instance extends Expression {
|
|
|
612
612
|
readonly navigationExpression: Expression;
|
|
613
613
|
readonly nodeType: ExpressionType;
|
|
614
614
|
readonly setLoaded: boolean;
|
|
615
|
-
readonly
|
|
615
|
+
readonly type: Type;
|
|
616
616
|
update(entityExpression: Expression, navigationExpression: Expression): IncludeExpression;
|
|
617
617
|
}
|
|
618
618
|
|
|
@@ -663,7 +663,7 @@ export interface JsonQueryExpression$instance extends Expression {
|
|
|
663
663
|
readonly nodeType: ExpressionType;
|
|
664
664
|
readonly path: IReadOnlyList<PathSegment>;
|
|
665
665
|
readonly structuralType: ITypeBase;
|
|
666
|
-
readonly
|
|
666
|
+
readonly type: Type;
|
|
667
667
|
bindCollectionElement(collectionIndexExpression: SqlExpression): JsonQueryExpression;
|
|
668
668
|
bindProperty(property: IProperty): SqlExpression;
|
|
669
669
|
bindStructuralProperty(structuralProperty: IPropertyBase): JsonQueryExpression;
|
|
@@ -676,8 +676,8 @@ export interface JsonQueryExpression$instance extends Expression {
|
|
|
676
676
|
|
|
677
677
|
|
|
678
678
|
export const JsonQueryExpression: {
|
|
679
|
-
new(structuralType: ITypeBase, jsonColumn: ColumnExpression, keyPropertyMap: IReadOnlyDictionary<IProperty, ColumnExpression>,
|
|
680
|
-
new(structuralType: ITypeBase, jsonColumn: ColumnExpression, keyPropertyMap: IReadOnlyDictionary<IProperty, ColumnExpression>, path: IReadOnlyList<PathSegment>,
|
|
679
|
+
new(structuralType: ITypeBase, jsonColumn: ColumnExpression, keyPropertyMap: IReadOnlyDictionary<IProperty, ColumnExpression>, type: Type, collection: boolean): JsonQueryExpression;
|
|
680
|
+
new(structuralType: ITypeBase, jsonColumn: ColumnExpression, keyPropertyMap: IReadOnlyDictionary<IProperty, ColumnExpression>, path: IReadOnlyList<PathSegment>, type: Type, collection: boolean, nullable: boolean): JsonQueryExpression;
|
|
681
681
|
};
|
|
682
682
|
|
|
683
683
|
|
|
@@ -694,7 +694,7 @@ export interface LiftableConstantExpression$instance extends Expression {
|
|
|
694
694
|
readonly nodeType: ExpressionType;
|
|
695
695
|
readonly originalExpression: ConstantExpression;
|
|
696
696
|
readonly resolverExpression: LambdaExpression;
|
|
697
|
-
readonly
|
|
697
|
+
readonly type: Type;
|
|
698
698
|
readonly variableName: string;
|
|
699
699
|
print(expressionPrinter: ExpressionPrinter): void;
|
|
700
700
|
update(resolverExpression: LambdaExpression): LiftableConstantExpression;
|
|
@@ -702,7 +702,7 @@ export interface LiftableConstantExpression$instance extends Expression {
|
|
|
702
702
|
|
|
703
703
|
|
|
704
704
|
export const LiftableConstantExpression: {
|
|
705
|
-
new(originalValue: unknown, resolverExpression: LambdaExpression, variableName: string,
|
|
705
|
+
new(originalValue: unknown, resolverExpression: LambdaExpression, variableName: string, type: Type): LiftableConstantExpression;
|
|
706
706
|
};
|
|
707
707
|
|
|
708
708
|
|
|
@@ -733,7 +733,7 @@ export type LiftableConstantExpressionDependencies = LiftableConstantExpressionD
|
|
|
733
733
|
|
|
734
734
|
export interface LiftableConstantFactory$instance {
|
|
735
735
|
readonly dependencies: LiftableConstantExpressionDependencies;
|
|
736
|
-
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string,
|
|
736
|
+
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string, type: Type): Expression;
|
|
737
737
|
}
|
|
738
738
|
|
|
739
739
|
|
|
@@ -776,7 +776,7 @@ export interface MaterializeCollectionNavigationExpression$instance extends Expr
|
|
|
776
776
|
readonly navigation: INavigationBase;
|
|
777
777
|
readonly nodeType: ExpressionType;
|
|
778
778
|
readonly subquery: Expression;
|
|
779
|
-
readonly
|
|
779
|
+
readonly type: Type;
|
|
780
780
|
update(subquery: Expression): MaterializeCollectionNavigationExpression;
|
|
781
781
|
}
|
|
782
782
|
|
|
@@ -905,15 +905,15 @@ export interface ProjectionBindingExpression$instance extends Expression {
|
|
|
905
905
|
readonly nodeType: ExpressionType;
|
|
906
906
|
readonly projectionMember: ProjectionMember | undefined;
|
|
907
907
|
readonly queryExpression: Expression;
|
|
908
|
-
readonly
|
|
908
|
+
readonly type: Type;
|
|
909
909
|
equals(obj: unknown): boolean;
|
|
910
910
|
getHashCode(): int;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
|
|
914
914
|
export const ProjectionBindingExpression: {
|
|
915
|
-
new(queryExpression: Expression, projectionMember: ProjectionMember,
|
|
916
|
-
new(queryExpression: Expression, index: int,
|
|
915
|
+
new(queryExpression: Expression, projectionMember: ProjectionMember, type: Type): ProjectionBindingExpression;
|
|
916
|
+
new(queryExpression: Expression, index: int, type: Type): ProjectionBindingExpression;
|
|
917
917
|
};
|
|
918
918
|
|
|
919
919
|
|
|
@@ -1013,8 +1013,8 @@ export interface QueryCompilationContext$instance {
|
|
|
1013
1013
|
|
|
1014
1014
|
|
|
1015
1015
|
export const QueryCompilationContext: {
|
|
1016
|
-
new(dependencies: QueryCompilationContextDependencies,
|
|
1017
|
-
new(dependencies: QueryCompilationContextDependencies,
|
|
1016
|
+
new(dependencies: QueryCompilationContextDependencies, async: boolean): QueryCompilationContext;
|
|
1017
|
+
new(dependencies: QueryCompilationContextDependencies, async: boolean, precompiling: boolean): QueryCompilationContext;
|
|
1018
1018
|
readonly queryContextParameter: ParameterExpression;
|
|
1019
1019
|
readonly notTranslatedExpression: Expression;
|
|
1020
1020
|
};
|
|
@@ -1102,7 +1102,7 @@ export interface QueryParameterExpression$instance extends Expression {
|
|
|
1102
1102
|
readonly name: string;
|
|
1103
1103
|
readonly nodeType: ExpressionType;
|
|
1104
1104
|
readonly translationMode: Nullable<ParameterTranslationMode>;
|
|
1105
|
-
readonly
|
|
1105
|
+
readonly type: Type;
|
|
1106
1106
|
equals(obj: unknown): boolean;
|
|
1107
1107
|
getHashCode(): int;
|
|
1108
1108
|
print(expressionPrinter: ExpressionPrinter): void;
|
|
@@ -1110,9 +1110,9 @@ export interface QueryParameterExpression$instance extends Expression {
|
|
|
1110
1110
|
|
|
1111
1111
|
|
|
1112
1112
|
export const QueryParameterExpression: {
|
|
1113
|
-
new(name: string,
|
|
1114
|
-
new(name: string,
|
|
1115
|
-
new(name: string,
|
|
1113
|
+
new(name: string, type: Type): QueryParameterExpression;
|
|
1114
|
+
new(name: string, type: Type, translationMode: ParameterTranslationMode): QueryParameterExpression;
|
|
1115
|
+
new(name: string, type: Type, translationMode: Nullable<ParameterTranslationMode>, isNonNullableReferenceType: boolean): QueryParameterExpression;
|
|
1116
1116
|
};
|
|
1117
1117
|
|
|
1118
1118
|
|
|
@@ -1130,7 +1130,7 @@ export interface QueryRootExpression$instance extends Expression {
|
|
|
1130
1130
|
readonly elementType: Type;
|
|
1131
1131
|
readonly nodeType: ExpressionType;
|
|
1132
1132
|
readonly queryProvider: IAsyncQueryProvider | undefined;
|
|
1133
|
-
readonly
|
|
1133
|
+
readonly type: Type;
|
|
1134
1134
|
detachQueryProvider(): Expression;
|
|
1135
1135
|
equals(obj: unknown): boolean;
|
|
1136
1136
|
getHashCode(): int;
|
|
@@ -1300,7 +1300,7 @@ export interface RelationalCollectionShaperExpression$instance extends Expressio
|
|
|
1300
1300
|
readonly parentIdentifierValueComparers: IReadOnlyList<ValueComparer>;
|
|
1301
1301
|
readonly selfIdentifier: Expression;
|
|
1302
1302
|
readonly selfIdentifierValueComparers: IReadOnlyList<ValueComparer>;
|
|
1303
|
-
readonly
|
|
1303
|
+
readonly type: Type;
|
|
1304
1304
|
update(parentIdentifier: Expression, outerIdentifier: Expression, selfIdentifier: Expression, innerShaper: Expression): RelationalCollectionShaperExpression;
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
@@ -1320,7 +1320,7 @@ export type RelationalCollectionShaperExpression = RelationalCollectionShaperExp
|
|
|
1320
1320
|
|
|
1321
1321
|
|
|
1322
1322
|
export interface RelationalCompiledQueryCacheKeyGenerator$instance extends CompiledQueryCacheKeyGenerator$instance {
|
|
1323
|
-
generateCacheKey(query: Expression,
|
|
1323
|
+
generateCacheKey(query: Expression, async: boolean): unknown;
|
|
1324
1324
|
}
|
|
1325
1325
|
|
|
1326
1326
|
|
|
@@ -1392,7 +1392,7 @@ export interface RelationalGroupByResultExpression$instance extends Expression {
|
|
|
1392
1392
|
readonly keyIdentifierValueComparers: IReadOnlyList<ValueComparer>;
|
|
1393
1393
|
readonly keyShaper: Expression;
|
|
1394
1394
|
readonly nodeType: ExpressionType;
|
|
1395
|
-
readonly
|
|
1395
|
+
readonly type: Type;
|
|
1396
1396
|
update(keyIdentifier: Expression, keyShaper: Expression, elementShaper: Expression): RelationalGroupByResultExpression;
|
|
1397
1397
|
}
|
|
1398
1398
|
|
|
@@ -1447,7 +1447,7 @@ export type RelationalLiftableConstantExpressionDependencies = RelationalLiftabl
|
|
|
1447
1447
|
|
|
1448
1448
|
export interface RelationalLiftableConstantFactory$instance extends LiftableConstantFactory$instance {
|
|
1449
1449
|
readonly relationalDependencies: RelationalLiftableConstantExpressionDependencies;
|
|
1450
|
-
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string,
|
|
1450
|
+
createLiftableConstant(originalValue: unknown, resolverExpression: Expression<Func<MaterializerLiftableConstantContext, unknown>>, variableName: string, type: Type): Expression;
|
|
1451
1451
|
}
|
|
1452
1452
|
|
|
1453
1453
|
|
|
@@ -1671,8 +1671,8 @@ export interface RelationalQueryCompilationContext$instance extends QueryCompila
|
|
|
1671
1671
|
|
|
1672
1672
|
|
|
1673
1673
|
export const RelationalQueryCompilationContext: {
|
|
1674
|
-
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies,
|
|
1675
|
-
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies,
|
|
1674
|
+
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies, async: boolean): RelationalQueryCompilationContext;
|
|
1675
|
+
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies, async: boolean, precompiling: boolean): RelationalQueryCompilationContext;
|
|
1676
1676
|
};
|
|
1677
1677
|
|
|
1678
1678
|
|
|
@@ -1821,7 +1821,7 @@ export interface RelationalShapedQueryCompilingExpressionVisitor_ShaperProcessin
|
|
|
1821
1821
|
export const RelationalShapedQueryCompilingExpressionVisitor_ShaperProcessingExpressionVisitor: {
|
|
1822
1822
|
new(parentVisitor: RelationalShapedQueryCompilingExpressionVisitor, selectExpression: SelectExpression, tags: ISet<System_Internal.String>, splitQuery: boolean, indexMap: boolean): RelationalShapedQueryCompilingExpressionVisitor_ShaperProcessingExpressionVisitor;
|
|
1823
1823
|
readonly getFieldValueMethod: MethodInfo;
|
|
1824
|
-
|
|
1824
|
+
any(source: IEnumerable): boolean;
|
|
1825
1825
|
includeJsonEntityCollection<TIncludingEntity, TIncludedCollectionElement>(queryContext: QueryContext, keyPropertyValues: unknown[], jsonReaderData: JsonReaderData, entity: TIncludingEntity, innerShaper: Func<QueryContext, unknown[], JsonReaderData, TIncludedCollectionElement>, getOrCreateCollectionObject: Action<TIncludingEntity>, fixup: Action<TIncludingEntity, TIncludedCollectionElement>, performFixup: boolean): void;
|
|
1826
1826
|
includeJsonEntityReference<TStructural, TRelatedStructural>(queryContext: QueryContext, keyPropertyValues: unknown[], jsonReaderData: JsonReaderData, structuralType: TStructural, innerShaper: Func<QueryContext, unknown[], JsonReaderData, TRelatedStructural>, fixup: Action<TStructural, TRelatedStructural>, performFixup: boolean): void;
|
|
1827
1827
|
includeReference<TEntity, TIncludingEntity extends TEntity, TIncludedEntity>(queryContext: QueryContext, entity: TEntity, relatedEntity: TIncludedEntity, navigation: INavigationBase, inverseNavigation: INavigationBase, fixup: Action<TIncludingEntity, TIncludedEntity>, trackingQuery: boolean): void;
|
|
@@ -1874,7 +1874,7 @@ export interface RelationalSplitCollectionShaperExpression$instance extends Expr
|
|
|
1874
1874
|
readonly nodeType: ExpressionType;
|
|
1875
1875
|
readonly parentIdentifier: Expression;
|
|
1876
1876
|
readonly selectExpression: SelectExpression;
|
|
1877
|
-
readonly
|
|
1877
|
+
readonly type: Type;
|
|
1878
1878
|
update(parentIdentifier: Expression, childIdentifier: Expression, selectExpression: SelectExpression, innerShaper: Expression): RelationalSplitCollectionShaperExpression;
|
|
1879
1879
|
}
|
|
1880
1880
|
|
|
@@ -1959,7 +1959,7 @@ export interface RelationalStructuralTypeShaperExpression$instance extends Struc
|
|
|
1959
1959
|
makeNullable(nullable?: boolean): StructuralTypeShaperExpression;
|
|
1960
1960
|
print(expressionPrinter: ExpressionPrinter): void;
|
|
1961
1961
|
update(valueBufferExpression: Expression): StructuralTypeShaperExpression;
|
|
1962
|
-
withType(
|
|
1962
|
+
withType(type: ITypeBase): StructuralTypeShaperExpression;
|
|
1963
1963
|
}
|
|
1964
1964
|
|
|
1965
1965
|
|
|
@@ -2047,7 +2047,7 @@ export interface ShapedQueryExpression$instance extends Expression {
|
|
|
2047
2047
|
readonly queryExpression: Expression;
|
|
2048
2048
|
readonly resultCardinality: ResultCardinality;
|
|
2049
2049
|
readonly shaperExpression: Expression;
|
|
2050
|
-
readonly
|
|
2050
|
+
readonly type: Type;
|
|
2051
2051
|
update(queryExpression: Expression, shaperExpression: Expression): ShapedQueryExpression;
|
|
2052
2052
|
updateQueryExpression(queryExpression: Expression): ShapedQueryExpression;
|
|
2053
2053
|
updateResultCardinality(resultCardinality: ResultCardinality): ShapedQueryExpression;
|
|
@@ -2108,33 +2108,33 @@ export interface SqlExpressionFactory$instance {
|
|
|
2108
2108
|
andAlso(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2109
2109
|
applyDefaultTypeMapping(sqlExpression: SqlExpression): SqlExpression | undefined;
|
|
2110
2110
|
applyTypeMapping(sqlExpression: SqlExpression, typeMapping: RelationalTypeMapping): SqlExpression | undefined;
|
|
2111
|
-
|
|
2112
|
-
|
|
2111
|
+
case(operand: SqlExpression, whenClauses: IReadOnlyList<CaseWhenClause>, elseResult: SqlExpression, existingExpression?: SqlExpression): SqlExpression;
|
|
2112
|
+
case(whenClauses: IReadOnlyList<CaseWhenClause>, elseResult: SqlExpression): SqlExpression;
|
|
2113
2113
|
coalesce(left: SqlExpression, right: SqlExpression, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2114
2114
|
constant(value: unknown, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2115
|
-
constant(value: unknown,
|
|
2115
|
+
constant(value: unknown, type: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2116
2116
|
constant(value: unknown, sensitive: boolean, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2117
|
-
constant(value: unknown,
|
|
2118
|
-
convert(operand: SqlExpression,
|
|
2117
|
+
constant(value: unknown, type: Type, sensitive: boolean, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2118
|
+
convert(operand: SqlExpression, type: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2119
2119
|
divide(left: SqlExpression, right: SqlExpression, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2120
2120
|
equal(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2121
2121
|
exists(subquery: SelectExpression): SqlExpression;
|
|
2122
|
-
fragment(sql: string,
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2122
|
+
fragment(sql: string, type?: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2123
|
+
function(name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2124
|
+
function(schema: string, name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2125
|
+
function(instance: SqlExpression, name: string, arguments: IEnumerable__System_Collections_Generic<SqlExpression>, nullable: boolean, instancePropagatesNullability: boolean, argumentsPropagateNullability: IEnumerable__System_Collections_Generic<System_Internal.Boolean>, returnType: Type, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2126
2126
|
greaterThan(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2127
2127
|
greaterThanOrEqual(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2128
|
+
in(item: SqlExpression, subquery: SelectExpression): SqlExpression;
|
|
2129
|
+
in(item: SqlExpression, values: IReadOnlyList<SqlExpression>): SqlExpression;
|
|
2130
|
+
in(item: SqlExpression, valuesParameter: SqlParameterExpression): SqlExpression;
|
|
2131
2131
|
isNotNull(operand: SqlExpression): SqlExpression;
|
|
2132
2132
|
isNull(operand: SqlExpression): SqlExpression;
|
|
2133
2133
|
lessThan(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2134
2134
|
lessThanOrEqual(left: SqlExpression, right: SqlExpression): SqlExpression;
|
|
2135
2135
|
like(match: SqlExpression, pattern: SqlExpression, escapeChar?: SqlExpression): SqlExpression;
|
|
2136
2136
|
makeBinary(operatorType: ExpressionType, left: SqlExpression, right: SqlExpression, typeMapping: RelationalTypeMapping, existingExpression?: SqlExpression): SqlExpression | undefined;
|
|
2137
|
-
makeUnary(operatorType: ExpressionType, operand: SqlExpression,
|
|
2137
|
+
makeUnary(operatorType: ExpressionType, operand: SqlExpression, type: Type, typeMapping?: RelationalTypeMapping, existingExpression?: SqlExpression): SqlExpression | undefined;
|
|
2138
2138
|
modulo(left: SqlExpression, right: SqlExpression, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2139
2139
|
multiply(left: SqlExpression, right: SqlExpression, typeMapping?: RelationalTypeMapping): SqlExpression;
|
|
2140
2140
|
negate(operand: SqlExpression): SqlExpression;
|
|
@@ -2220,7 +2220,7 @@ export interface StructuralTypeProjectionExpression$instance extends Expression
|
|
|
2220
2220
|
readonly nodeType: ExpressionType;
|
|
2221
2221
|
readonly structuralType: ITypeBase;
|
|
2222
2222
|
readonly tableMap: IReadOnlyDictionary<ITableBase, System_Internal.String>;
|
|
2223
|
-
readonly
|
|
2223
|
+
readonly type: Type;
|
|
2224
2224
|
addNavigationBinding(navigation: INavigation, shaper: StructuralTypeShaperExpression): void;
|
|
2225
2225
|
bindComplexProperty(complexProperty: IComplexProperty): Expression;
|
|
2226
2226
|
bindNavigation(navigation: INavigation): StructuralTypeShaperExpression | undefined;
|
|
@@ -2233,8 +2233,8 @@ export interface StructuralTypeProjectionExpression$instance extends Expression
|
|
|
2233
2233
|
|
|
2234
2234
|
|
|
2235
2235
|
export const StructuralTypeProjectionExpression: {
|
|
2236
|
-
new(
|
|
2237
|
-
new(
|
|
2236
|
+
new(type: ITypeBase, propertyExpressionMap: IReadOnlyDictionary<IProperty, ColumnExpression>, tableMap: IReadOnlyDictionary<ITableBase, System_Internal.String>, nullable: boolean, discriminatorExpression: SqlExpression): StructuralTypeProjectionExpression;
|
|
2237
|
+
new(type: ITypeBase, propertyExpressionMap: IReadOnlyDictionary<IProperty, ColumnExpression>, complexPropertyCache: Dictionary<IComplexProperty, Expression>, tableMap: IReadOnlyDictionary<ITableBase, System_Internal.String>, nullable: boolean, discriminatorExpression: SqlExpression): StructuralTypeProjectionExpression;
|
|
2238
2238
|
};
|
|
2239
2239
|
|
|
2240
2240
|
|
|
@@ -2245,20 +2245,20 @@ export interface StructuralTypeShaperExpression$instance extends Expression {
|
|
|
2245
2245
|
readonly materializationCondition: LambdaExpression;
|
|
2246
2246
|
readonly nodeType: ExpressionType;
|
|
2247
2247
|
readonly structuralType: ITypeBase;
|
|
2248
|
-
readonly
|
|
2248
|
+
readonly type: Type;
|
|
2249
2249
|
readonly valueBufferExpression: Expression;
|
|
2250
2250
|
debuggerDisplay(): string;
|
|
2251
2251
|
makeClrTypeNonNullable(): StructuralTypeShaperExpression;
|
|
2252
2252
|
makeClrTypeNullable(): StructuralTypeShaperExpression;
|
|
2253
2253
|
makeNullable(nullable?: boolean): StructuralTypeShaperExpression;
|
|
2254
2254
|
update(valueBufferExpression: Expression): StructuralTypeShaperExpression;
|
|
2255
|
-
withType(
|
|
2255
|
+
withType(type: ITypeBase): StructuralTypeShaperExpression;
|
|
2256
2256
|
}
|
|
2257
2257
|
|
|
2258
2258
|
|
|
2259
2259
|
export const StructuralTypeShaperExpression: {
|
|
2260
|
-
new(
|
|
2261
|
-
createUnableToDiscriminateException(
|
|
2260
|
+
new(type: ITypeBase, valueBufferExpression: Expression, nullable: boolean): StructuralTypeShaperExpression;
|
|
2261
|
+
createUnableToDiscriminateException(type: ITypeBase, discriminator: unknown): Exception;
|
|
2262
2262
|
};
|
|
2263
2263
|
|
|
2264
2264
|
|
|
@@ -2314,7 +2314,7 @@ export abstract class LiftableConstantExpressionHelpers$instance {
|
|
|
2314
2314
|
static buildMemberAccessForEntityOrComplexType(targetType: ITypeBase, liftableConstantContextParameter: ParameterExpression): Expression;
|
|
2315
2315
|
static buildMemberAccessForProperty(property: IPropertyBase, liftableConstantContextParameter: ParameterExpression): Expression;
|
|
2316
2316
|
static buildMemberAccessLambdaForProperty(property: IPropertyBase): Expression<Func<MaterializerLiftableConstantContext, unknown>>;
|
|
2317
|
-
static buildMemberAccessLambdaForStructuralType(
|
|
2317
|
+
static buildMemberAccessLambdaForStructuralType(type: ITypeBase): Expression<Func<MaterializerLiftableConstantContext, unknown>>;
|
|
2318
2318
|
static buildStructuralPropertyAccess(structuralProperty: IPropertyBase, liftableConstantContextParameter: ParameterExpression): Expression;
|
|
2319
2319
|
static buildStructuralPropertyAccessLambda(structuralProperty: IPropertyBase): Expression<Func<MaterializerLiftableConstantContext, unknown>>;
|
|
2320
2320
|
static isLiteral(value: unknown): boolean;
|
|
@@ -2383,10 +2383,10 @@ export abstract class QueryableMethods$instance {
|
|
|
2383
2383
|
static readonly thenByDescending: MethodInfo;
|
|
2384
2384
|
static readonly union: MethodInfo;
|
|
2385
2385
|
static readonly where: MethodInfo;
|
|
2386
|
-
static getAverageWithoutSelector(
|
|
2387
|
-
static getAverageWithSelector(
|
|
2388
|
-
static getSumWithoutSelector(
|
|
2389
|
-
static getSumWithSelector(
|
|
2386
|
+
static getAverageWithoutSelector(type: Type): MethodInfo;
|
|
2387
|
+
static getAverageWithSelector(type: Type): MethodInfo;
|
|
2388
|
+
static getSumWithoutSelector(type: Type): MethodInfo;
|
|
2389
|
+
static getSumWithSelector(type: Type): MethodInfo;
|
|
2390
2390
|
static isAverageWithoutSelector(methodInfo: MethodInfo): boolean;
|
|
2391
2391
|
static isAverageWithSelector(methodInfo: MethodInfo): boolean;
|
|
2392
2392
|
static isSumWithoutSelector(methodInfo: MethodInfo): boolean;
|