EF如何处理计算属性?

时间:2013-03-27 07:00:10

标签: entity-framework ef-code-first entity-framework-5 code-first

给出以下课程

public class Model
{
    public int ActualInt{get;set;}
    public int ComputedInt {get {return ActualInt * 2;}}
}

EF 如何映射ComputedInt。

我也不愿意使用NotMappedAttribute

来使用我的域模型

Fluent也很痛苦,因为我必须按照计算属性继续删除每个上下文的映射,并且域模型中有一小部分。

有没有办法做到这一点,只需按惯例而不是明确配置?

0 个答案:

没有答案