What instantiate-able types implementing IQueryable are available in .Net 4.0?

前端 未结 3 1168
栀梦
栀梦 2020-12-18 17:29

Within the context of C# on .Net 4.0, are there any built-in objects that implement IQueryable?

3条回答
  •  甜味超标
    2020-12-18 18:16

    EntityCollection does, as does EnumerableQuery.

    Not that I think either of these is going to get you anywhere. To help, we need to know what you are really trying to solve. If you are writing a LINQ provider, you should read this: http://msdn.microsoft.com/en-us/library/bb546158.aspx.

    They recommend writing your own implementation.

提交回复
热议问题