Hi
Is it possible somehow to see the sql wich is generated instead of actually running it? It would be nice with eg. (SelfServiceing)
string sql = col.DeleteMulti(x,x,x).GetSql();
Is it placed somewhere deep in the API and i just havent found it? Its a little cumbersome to use the sql tracer to see the SQL.
If your current model can“t pass the sql text bask to EntityCollection then what about writting the sql query to the consol?
Eg with a global flag like PrintInsteadOfExcuteQuery = true maybe on DBUtils or something like that.