我首先使用Entity Framework代码。我已经在我的表中列了这个专栏:
public Int64? Discount { get; set; }
现在我将此列创建为计算列:
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public Int64? computedDiscount { get; set; }
我在项目的许多代码中使用了Discount
列,是否可以强制Discount
返回computedDiscount
值,而不是将Discount
替换为computedDiscount
在我的所有源代码中?