ef 5 codefirst enum collection not generated in database
问题 I am using EF5 and .NET 4.5. I have one particular class that is being generated incorrectly in the database. Although it is somewhat more complicated in my website, I'll simplify; namespace Store.Enities { public enum Role { Manager, Clerk } public class User { public int Id {get; set;} public ICollection<Role> Roles {get; set;} } public class StoreContext : DbContext { public DbSet<User> Users {get; set;} public StoreContext() { Database.SetIntializer(new DropCreateDatabaseIfModelChanges