EdmFunctions.BitwiseAnd(DbExpression, DbExpression) メソッド

定義

指定された引数で正規の 'BitwiseAnd' 関数を呼び出す DbFunctionExpression を作成します。指定する引数の結果型は整数で統一する必要があります。 式の結果型は、引数の型と同じです。

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression BitwiseAnd (this System.Data.Entity.Core.Common.CommandTrees.DbExpression value1, System.Data.Entity.Core.Common.CommandTrees.DbExpression value2);
static member BitwiseAnd : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function BitwiseAnd (value1 As DbExpression, value2 As DbExpression) As DbFunctionExpression

パラメーター

value1
DbExpression

最初のオペランドを指定する式。

value2
DbExpression

2 番目のオペランドを指定する式。

戻り値

value1 と value2 のビットごとの AND を実行して生成される値を返す新しい DbFunctionExpression。

適用対象