I have this LINQ2SQL statement:
var value = from o in DataContext.Table
where o.Active == "Yes"
orderby o.Name
select o;
I'd like to append a new Name to this list (i.e. "Select Option 4");
I'm not sure how I can accomplish this (if I can)?
value could have:
Option 1
Option 2
Option 3
I also want to be able to add:
Select Option 4