SqlNullabilityProcessor.Process 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
Process(SelectExpression, IReadOnlyDictionary<String,Object>, Boolean) |
Processes a SelectExpression to apply null semantics and optimize it. |
Process(Expression, IReadOnlyDictionary<String,Object>, Boolean) |
Processes a query expression to apply null semantics and optimize it. |
Process(SelectExpression, IReadOnlyDictionary<String,Object>, Boolean)
Processes a SelectExpression to apply null semantics and optimize it.
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression Process (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression, System.Collections.Generic.IReadOnlyDictionary<string,object> parameterValues, out bool canCache);
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression Process (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameterValues, out bool canCache);
abstract member Process : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
override this.Process : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
Public Overridable Function Process (selectExpression As SelectExpression, parameterValues As IReadOnlyDictionary(Of String, Object), ByRef canCache As Boolean) As SelectExpression
Parameters
- selectExpression
- SelectExpression
A select expression to process.
- parameterValues
- IReadOnlyDictionary<String,Object>
A dictionary of parameter values in use.
- canCache
- Boolean
A bool value indicating whether the select expression can be cached.
Returns
An optimized select expression.
Applies to
Process(Expression, IReadOnlyDictionary<String,Object>, Boolean)
Processes a query expression to apply null semantics and optimize it.
public virtual System.Linq.Expressions.Expression Process (System.Linq.Expressions.Expression queryExpression, System.Collections.Generic.IReadOnlyDictionary<string,object?> parameterValues, out bool canCache);
abstract member Process : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> System.Linq.Expressions.Expression
override this.Process : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> System.Linq.Expressions.Expression
Public Overridable Function Process (queryExpression As Expression, parameterValues As IReadOnlyDictionary(Of String, Object), ByRef canCache As Boolean) As Expression
Parameters
- queryExpression
- Expression
A query expression to process.
- parameterValues
- IReadOnlyDictionary<String,Object>
A dictionary of parameter values in use.
- canCache
- Boolean
A bool value indicating whether the query expression can be cached.
Returns
An optimized query expression.
Applies to
Entity Framework