querybuilder icon indicating copy to clipboard operation
querybuilder copied to clipboard

How to export comments in the generated query

Open mnsrulz opened this issue 2 years ago • 0 comments

var fQuery = new Query("SomeTable", "This is the comment associated with the selects");
var fquerysql = compiler.Compile(fQuery).ToString();

The above snippet of code generates the below output

SELECT * FROM [SomeTable]

I was expecting comments in the output generated by the above snippet like

SELECT * FROM [SomeTable] /*This is the comment associated with the selects*/

Any ideas on why the comment feature is not working? Or is there an alternative way to achieve the same?

mnsrulz avatar Jul 27 '21 20:07 mnsrulz