共用方式為


RelationalParameterBasedSqlProcessor.ProcessSqlNullability 方法

定義

多載

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

SelectExpression根據節點的可為 Null 性來處理 ,以在使用中套用 Null 語意,並針對指定的參數值進行優化。

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

根據節點的可為 Null 性來處理查詢運算式,以在使用中套用 Null 語意,並針對指定的參數值進行優化。

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

SelectExpression根據節點的可為 Null 性來處理 ,以在使用中套用 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

bool 值,指出是否可以快取 select 運算式。

傳回

已處理的選取運算式。

適用於

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

根據節點的可為 Null 性來處理查詢運算式,以在使用中套用 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

bool 值,指出是否可以快取查詢運算式。

傳回

已處理的查詢運算式。

適用於