Posted on: 12/20/2015 9:27:09 AM | Views : 1149

Hi all,
I am trying to get data by filtering my DTOList. But the data seem like dint filter. I get back the original data.
SchoolRecordDTOList objCountDTOList = (SchoolRecordDTOList)Session[SessionName.SchoolRecordDataList.ToString()]; objCountDTOList .DTOList .Where (p=> p.resultDate >= Convert.ToDateTime("2014-10-05 07:00:00") && p.subjectName == "English"); DataTable dtCount = objCountDTOList.ToDataTable(); lnkResult.Text = dtCount.Rows.Count.ToString(); Can anyone guide me how to go about this.

Go to the complete details ...