LINQ To SQL:Skip operator
EmpDetails Table:
![LinqTable.png]()
Code:
To skip over a given number of elements in a sequence.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LINQ
{
class Program
{
static void Main(string[] args)
{
DataClassesDataContext dc = new DataClassesDataContext();
IQueryable<EmpDetail> empQuery = (from emp in dc.EmpDetails
orderby emp.ID
select emp).Skip(2);
foreach (EmpDetail empDetail in empQuery)
{
Console.WriteLine("ID :{0}, Name :{1}, Location :{2}, Department :{3}", empDetail.ID, empDetail.Name, empDetail.Location, empDetail.Dept);
}
Console.ReadLine();
}
}
}
Output: