我第一次使用实体框架开发一个新的 MVC4 项目。我真的很喜欢能够使用代码优先模型并通过迁移更新数据库。我希望能够只在一个地方更改我的模型(实体类),并且对它的更改(例如新属性)不仅反映在迁移后的数据库中,而且反映在我的视图模型中。
所以,我想做的是能够使用我的实体类生成一个动态视图模型类。视图模型应该从我的实体类中复制所有属性和值,并在我的实体类属性中定义一些特殊的逻辑。
例如,对于像这样的简单实体框架模型:
public class UsersContext : DbContext
{
public UsersContext()
: base("DefaultConnection")
{
}
public DbSet<UserProfile> UserProfiles { get; set; }
[Table("UserProfile")]
public class UserProfile
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
}
我想生成一个看起来像这样的动态类:
public class UserProfileView
{
[ScaffoldColumn(false)]
public int UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
伪代码可能看起来像这样,但我不知道如何实现它:
function dynamic GeneraveViewModel(object entity)
{
Type objectType = entity.GetType();
dynamic viewModel = new System.Dynamic.ExpandoObject();
//loop through the entity properties
foreach (PropertyInfo propertyInfo in objectType.GetProperties())
{
//somehow assign the dynamic properties and values of the viewModel using the property info.
//DO some additional stuff based on the attributes (e.g. if the entity property was [Key] make it [ScaffoldColumn(false)] in the viewModel.
}
return viewModel;
}
任何人都可以提供任何建议吗?