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
103 changed files
with
8,539 additions
and
638 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
22 changes: 21 additions & 1 deletion
22
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
62 changes: 62 additions & 0 deletions
62
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,62 @@ | ||
// 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> | ||
/// Indicates that a <see cref="ConstantExpression" /> can be converted to a <see cref="InlineQueryRootExpression" />; | ||
/// this will later be translated to a SQL <see cref="ValuesExpression" />. | ||
/// </summary> | ||
protected override bool ShouldConvertToInlineQueryRoot(ConstantExpression constantExpression) | ||
=> true; | ||
|
||
/// <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) | ||
}; | ||
} |
Oops, something went wrong.