ASP.NET, C#
I was doing something like this. Just need to complete it somehow.
var c = (from c in courseObject where
c.Status.Contains(selectedListItems) select c);
Giving these conditions:
courseObject = c and has properties such as c.Name, c.Status, c.Description
selectedListItems is List that contains “Active,Inactive,Disabled” for example
You’re really close. You need to do this: