In the same spirit, but more LINQ related, you can also use ExecuteQuery:
var query = dataContext.Exe cuteQuery<class Name>( @"SELECT ... WHERE ...
AND... OR... ");
where className is appropriate to recuperate the result of your dynamically
built SQL statement, as a string.
Vanderghast, Access MVP
var query = dataContext.Exe cuteQuery<class Name>( @"SELECT ... WHERE ...
AND... OR... ");
where className is appropriate to recuperate the result of your dynamically
built SQL statement, as a string.
Vanderghast, Access MVP
Comment