How can I track the source of slowness for my scenario?

半腔热情 提交于 2019-12-08 03:25:32

I'd recommend using LINQPad to emulate the queries.

  1. You can look at the SQL tab to see all the SQL being produced. If it's the SQL itself causing the problem, you can profile it in SQL Server Management Studio and see why it's taking so long.
  2. You can load your DLL and run your actual methods, to see if it's something to do with the way the method is handling the data.
  3. If you can tell that your method runs without a problem, then you can narrow down the issue to the way the telerik controls are calling your methods.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!