-- (コメント) (Entity SQL)
Entity SQL クエリには、コメントを含めることができます。 コメント行の先頭には、2 個のダッシュ (--
) を付けます。
-- text_of_comment
引数
- text_of_comment
コメントのテキストを表す文字列です。
例
次の Entity SQL クエリは、コメントの使い方を示しています。 このクエリは、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 -- add a comment here