3 instantiations of DataQuery
System.Data.Linq (3)
DataContext.cs (2)
804return new DataQuery<TResult>(this, this.GetMethodCall(instance, methodInfo, parameters)); 1167return new DataQuery<TResult>(this.context, expression);
DataQuery.cs (1)
50return new DataQuery<S>(this.context, expression);
2 references to DataQuery
System.Data.Linq (2)
DataContext.cs (1)
1155Type dqType = typeof(DataQuery<>).MakeGenericType(eType);
DataQuery.cs (1)
41Type dqType = typeof(DataQuery<>).MakeGenericType(eType);