ISqlExpressionFactory.Negate(SqlExpression) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new SqlExpression which represent a negation operation in a SQL tree.
public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression Negate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression operand);
public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression Negate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression operand);
abstract member Negate : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression
abstract member Negate : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression
Public Function Negate (operand As SqlExpression) As SqlExpression
Public Function Negate (operand As SqlExpression) As SqlUnaryExpression
Parameters
- operand
- SqlExpression
A SqlExpression to apply NOT on.
Returns
An expression representing a negation operation in a SQL tree.