EdmFunctions.BitwiseOr(DbExpression, DbExpression) Metodo

Definizione

Crea un oggetto DbFunctionExpression che richiama la funzione 'BitwiseOr' canonica con gli argomenti specificati, che devono presentare lo stesso tipo di risultato Integer numerico. Il tipo di risultato dell'espressione è uguale al tipo di argomenti.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ BitwiseOr(System::Data::Common::CommandTrees::DbExpression ^ value1, System::Data::Common::CommandTrees::DbExpression ^ value2);
public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseOr (this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2);
static member BitwiseOr : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function BitwiseOr (value1 As DbExpression, value2 As DbExpression) As DbFunctionExpression

Parametri

value1
DbExpression

Espressione che specifica il primo operando.

value2
DbExpression

Espressione che specifica il secondo operando.

Restituisce

Nuovo DbFunctionExpression che restituisce il valore prodotto eseguendo l'OR bit per bit di value1 e value2.

Eccezioni

value1 o value2 è null.

value1 o value2 non è valido.

Si applica a