For my Edit Profile page, all the items are from the User entity. Things like email, password, fullname, city, etc. I'm using ASP .NET MVC2 along with Entity Framework 4. I'm wondering if I should create a separate ProfileModel for my EditProfile View or if I should just use the User entity created by EF. My dilemmna is that if I created a ProfileModel, then I would be repeating myself (as all the properties are already in the User model), but on the other hand if I use the User model, then I'm not sure how I can add attributes (like [DisplayName("Password")]) since the User model is auto-generated.
I realize that the AccountModels that ship with MVC do define separate models that repeat fields like Password and Username that are already in User.