我想根据字段获取最大记录,但Max()扩展名返回给定的类型。这样说:
o.Max(i => i.CreatedDate) // returns date
返回最大日期值;我想像以下那样返回记录:
o.Max(i => i.CreatedDate) // returns the record with the maximum condition
有没有办法做到这一点?
感谢。
答案 0 :(得分:2)
o.OrderByDescending(i => i.CreatedDate).First()