在我的 .net 应用程序中,我面临着一个performance problem
. 我的存储过程之一处理超过two tables having 30,000 records
. 但是SP itself returns fastly
. 但在我DataAccesss
的情况下,填写它需要更多时间DataTable
我的数据访问是
cmd.CommandType = CommandType.StoredProcedure;//cmd-sqlcommand object
conn.Open();//conn-sqlconnection object
adpt = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
adpt.Fill(dt);
conn.Close();
return dt;
如果有人知道更好性能的解决方案,请分享。