Hi
I am getting error - Cannot implicitly convert System.linq.iqueryable to system.collections.genericlist
public List GetList()
{
var Result = from t in context.View_Header
where t.IsActive == true
select new { t.ID, t.Name };
return Result;
}
Thanks
Muhammad Imran AnsariPosted Mar 16, 2022, 9:07 AM