- (減算) (Entity SQL)
2 つの値の間で減算をします。
expression - expression
引数
- expression
任意の数値データ型の有効な式。
戻り値の型
2 つの引数の暗黙の型の昇格の結果であるデータ型。 暗黙の型の昇格の詳細については、「型システム (Entity SQL)」を参照してください。
例
次の Entity SQL クエリでは、- 算術演算子を使用して 2 つの数値の間で減算をします。 このクエリは、AdventureWorks Sales Model に基づいています。 このクエリをコンパイルして実行するには、次の手順を実行します。
Follow the procedure in StructuralType 結果を返すクエリの実行方法 (EntityClient).
Pass the following query as an argument to the
ExecuteStructuralTypeQuery
method:
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product where product.ListPrice = @price1 - @price2