DbExpressionBuilder.IsNull, méthode
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Crée un objet DbIsNullExpression qui détermine si l'argument de jeu spécifié est Null.
Espace de noms : System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function IsNull ( _
argument As DbExpression _
) As DbIsNullExpression
'Utilisation
Dim argument As DbExpression
Dim returnValue As DbIsNullExpression
returnValue = argument.IsNull()
public static DbIsNullExpression IsNull(
this DbExpression argument
)
[ExtensionAttribute]
public:
static DbIsNullExpression^ IsNull(
DbExpression^ argument
)
static member IsNull :
argument:DbExpression -> DbIsNullExpression
public static function IsNull(
argument : DbExpression
) : DbIsNullExpression
Paramètres
- argument
Type : System.Data.Entity.Core.Common.CommandTrees.DbExpression
Expression qui spécifie l'argument.
Valeur de retour
Type : System.Data.Entity.Core.Common.CommandTrees.DbIsNullExpression
Nouveau DbIsNullExpression en fonction de l'argument spécifié.
Remarque sur l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme une méthode d'instance sur n'importe quel objet de type DbExpression. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.113) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.113).
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | argument a la valeur null. |
ArgumentException | argument a un type de résultat collection. |
Voir aussi
Référence
Espace de noms System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder