I have following code in my page:
var myVar= Entity.SetName .Where(p => int.Parse(p.ID) >= start && int.Pars
Although it's not efficient, you should be able to load all rows, and then use LINQ to Objects:
var myVar= Entity.SetName.ToList() .Where(p => int.Parse(p.ID) >= start && int.Parse(p.ID) <= end);