I am filling my radgrid from code behind using a iquerable but for some reason the filtering is not working at all even when i click the action button nothing happens am i missing a step?.
public IQueryable<Appointment> getAllApointments(){ var _appointments = apertureNetEntities.Appointments.Where(f => f.isDeleted == false ).OrderByDescending(o => o.authCreatedDate).ToList(); return _appointments.AsQueryable();}
protected void Page_Load(object sender, EventArgs e){ rgAppointments.DataSource = _dal.getAllApointments(); rgAppointments.DataBind(); }