我有这样的模型类顺序,
Category
我想添加两个字段UnitPrice和Quantity,并将Sum存储在TotalAmount字段中。那么最好的方法是什么?
答案 0 :(得分:1)
你可以这样做:
public class Order
{
public int OrderId {get; set;}
[DataType(DataType.Currency)]
[Column(TypeName = "money")]
public decimal UnitPrice { get; set; }
public int Quantity { get; set; }
[DataType(DataType.Currency)]
[Column(TypeName = "money")]
public decimal TotalAmount { get {return UnitPrice * Quantity; } }
}