09 2013 档案
逐条更新数据 sql
摘要:declare @tid int declare @fid intdeclare @i intdeclare @j intset @j=(select count(*) from tbl1.dbo.dnt_topics)set @i=1 ... 阅读全文
posted @ 2013-09-23 09:21 swarb 阅读(322) 评论(0) 推荐(0)
C# List分页
摘要:List.Skip((pagecount-1)*pagesize).Take(pagesize)假设你每页10条数据当前是第3页 跳到第4页则:List.Skip((4-1)*10).Take(10) int numb = 100; ... 阅读全文
posted @ 2013-09-05 17:36 swarb 阅读(1223) 评论(0) 推荐(0)
EF学习文档
摘要:http://www.cnblogs.com/xie-zhonglai/archive/2012/04/10/2440569.html http://tommyhu.cn/Entity-FrameWork-LINQ-to-Entities/ 阅读全文
posted @ 2013-09-03 14:48 swarb 阅读(220) 评论(0) 推荐(0)