如何告诉EF该字段在概念模型中但不在数据库中

时间:2012-12-16 14:37:02

标签: entity-framework-4

您注释模型属性的属性是什么,告诉EF请不要在数据库中查找此字段,请不要将其映射到数据库中的任何内容。这只是概念模型?

1 个答案:

答案 0 :(得分:1)

[NotMapped]

http://msdn.microsoftcom/en-us/library/system.componentmodel.dataannotations.schema.notmappedattribute.aspx

namespace Models
{

  public partial class Foo
  {
    public virtual string FirstName { get; set; }

    public virtual string LastName { get; set; }

    [NotMapped]
    public string FullName { get { return FirstName + " " + LastName; } }
  }

}