DbExpressionBuilder.And(DbExpression, DbExpression) メソッド

定義

左辺と右辺の引数について論理 AND を実行する DbAndExpression を作成します。

public static System.Data.Entity.Core.Common.CommandTrees.DbAndExpression And (this System.Data.Entity.Core.Common.CommandTrees.DbExpression left, System.Data.Entity.Core.Common.CommandTrees.DbExpression right);
static member And : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbAndExpression
<Extension()>
Public Function And (left As DbExpression, right As DbExpression) As DbAndExpression

パラメーター

left
DbExpression

引数 left を指定するブール式。

right
DbExpression

引数 right を指定するブール式。

戻り値

指定された引数を持つ新しい DbAndExpression。

例外

left または right は null です。

left と right にはブール値の結果型がありません。

適用対象