1

.NET MVC4 と Entity Framework を使用して新しいプロジェクトに取り組んでいます。製品テーブルがあり、グループ化して製品を選択しようとしています。

私のモデル:

public class Cart
{
    public long Index { get; set; }
    public List<Products> ProductList = new List<Products>();
    public int ItemCount { get; set; }
    public decimal Total { get; set; }
}

私のクエリ:

var result = from p in productList
             group p by p.id into grp
             select new
             {
                 Index = grp.Key,
                 ProductList = grp.ToList<Products>(),
                 ItemCount = grp.Count(),
                 Total = grp.Sum(w => w.price)
             };

そして、結果をカートのリストに適用したいと思いました。でも、ある時失敗しました。それをするのを手伝ってくれませんか。

4

1 に答える 1