如何在与数据库无关的模型类上添加属性?

时间:2015-08-28 00:54:11

标签: c# entity-framework asp.net-mvc-4

所以我有这个模特课:

[Table("items")]
public class items
{
        public int id { get; set; }
        public string text { get; set; }
        public string value { get; set; }
   //   public int test { get; set; } crashes
}

我使用实体框架。我的表中有id,text,valuetest属性不属于它。我像这样填充DbSet

public DbSet<items> items { get; set; }

奇怪的是,如果我添加public List<string> test { get; set; }之类的东西,它不会崩溃。

我该怎么办?我本来想添加一个bool?属性。

编辑: 我正在考虑创建一个将继承该模型的新类,但我将不得不重新映射/重新填充它。

1 个答案:

答案 0 :(得分:2)

您可以添加NotMapped属性。

例如:

[Table("items")]
public class items
{
    public int id { get; set; }
    public string text { get; set; }
    public string value { get; set; }

    [NotMapped]
    public int test { get; set; }
}