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:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ BitwiseNot(System::Data::Common::CommandTrees::DbExpression ^ value);
public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseNot (this System.Data.Common.CommandTrees.DbExpression value);
static member BitwiseNot : System.Data.Common.CommandTrees.DbExpression -> System.Data.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.

Exceptions

value is null.

value is invalid.

Applies to