Dynamic query to immediate execute?
- by Curtis White
I am using the MSDN Dynamic linq to sql package. It allows using strings for queries.
But, the returned type is an IQueryable and not an IQueryable<T>. I do not have the ToList() method.
How can I this immediate execute without manually enumerating over the IQueryable?
My goal is to databind to the Selecting event on a linqtosql datasource and that throws a datacontext disposed exception. I can set the query as the Datasource on a gridview though.
Any help greatly appreciated! Thanks.
The dynamic linq to sql is the one from the samples that comes with visual studio.