I have following code in my page:
var myVar= Entity.SetName .Where(p => int.Parse(p.ID) >= start && int.Pars
move the parse function out of linq expression.
int id = int.Parse(p.ID); var myVar= Entity.SetName .Where(p => id >= start && id <= end);