DbExpressionBuilder.UnaryMinus-Methode
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Erstellt ein neues DbArithmeticExpression, das den Wert des Arguments negiert.
Namespace: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function UnaryMinus ( _
argument As DbExpression _
) As DbArithmeticExpression
'Usage
Dim argument As DbExpression
Dim returnValue As DbArithmeticExpression
returnValue = argument.UnaryMinus()
public static DbArithmeticExpression UnaryMinus(
this DbExpression argument
)
[ExtensionAttribute]
public:
static DbArithmeticExpression^ UnaryMinus(
DbExpression^ argument
)
static member UnaryMinus :
argument:DbExpression -> DbArithmeticExpression
public static function UnaryMinus(
argument : DbExpression
) : DbArithmeticExpression
Parameter
- argument
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein Ausdruck, der das Argument angibt.
Rückgabewert
Typ: System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression
Ein neues DbArithmeticExpression, das den Negationsvorgang darstellt.
Hinweis zur Verwendung
In Visual Basic und C# können Sie diese Methode als Instanzenmethode für ein beliebiges Objekt vom Typ DbExpression aufrufen. Bei Verwendung der Syntax für Instanzenmethoden lassen Sie den ersten Parameter aus. Weitere Informationen finden Sie unter https://msdn.microsoft.com/de-de/library/bb384936(v=vs.113) oder https://msdn.microsoft.com/de-de/library/bb383977(v=vs.113).
Ausnahmen
Ausnahme | Bedingung |
---|---|
ArgumentNullException | argument hat den Wert null. |
ArgumentException | Kein numerischer Ergebnistyp für argument vorhanden. |
Siehe auch
Verweis
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder-Namespace