! (NOT)(Entity SQL)
Boolean
식을 부정합니다.
구문
NOT boolean_expression
-- or
! boolean_expression
인수
boolean_expression
부울을 반환하는 모든 유효한 식입니다.
설명
느낌표(!)는 NOT 연산자와 같은 기능을 합니다.
예시
다음 Entity SQL 쿼리에서는 NOT 연산자를 사용하여 Boolean
식을 부정합니다. 쿼리는 AdventureWorks Sales 모델을 기반으로 합니다. 이 쿼리를 컴파일하고 실행하려면 다음 단계를 수행하세요.
How to: Execute a Query that Returns StructuralType Results의 절차를 따릅니다.
다음 쿼리를
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)