EdmFunctions.BitwiseNot(DbExpression) 方法

定义

创建一个 DbFunctionExpression,它使用指定的参数(该参数必须具有整数结果类型)调用规范 'BitwiseNot' 函数。 结果的数据类型与参数的类型相同。

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

参数

value
DbExpression

一个指定第一个操作数的表达式。

返回

一个新的 DbFunctionExpression,返回通过执行 的 value按位 NOT 生成的值。

例外

valuenull

value 无效。

适用于