如何从POCO对象集合中检索属性的最高/最后值?

时间:2013-06-11 19:51:58

标签: c# .net linq

使用下面的示例对象......

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    public class Worker
    {
        public int WorkerId { get; set; }
    }
}

如何获取List<Worker>属性的WorkerId内的最高/最后一个值?

2 个答案:

答案 0 :(得分:2)

使用LINQ:

var max = list.Max(x=>x.WorkerId);

答案 1 :(得分:2)

这个怎么样:

var list = new List<Worker>();
int max = list.Max(m => m.WorkerId);