次の方法で共有


SqlNullabilityProcessor.Process メソッド

定義

オーバーロード

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

SelectExpressionを処理して null セマンティクスを適用し、最適化します。

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

クエリ式を処理して null セマンティクスを適用し、最適化します。

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

SelectExpressionを処理して null セマンティクスを適用し、最適化します。

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

パラメーター

selectExpression
SelectExpression

処理する select 式。

parameterValues
IReadOnlyDictionary<String,Object>

使用中のパラメーター値のディクショナリ。

canCache
Boolean

select 式をキャッシュできるかどうかを示すブール値。

戻り値

最適化された選択式。

適用対象

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

クエリ式を処理して null セマンティクスを適用し、最適化します。

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

パラメーター

queryExpression
Expression

処理するクエリ式。

parameterValues
IReadOnlyDictionary<String,Object>

使用中のパラメーター値のディクショナリ。

canCache
Boolean

クエリ式をキャッシュできるかどうかを示すブール値。

戻り値

最適化されたクエリ式。

適用対象