我有这样的数据集合:
public class PriceList
{
[Display(Name = "Price List ID")]
public int m_ID { get; set; }
[Display(Name = "Price List Provider")]
public int m_Provider { get; set; }
[Display(Name = "Current Book")]
public int m_BookID { get; set; }
public BookInfo m_Book { get; set; }
[Display(Name = "Price")]
public decimal m_Price { get; set; }
[Display(Name = "Date of price list")]
public DateTime m_PriceListDate { get; set; }
}
价目表是当我在我的 mvc-app 中获得特定项目的价格时创建的价目表对象。它可以在同一天、一周、一个月或一年内多次创建。
所以现在一本书可以成为一个类别的一部分,例如“漫画书”。我的问题是我正在尝试创建一个方法,它只会给我最新的条目,所以只有最近的日期,基于这个集合的所有项目。
这是方法:
public List<PriceList> ListLatestPriceListByBookCategoryID(int _id)
{
List<PriceList> listToReturn = new List<PriceList>();
var priceListQry = from pl in m_Db.PriceList
where pl.Book.BookCatID == _id
// INSERT CODE HERE???
select pl;
if (!priceListQry.Any())
{
return null;
}
listToReturn.AddRange(priceListQry);
return listToReturn;
}
基本上,我想创建一个只返回所需数据的查询。而这些所需的数据仅包含 id 找到的每本书的最新条目。我可以有很多类别和很多书。
谁能帮我想出一个好的方法来做到这一点?到目前为止,我所考虑的只是一个庞大的方法,它将遍历整个列表以过滤所有不必要的数据,但我想要更有效的方法,因为我最终将拥有大量数据,这将证明需要很多时间。
* 编辑 *
到目前为止,我已经添加了这行代码:
var result = m_Db.PriceList.GroupBy(r => r.BookID).Select(r => new
{
BookID = r.OrderByDescending(t => t.PriceListDate).First().BookID,
PriceListDate = r.OrderByDescending(t => t.PriceListDate).First().PriceListDate
});
我对这行代码没有错误,这对我来说很有意义。但是,该listToReturn.AddRange(result)
行现在抛出此错误:
Error 13 Argument 1: cannot convert from 'System.Linq.IQueryable<AnonymousType#1>' to 'System.Collections.Generic.IEnumerable<MyApp.Models.Entities.PriceList>