我有一个具有 2 个属性的视图模型:一个是项目类对象的列表,另一个是订单类的对象。我想显示从项目列表计算的价格总和order.price
这是视图模型:
public class PlaceOrderViewModel
{
public Orders Order { get; set; }
public List<Items> Items { get; set; }
}
这是项目模型:
public class Items
{
public long Id { get; set; }
public long OrderId { get; set; }
public int ItemType { get; set; }
public string Detail { get; set; }
public int ItemsCount { get; set; }
public int Price { get; set; }
}
我正在寻找这样的东西,
@Html.DisplayFor(model => model.Order.Price, new { Value = @Model.Items.Sum(s => s.Price)})
我确实尝试过,但这对我不起作用。
我想将总和值与order.price
属性绑定。有什么帮助吗?