Home

Provide option to disable SQL log in LINQPad?

edited August 2019
For some statement, SQL log may very very large:
foreach (var item in data)
{
item.ProjectId = mapping[item.Project];
}
SubmitChanges();
The data may have millions rows, this will VERY impact the execution performance, so the SQL log window is causing LINQPad useless in this senario.

Is there any option like Util.PreventSQLLog = true; to just prevent the SQL log?

Comments

Sign In or Register to comment.