I use entity Framework 4.2 and MVC 4
I Got this model/Database structure
UserInformation
UserID(PK)
FirstName
LastName
Email
UserFavoriteColor
FavID(PK)
Color
Why
UserID(FK)
Is it possible in one Create Controller Action to fill the UserInformation table and then Fill the UserFavoriteColor.
I Know I could perform this in two steps by creating 2 separates sectiosn. But this is not what I want.