Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题是,当我调用ToList()(Linq到 Sql)查询时,它会从 db 中获取所有记录并将它们带入内存。我想知道List()orchard ContentManager 的方法是否具有相同的效果?
ToList()
Linq
List()
提前致谢。
是的。List()返回:
_query.Slice(0, 0).AsPart<T>()
Slice(0, 0)将整个结果集作为只读集合返回,并具有执行查询并将结果带入内存的效果。AsPart<T>()将内容项列表显示为 type 的部分列表T。
Slice(0, 0)
AsPart<T>()
T