我只想问有关实体框架的一般问题。当我想从数据库更新我的模型或从数据库向模型添加新项目时,我丢失了所有自定义属性
在示例中
My Sql Table
Test
Id int
TestId int
EF creates model automatically
public class Test
{
public int Id {get;set;}
public int TestId {get;set;}
}
//I want to add custom property on class
public class Test
{
public int Id {get;set;}
public int TestId {get;set;}
public string TestName {get;set;} //I added custom property
}
但是当我更新模型时,我丢失了自定义属性,并且每次我都需要一次又一次地添加它
你有什么解决办法吗?
相关分类