Hello I need to select a column in my query with the name stored in a string variable, something like:
string day = "Monday";
result = from w in DataContext.Table
where w.day == true
select w.SGL;
If I do that I got an Syntax error that says 'There is no definition of day or Method'
I appreciate your help.