I am using the MSDN Dynamic linq package for sql. It allows you to use strings for queries.
But the return type is IQueryable , not IQueryable<T> . I do not have a ToList() method.
How can I do this immediate launch without manually listing over IQueryable ?
My goal is to bind data to the Selecting event on the linqtosql data source and which throws an exception other than the datacontext. However, I can set the query as a data source in gridview.
Any help is much appreciated! Thanks.
Dynamic linq to sql is one of the samples that come with visual studio.
source share