When looking at a linked EntitySet<T>
of a LINQ to SQL mapped entity, I see the following:
I'd like to see the following (achieved by using the .AsQueryable()
extension method) so that I can click the little refresh icon and see the content:
Why can't I see the Results View on a regular plain EntitySet<T>
?
Also, I've noticed that on this MSDN page it says:
In LINQ to SQL, the
EntitySet<TEntity>
class implements theIQueryable
interface.
From what I can see, EntitySet<TEntity>
doesn't inherit from either IQueryable
nor IQueryable<T>
. So what's up with that claim?