IEnumerable vs IQueryable

后端 未结 4 1686
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-23 15:30

I have a query:

topics.OrderBy(x => x.Replies.Any() ? x.Replies.OrderBy(y => y.PostedDate).Last().PostedDate : x.PostedDate);

It sorts th

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-23 16:36

    IEnumerable : LINQ to Object and LINQ to XML.

    IQueryable : LINQ to SQL

提交回复
热议问题