from n in dc.Jobs .OrderBy(o => o.LocationName==location1) .Take(take) .Skip(pageSize) select new { Title = n.Title, Name = n.CompanyName, LName=n.LocationName, Description=n.JobDescription, Count = dc.Jobs.Count() };
from n in dc.Jobs .Where(o => o.LocationName==location1)
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)