! (NOT) (Entity SQL)

Boolean 表达式求反。

语法

NOT boolean_expression  
-- or  
! boolean_expression  

参数

boolean_expression
返回 Boolean 的任何有效表达式。

备注

惊叹号 (!) 与 NOT 运算符具有相同的功能。

示例

以下 Entity SQL 查询使用 NOT 运算符以对 Boolean 表达式求反。 此查询基于 AdventureWorks 销售模型。 若要编译并运行此查询,请执行下列步骤:

  1. 执行 How to: Execute a Query that Returns StructuralType Results中的过程。

  2. 将以下查询作为参数传递给 ExecuteStructuralTypeQuery 方法:

-- NOT
SELECT VALUE product FROM AdventureWorksEntities.Products 
AS product WHERE product.ListPrice > @price1 AND NOT (product.ListPrice = @price2)
-- !
SELECT VALUE product FROM AdventureWorksEntities.Products 
AS product WHERE product.ListPrice > @price1 AND ! (product.ListPrice = @price2)

请参阅