如何从POCO对象集合中检索属性的最高/最后值
本文关键字:最后 属性 检索 POCO 对象 集合 | 更新日期: 2023-09-27 18:18:08
使用下面的示例对象…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
public class Worker
{
public int WorkerId { get; set; }
}
}
我如何获得WorkerId
属性的List<Worker>
内的最高/最后值?
With LINQ:
var max = list.Max(x=>x.WorkerId);
这个怎么样:
var list = new List<Worker>();
int max = list.Max(m => m.WorkerId);