RelationalQueryRootProcessor.ShouldConvertToInlineQueryRoot Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ShouldConvertToInlineQueryRoot(Expression) |
Indicates that a Expression can be converted to a InlineQueryRootExpression; the latter will end up in TranslateInlineQueryRoot(InlineQueryRootExpression) for translation to a SQL ValuesExpression. |
ShouldConvertToInlineQueryRoot(NewArrayExpression) |
Indicates that a ConstantExpression can be converted to a InlineQueryRootExpression; the latter will end up in VisitInlineQueryRoot(InlineQueryRootExpression) for translation to a SQL ValuesExpression. |
ShouldConvertToInlineQueryRoot(Expression)
Indicates that a Expression can be converted to a InlineQueryRootExpression; the latter will end up in TranslateInlineQueryRoot(InlineQueryRootExpression) for translation to a SQL ValuesExpression.
protected override bool ShouldConvertToInlineQueryRoot (System.Linq.Expressions.Expression expression);
override this.ShouldConvertToInlineQueryRoot : System.Linq.Expressions.Expression -> bool
Protected Overrides Function ShouldConvertToInlineQueryRoot (expression As Expression) As Boolean
Parameters
- expression
- Expression
Returns
Applies to
ShouldConvertToInlineQueryRoot(NewArrayExpression)
Indicates that a ConstantExpression can be converted to a InlineQueryRootExpression; the latter will end up in VisitInlineQueryRoot(InlineQueryRootExpression) for translation to a SQL ValuesExpression.
protected override bool ShouldConvertToInlineQueryRoot (System.Linq.Expressions.NewArrayExpression newArrayExpression);
override this.ShouldConvertToInlineQueryRoot : System.Linq.Expressions.NewArrayExpression -> bool
Protected Overrides Function ShouldConvertToInlineQueryRoot (newArrayExpression As NewArrayExpression) As Boolean
Parameters
- newArrayExpression
- NewArrayExpression