我只想问有关实体框架的一般问题。当我想从数据库更新我的模型或从数据库向模型添加新项目时,我丢失了所有自定义属性在示例中My Sql TableTestId intTestId intEF creates model automaticallypublic 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}但是当我更新模型时,我丢失了自定义属性,并且每次我都需要一次又一次地添加它你有什么解决办法吗?
1 回答
- 1 回答
- 0 关注
- 151 浏览
添加回答
举报
0/150
提交
取消