实体框架一列从另一列返回值

时间:2017-06-05 19:33:38

标签: c# asp.net-mvc entity-framework ef-code-first

我首先使用Entity Framework代码。我已经在我的表中列了这个专栏:

public Int64? Discount { get; set; }

现在我将此列创建为计算列:

[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public Int64? computedDiscount { get; set; }

我在项目的许多代码中使用了Discount列,是否可以强制Discount返回computedDiscount值,而不是将Discount替换为computedDiscount在我的所有源代码中?

0 个答案:

没有答案