我正在处理的一个问题是由linq生成的重复INSERT语句.
我已将它们转换为sqlBulkcopy命令,但是现在它似乎没有将它记录在MiniProfiler的sql视图中.
是否会为sqlBulkcopy提供相关的命令字符串?
是否可以将批量副本显示在sql命令列表中?
我至少可以在%sql位中计算它吗?
我知道我可以使用MiniProfiler.Current.Step(“正在进行批量复制”),但这不会算作sql,也不会在列表中显示任何细节.
目前的代码如下:
public static voID BulkInsertAll<T>(this DataContext dc,IEnumerable<T> entitIEs){ var conn = (dc.Connection as ProfiledDbConnection).InnerConnection as sqlConnection; conn.open(); Type t = typeof(T); var tableAttribute = (tableAttribute)t.GetCustomAttributes( typeof(tableAttribute),false).Single(); var bulkcopy = new sqlBulkcopy(conn) { Destinationtablename = tableAttribute.name }; //.... bulkcopy.WritetoServer(table);}解决方法 您应该能够使用CustomTimings对这些进行分析.这些包含在现在为 available on nuget的 new v3 version中.
您可以在the sample project中看到CustomTiming的一些示例用法,其中它用于记录http和redis事件.
如何在sqlBulkcopy中使用它的示例:
string sql = GetBulkcopysql(); // what should show up for the sqlBulkcopy event?using (MiniProfiler.Current.CustomTiming("sqlBulkcopy",sql)) { RunsqlBulkcopy(); // run the actual sqlBulkcopy operation}总结
以上是内存溢出为你收集整理的c# – 让SqlBulkCopy在MiniProfiler中显示为sql全部内容,希望文章能够帮你解决c# – 让SqlBulkCopy在MiniProfiler中显示为sql所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)