Hi
I want if user has selected any value in Listbox then it should filter , else all values of ListBox
public List GetOpen(Int32 ddl0)
{
List Result = (from t in context.Headers
where t.IsActive == true
select t).ToList();
return Result;
}
Thanks
Sachin SinghPosted May 1, 2022, 12:07 PM