用于转换 IQueryable的扩展方法和IEnumerable到 ReadOnlyCollection
如何编写扩展方法将 IQueryable
和 IEnumerable
转换为 ReadOnlyCollection
?
谢谢
How to write extension methods for converting IQueryable<T>
and IEnumerable<T>
to ReadOnlyCollection<T>
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
List
已包含扩展方法AsReadOnly()
,因此只需执行以下操作:List<T>
already contains an extension methodAsReadOnly()
, so just do something like:请注意,在这种情况下,不存在“转换”
IEnumerable
之类的事情(与 LINQ 堆栈中的所有其他方法一样),您将返回一个与以前不同的对象。Note that there is no such thing as "converting" an
IEnumerable<T>
in this case (as with all other methods in the LINQ stack), you will get back a different object than before.