!=(不等于)(Entity SQL)
比较两个表达式以确定左侧表达式是否不等于右侧表达式。 !=(不等于)运算符在功能上等效于 <> 运算符。
语法
expression != expression
-- or
expression <> expression
参数
expression
任何有效的表达式。 两个表达式都必须包含可隐式转换的数据类型。
结果类型
如果左侧表达式不等于右侧表达式,则为true
;否则为 false
。
示例
下面的 Entity SQL 查询使用 != 运算符比较两个表达式,以确定左侧表达式是否不等于右侧表达式。 此查询基于 AdventureWorks 销售模型。 若要编译并运行此查询,请执行下列步骤:
执行 How to: Execute a Query that Returns StructuralType Results中的过程。
将以下查询作为参数传递给
ExecuteStructuralTypeQuery
方法:
-- !=
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product WHERE product.ListPrice != @price
-- <>
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product WHERE product.ListPrice <> @price