EdmFunctions.BitwiseAnd(DbExpression, DbExpression) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un objet DbFunctionExpression appelant la fonction « BitwiseAnd » canonique avec les arguments spécifiés, qui doivent avoir le même type de résultat (numérique entier). Le type de résultat de l'expression est identique au type des arguments.
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
Paramètres
- value1
- DbExpression
Expression qui spécifie la première opérande.
- value2
- DbExpression
Expression qui spécifie la seconde opérande.
Retours
Nouvelle DbFunctionExpression qui retourne la valeur produite en effectuant les valeurs AND au niveau du bit de value1 et value2.