-- (Comment)
Entity SQL queries can contain comments. Two dashes (--
) start a comment line.
-- text_of_comment
Arguments
- text_of_comment
Is the character string that contains the text of the comment.
Example
The following Entity SQL query demonstrates how to use comments. The query is based on the AdventureWorks Sales Model. To compile and run this query, follow these steps:
Follow the procedure in How to: Execute a Query that Returns StructuralType Results.
Pass the following query as an argument to the
ExecuteStructuralTypeQuery
method:
SELECT VALUE product FROM AdventureWorksEntities.Products AS product -- add a comment here