Condividi tramite


-- (commento) (Entity SQL)

Le query Entity SQL possono contenere commenti. Due trattini (--) indicano l'inizio di una riga di commento.

Sintassi

-- text_of_comment

Argomenti

text_of_comment Stringa di caratteri contenente il testo del commento.

Esempio

Nella query Entity SQL seguente viene illustrato come usare i commenti. La query è basata sul modello Sales di AdventureWorks. Per compilare ed eseguire questa query, effettuare le operazioni seguenti:

  1. Seguire la procedura indicata in How to: Execute a Query that Returns StructuralType Results.

  2. Passare la query seguente come argomento al metodo ExecuteStructuralTypeQuery :

SELECT VALUE product FROM AdventureWorksEntities.Products AS product -- add a comment here

Vedi anche