! (NOT) (Entity SQL)

Boolean 表达式求反。

NOT boolean_expression
or
!  boolean_expression  

参数

  • boolean_expression
    返回布尔值的任何有效表达式。

备注

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

示例

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

  1. 执行如何:执行返回 StructuralType 结果的查询 (EntityClient) 中的过程。

  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)

另请参见

概念

Entity SQL 参考