0

我有这个小实体

class Order
{
    public long Id;
    public DateTime Date;
    public long ProductId;
}

我想选择在按 .分组的订单Id中具有的实体。对 ( , ) 不是唯一的,所以这个查询是错误的:MAX(Date)ProductIdMAX(Date)ProductId

select o.Id 
from Order o 
where o.Date = 
   (select max(o2.Date) 
    from Order o2 
    where o2.ProductId = o.ProductId);

你有什么想法?

基本上我想要的是从组中获取最新的订单,所以如果我假设更大Id== 更新Order这个:

select o 
from Order o 
where o.Id in 
   (select max(o2.Id) 
    from Order o2 
    group by o2.ProductId);

会为我工作。有没有更好的解决方案?

4

2 回答 2

0

查询需要优化,但它适合你。

List<Order> orders = GetOrders();

        var result = from o in orders
                      group o by new { o.ProductId } into ordGrouping
                      let MaxOrderDate = ordGrouping.Max(od=>od.Date)
                      let OrderID = ordGrouping.First(od=>od.Date.Equals(MaxOrderDate)).Id
                      select new 
                      { 
                          ProductId = ordGrouping.Key.ProductId, 
                          OrderId = OrderID,
                          OrderDate = MaxOrderDate
                      };

        foreach (var item in result)
        {
            Console.WriteLine(string.Format("Product ID:{0}, OrderId: {1} Date: {2}", item.ProductId, item.OrderId, item.OrderDate.ToLongDateString() + item.OrderDate.ToLongTimeString()));
        }
于 2012-10-31T12:27:12.683 回答
0

尝试自我加入而不是查询以获得更好的性能

于 2012-10-30T18:25:43.907 回答