--(注释)(Entity SQL)
实体 SQL 查询可以包含注释。 注释行以两个短划线 (--
) 开头。
语法
-- text_of_comment
自变量
text_of_comment
是包含注释文本的字符串。
示例
下面的 Entity SQL 查询演示如何使用注释。 此查询基于 AdventureWorks 销售模型。 若要编译并运行此查询,请执行下列步骤:
执行 How to: Execute a Query that Returns StructuralType Results中的过程。
将以下查询作为参数传递给
ExecuteStructuralTypeQuery
方法:
SELECT VALUE product FROM AdventureWorksEntities.Products AS product -- add a comment here