RelationalParameterBasedSqlProcessor.ProcessSqlNullability 方法

定义

重载

ProcessSqlNullability(SelectExpression, IReadOnlyDictionary<String,Object>, Boolean)

SelectExpression根据节点的可为空性处理 ,以应用正在使用的 null 语义,并根据给定的参数值对其进行优化。

ProcessSqlNullability(Expression, IReadOnlyDictionary<String,Object>, Boolean)

基于节点的可为空性处理查询表达式,以应用正在使用的 null 语义,并针对给定的参数值对其进行优化。

ProcessSqlNullability(SelectExpression, IReadOnlyDictionary<String,Object>, Boolean)

SelectExpression根据节点的可为空性处理 ,以应用正在使用的 null 语义,并根据给定的参数值对其进行优化。

protected virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression ProcessSqlNullability (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression, System.Collections.Generic.IReadOnlyDictionary<string,object> parametersValues, out bool canCache);
protected virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression ProcessSqlNullability (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression, System.Collections.Generic.IReadOnlyDictionary<string,object?> parametersValues, out bool canCache);
abstract member ProcessSqlNullability : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
override this.ProcessSqlNullability : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
Protected Overridable Function ProcessSqlNullability (selectExpression As SelectExpression, parametersValues As IReadOnlyDictionary(Of String, Object), ByRef canCache As Boolean) As SelectExpression

参数

selectExpression
SelectExpression

要优化的选择表达式。

parametersValues
IReadOnlyDictionary<String,Object>

要使用的参数值的字典。

canCache
Boolean

一个布尔值,指示是否可以缓存 select 表达式。

返回

已处理的选择表达式。

适用于

ProcessSqlNullability(Expression, IReadOnlyDictionary<String,Object>, Boolean)

基于节点的可为空性处理查询表达式,以应用正在使用的 null 语义,并针对给定的参数值对其进行优化。

protected virtual System.Linq.Expressions.Expression ProcessSqlNullability (System.Linq.Expressions.Expression queryExpression, System.Collections.Generic.IReadOnlyDictionary<string,object?> parametersValues, out bool canCache);
abstract member ProcessSqlNullability : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> System.Linq.Expressions.Expression
override this.ProcessSqlNullability : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyDictionary<string, obj> * bool -> System.Linq.Expressions.Expression
Protected Overridable Function ProcessSqlNullability (queryExpression As Expression, parametersValues As IReadOnlyDictionary(Of String, Object), ByRef canCache As Boolean) As Expression

参数

queryExpression
Expression

要优化的查询表达式。

parametersValues
IReadOnlyDictionary<String,Object>

要使用的参数值的字典。

canCache
Boolean

一个布尔值,指示是否可以缓存查询表达式。

返回

已处理的查询表达式。

适用于