2009年10月6日
摘要: Linq to sql 与 Linq to entities 生成的SQL Script与分页实现,我们选用Northwind做演示的Database.First 5 Records (Page 1) 1: (from c in Customers 2: select new { 3: c.City, 4: c.ContactName 5: }).Skip(0).Take(5)Generated... 阅读全文
posted @ 2009-10-06 11:27 PetterLiu 阅读(5309) 评论(4) 推荐(2) 编辑