SalesDBDataContext dataContext = new SalesDBDataContext(); IQueryablecustQuery2 = (from cust in dataContext.Customers orderby cust.Name select cust) .Skip(1).Take(2); foreach (Customer custRecord in custQuery2) { Console.WriteLine(custRecord.Name); }
Copyright © 2012 - All Rights Reserved - VKInfotek.com