次の方法で共有


DbExpressionBuilder.OuterApply メソッド (DbExpressionBinding, DbExpressionBinding)

[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]

特定の入力セットの各要素につき 1 回、指定された apply 式を評価し、対応する入力列と適用列を持った行のコレクションを生成する新しい DbApplyExpression を作成します。 apply で空のセットに評価される行には、null の適用列値が割り当てられます。

名前空間:  System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
アセンブリ:  EntityFramework (EntityFramework.dll 内)

構文

'宣言
<ExtensionAttribute> _
Public Shared Function OuterApply ( _
    input As DbExpressionBinding, _
    apply As DbExpressionBinding _
) As DbApplyExpression
'使用
Dim input As DbExpressionBinding 
Dim apply As DbExpressionBinding 
Dim returnValue As DbApplyExpression 

returnValue = input.OuterApply(apply)
public static DbApplyExpression OuterApply(
    this DbExpressionBinding input,
    DbExpressionBinding apply
)
[ExtensionAttribute]
public:
static DbApplyExpression^ OuterApply(
    DbExpressionBinding^ input, 
    DbExpressionBinding^ apply
)
static member OuterApply : 
        input:DbExpressionBinding * 
        apply:DbExpressionBinding -> DbApplyExpression
public static function OuterApply(
    input : DbExpressionBinding, 
    apply : DbExpressionBinding
) : DbApplyExpression

パラメーター

戻り値

型 : System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
入力とバインディングの適用が指定され、OuterApply の DbExpressionKind が設定された新しい DbApplyExpression。

使用上の注意

Visual Basic および Visual C# では、このメソッドを、DbExpressionBinding 型のオブジェクトのインスタンス メソッドとして呼び出すことができます。インスタンス メソッド構文を使用してこのメソッドを呼び出す場合は、最初のパラメーターを省略します。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=vs.113)」または「https://msdn.microsoft.com/ja-jp/library/bb383977(v=vs.113)」を参照してください。

例外

例外 状態
ArgumentNullException

input または apply が null です。

参照

参照

DbExpressionBuilder クラス

OuterApply オーバーロード

System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 名前空間