Is it possible to create an extension method on the DataContext, not on the table in the datacontext but directly on the dataContext to get dynamicly a table.
ex:
DataContext dc = new DataContext();
var test = from a in dc.myExtensionMethod(args) select a;
ps: I Already know dc.GetTAble
and dc.GetTable<T>