1

私の MVC 3 アプリケーションでは、次のクエリを使用しています。

var items = context.QuoteLines.Include("DaybookVehicles").Where(x => x.EnquiryID == id).GroupBy(x=>x.VehicleID).ToList();
return View(items);

それから私の見解では、これが一番上にあります:

@model IEnumerable<myApp.Areas.DayBook.Models.DayBookQuoteLines>

しかし、これはエラーをスローします:

The model item passed into the dictionary is of type
'System.Collections.Generic.List`1[System.Linq.IGrouping`2[System.Int32,myApp.Areas.DayBook
.Models.DayBookQuoteLines]]', but this dictionary requires a model item of type 
'System.Collections.Generic.IEnumerable`1[myapp.Areas.DayBook.Models.DayBookQuoteLines]'.

この場合、group by を使用するにはどうすればよいですか? QuoteLinesそれぞれをグループ化して一致するようにしたいのでVehicleID

編集

見積明細モデル:

public class DayBookQuoteLines
{
    [Key]
    public int QuoteLineID { get; set; }

    public int EnquiryID { get; set; }

    public virtual int VehicleID { get; set; }

    public virtual DaybookVehicles Vehicle { get; set; }

    [Required(ErrorMessage = "This field is required.")]
    [Display(Name = "Item Number:")]
    [MaxLength(50)]
    public string ItemNumber { get; set; }

    public string ItemDescription { get; set; }
}

車両モデル:

public class DaybookVehicles
{
    [Key]
    public int VehicleID { get; set; }

    public int EnquiryID { get; set; }

    public virtual ICollection<DayBookQuoteLines> QuoteLines { get; set; }

    public string vrm { get; set; }

    public string make { get; set; }

    public string model { get; set; }

    public string engine_size { get; set; }

    public string fuel { get; set; }
}

この設定は正しく行われていると思いますが、各車両には QuoteLines のコレクションが添付されている可能性があります。

4

1 に答える 1

4

モデルの型が関数が返す型とは異なります。このビューに適したモデルは次のとおりだと思います

@model IEnumerable<IGrouping<int, DayBookQuoteLines>> 

クエリでToListは必要ありません

于 2012-05-08T11:12:37.347 に答える