&& (AND)(实体 SQL)

如果两个表达式均为 true ,则返回 true;否则,返回 falseNULL

语法

boolean_expression AND boolean_expression

or

boolean_expression && boolean_expression  

自变量

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

备注

双“与”符号 (&&) 与 AND 运算符具有相同的功能。

以下矩阵显示了可能的输入值组合和返回值。

TRUE FALSE NULL
TRUE TRUE FALSE Null
FALSE false FALSE FALSE
NULL Null false Null

示例

以下 Entity SQL 查询演示如何使用 AND 运算符。 此查询基于 AdventureWorks 销售模型。 若要编译并运行此查询,请执行下列步骤:

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

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

-- AND
SELECT VALUE product FROM AdventureWorksEntities.Products
    AS product where product.ListPrice >  @price1 AND product.ListPrice <  @price2
-- &&
SELECT VALUE product FROM AdventureWorksEntities.Products
    AS product where product.ListPrice > @price1 && product.ListPrice < @price2

请参阅