繁体   English   中英

获取最新日期的最新记录和组 - LINQ

[英]Get latest record and group with highest date - LINQ

我有桌面Billing如下

AccoundID | Group | DateOfBill
1234      | A     | 2017-07-12
1234      | B     | 2017-07-16
1234      | C     | 2017-07-31
1235      | A     | 2017-07-31
1236      | B     | 2017-07-31

如您所见, AccountID 1234在2017年7月进行了3次交易。所以我需要一个列表,其中AccountID 1234必须在C Group因为那是该交易的最新日期。

这是我的代码片段

var LatestAccount = from n in Billing
                    where (n.Group == "A" || n.Group == "B" || n.Group == "C")
                    group n by new { n.AccountID, n.Group } into g
                    select new { 
                        AccountId = g.Key.AccountID, 
                        Group = g.Key.Group , 
                        DateOfBill = g.Max(t => t.DateOfBill) 
                    };

但结果是错误的。 在LINQ怎么办?

class Program
{
    static void Main(string[] args)
    {
        List<Billing> Billings = new List<Billing>()
        {
            new Billing()
            {
                AccountID = 1234, DateOfBill = new DateTime(2017,07,12), Group = "A"

            },
            new Billing()
            {
                AccountID = 1234, DateOfBill = new DateTime(2017,07,16), Group = "B"

            },
            new Billing()
            {
                AccountID = 1234, DateOfBill = new DateTime(2017,07,31), Group = "C"

            },
            new Billing()
            {
                AccountID = 1235, DateOfBill = new DateTime(2017,07,31), Group = "A"

            },
            new Billing()
            {
                AccountID = 1236, DateOfBill = new DateTime(2017,07,31), Group = "B"

            }               
        };

        var LatestAccount = from n in Billings
                            where (n.Group == "A" || n.Group == "B" || n.Group == "C")
                            group n by new { n.AccountID } into g
                            select g.Where(d => d.DateOfBill == g.Max(m => m.DateOfBill)).Select(x => new { AccountId = g.Key.AccountID, Group = x.Group, DateOfBill = x.DateOfBill }).FirstOrDefault();

        foreach (var item in LatestAccount)
        {
            Console.WriteLine("AccountID: " + item.AccountId + "  Date of Bill: " + item.DateOfBill + "  Group: "+ item.Group);
        }
        Console.ReadLine();
    }
}
class  Billing
{
    public int AccountID { get; set; }
    public string Group { get; set; }
    public DateTime DateOfBill { get; set; }
}

低于你想要的? 如果你告诉我你想要的输出,我可以修改我的答案。

在此输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM