EdmFunctions.BitwiseNot(DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'BitwiseNot' function with the specified argument, which must have an integer numeric result type. The result type of the expression is the same as the type of the arguments.

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression BitwiseNot (this System.Data.Entity.Core.Common.CommandTrees.DbExpression value);
static member BitwiseNot : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function BitwiseNot (value As DbExpression) As DbFunctionExpression

Parameters

value
DbExpression

An expression that specifies the first operand.

Returns

A new DbFunctionExpression that returns the value produced by performing the bitwise NOT of value.

Applies to