次の方法で共有


SelectExpression.ApplyProjection メソッド

定義

オーバーロード

ApplyProjection()

プロジェクション マッピングから、シェーパー式を無視してプロジェクションに式を追加します。 このメソッドは、サブクエリでプロジェクションを設定する場合にのみ使用する必要があります。

ApplyProjection(Expression, ResultCardinality, QuerySplittingBehavior)

プロジェクション マッピングからプロジェクションに式を追加し、具体化のために更新されたシェーパー式を生成します。

ApplyProjection()

プロジェクション マッピングから、シェーパー式を無視してプロジェクションに式を追加します。 このメソッドは、サブクエリでプロジェクションを設定する場合にのみ使用する必要があります。

public void ApplyProjection ();
member this.ApplyProjection : unit -> unit
Public Sub ApplyProjection ()

適用対象

ApplyProjection(Expression, ResultCardinality, QuerySplittingBehavior)

プロジェクション マッピングからプロジェクションに式を追加し、具体化のために更新されたシェーパー式を生成します。

public System.Linq.Expressions.Expression ApplyProjection (System.Linq.Expressions.Expression shaperExpression, Microsoft.EntityFrameworkCore.Query.ResultCardinality resultCardinality, Microsoft.EntityFrameworkCore.QuerySplittingBehavior querySplittingBehavior);
member this.ApplyProjection : System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Query.ResultCardinality * Microsoft.EntityFrameworkCore.QuerySplittingBehavior -> System.Linq.Expressions.Expression
Public Function ApplyProjection (shaperExpression As Expression, resultCardinality As ResultCardinality, querySplittingBehavior As QuerySplittingBehavior) As Expression

パラメーター

shaperExpression
Expression

この選択式の結果を整形する現在のシェーパー式。

resultCardinality
ResultCardinality

このクエリ式の結果カーディナリティ。

querySplittingBehavior
QuerySplittingBehavior

入れ子になったコレクションにプロジェクションを適用するときに使用するクエリ分割動作。

戻り値

この選択式の図形の結果に変更されたシェーパー式を返します。

適用対象