在我的商店里,我有一个订单表,可以捕获每个客户的订单。我希望能够向用户显示他们购物车中的商品数量。这是我的订单型号:
reply_channel
首先使用代码public class Order
{
public int Id { get; set; }
public ApplicationUser Customer { get; set; }
public string ShirtCause {get; set;}
public DateTime CreateDate { get; set; }
public ShirtSize ShirtSize { get; set; }
public ShirtQuantity ShirtQuantity { get; set; }
public decimal Total { get; set; }
public string ShirtYear { get; set; }
public int OrderNum { get; set; }
public bool? OrderCompleted { get; set; }
public bool? RecievedShirt { get; set; }
}
在表格中创建,并反映在ShirtQuantity
列中。出于参考目的,这是我的数量模型:
ShirtQuantity_Id
应在以下操作中输出和枚举购物车:
public class ShirtQuantity
{
public int Id { get; set; }
public int Name { get; set; }
}
调用
时,除了Quantity_Id之外的所有内容都会列出return View(db.Orders.ToList());
在视图中。如何列出这些数量?我尝试创建一个组合订单和@model IEnumerable<ProjectName.Models.Order>
并在视图中调用它的视图模型:
shirtQuantities
这也不起作用。