! (NOT)(Entity SQL)
Boolean 식을 부정합니다.
NOT boolean_expression
or
! boolean_expression
인수
- boolean_expression
부울을 반환하는 유효한 식입니다.
설명
느낌표(!)는 NOT 연산자와 같은 기능을 합니다.
예제
다음 Entity SQL 쿼리에서는 NOT 연산자를 사용하여 Boolean 식을 부정합니다. 쿼리는 AdventureWorks Sales 모델을 기반으로 합니다. 이 쿼리를 컴파일하고 실행하려면 다음 단계를 수행하십시오.
방법: StructuralType 결과를 반환하는 쿼리 실행(EntityClient)의 절차를 수행합니다.
다음 쿼리를
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)