所以我有这个模特课:
[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,value
和test
属性不属于它。我像这样填充DbSet
public DbSet<items> items { get; set; }
奇怪的是,如果我添加public List<string> test { get; set; }
之类的东西,它不会崩溃。
我该怎么办?我本来想添加一个bool?
属性。
编辑: 我正在考虑创建一个将继承该模型的新类,但我将不得不重新映射/重新填充它。
答案 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; }
}