摘要:
哎,看了那么多,这个知识点还是得开一个文章 IQueryable和IEnumerable都是延时执行(Deferred Execution)的,而IList是即时执行(Eager Execution) IQueryable和IEnumerable在每次执行时都必须连接数据库读取,而IList读取一次 阅读全文
摘要:
在考虑写一个sql分页的时候,看到的每个分页的例子中差不多就有“set nocount on” 这句话,到底嘛意思呢nocount “没有数量” on/off 开关的意思 set 设置的意思set nocount on 设置没有数量开: set nocount off 设置没有数量管:也就是显示有数 阅读全文
摘要:
SELECT TOP 1000ST.text AS '执行的SQL语句' ,QS.execution_count AS '执行次数' ,QS.total_elapsed_time / 10000 AS '耗时' ,QS.total_logical_reads AS '逻辑读取次数' ,QS.tota 阅读全文