forked from dotnet/efcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes dotnet#29427 Closes dotnet#30426 Closes dotnet#13617
- Loading branch information
Showing
89 changed files
with
7,067 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/EFCore.Relational/Properties/RelationalStrings.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/EFCore.Relational/Query/RelationalQueryRootProcessor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
using Microsoft.EntityFrameworkCore.Query.Internal; | ||
using Microsoft.EntityFrameworkCore.Query.SqlExpressions; | ||
|
||
namespace Microsoft.EntityFrameworkCore.Query; | ||
|
||
/// <inheritdoc /> | ||
public class RelationalQueryRootProcessor : QueryRootProcessor | ||
{ | ||
private readonly IModel _model; | ||
|
||
/// <summary> | ||
/// Creates a new instance of the <see cref="RelationalQueryRootProcessor" /> class. | ||
/// </summary> | ||
/// <param name="dependencies">Parameter object containing dependencies for this class.</param> | ||
/// <param name="relationalDependencies">Parameter object containing relational dependencies for this class.</param> | ||
/// <param name="queryCompilationContext">The query compilation context object to use.</param> | ||
public RelationalQueryRootProcessor( | ||
QueryTranslationPreprocessorDependencies dependencies, | ||
RelationalQueryTranslationPreprocessorDependencies relationalDependencies, | ||
QueryCompilationContext queryCompilationContext) | ||
: base(dependencies, queryCompilationContext) | ||
{ | ||
_model = queryCompilationContext.Model; | ||
} | ||
|
||
/// <summary> | ||
/// Converts a <see cref="ConstantExpression" /> to a <see cref="ConstantQueryRootExpression" />, which will later be translated | ||
/// to a <see cref="ValuesExpression" />. | ||
/// </summary> | ||
/// <param name="constantExpression">The constant expression to convert to a query root.</param> | ||
protected override Expression VisitQueryableConstant(ConstantExpression constantExpression) | ||
=> new ConstantQueryRootExpression(constantExpression); | ||
|
||
/// <inheritdoc /> | ||
protected override Expression VisitMethodCall(MethodCallExpression methodCallExpression) | ||
{ | ||
// Create query root node for table-valued functions | ||
if (_model.FindDbFunction(methodCallExpression.Method) is { IsScalar: false, StoreFunction: var storeFunction }) | ||
{ | ||
// See issue #19970 | ||
return new TableValuedFunctionQueryRootExpression( | ||
storeFunction.EntityTypeMappings.Single().EntityType, | ||
storeFunction, | ||
methodCallExpression.Arguments); | ||
} | ||
|
||
return base.VisitMethodCall(methodCallExpression); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override Expression VisitExtension(Expression node) | ||
=> node switch | ||
{ | ||
// We skip FromSqlQueryRootExpression, since that contains the arguments as an object array parameter, and don't want to convert | ||
// that to a query root | ||
FromSqlQueryRootExpression e => e, | ||
|
||
_ => base.VisitExtension(node) | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.