我想在 Configuration.cs 中移动我对数据库表和数据(用户、角色中的用户等)的初始化,如本文所示:http: //blog.longle.net/2012/09/25/seeding-users- and-roles-with-mvc4-simplemembershipprovider-simpleroleprovider-ef5-codefirst-and-custom-user-properties/
但是我有一个问题:是否可以设置添加用户的UserId?我的意思是,我可以添加 5 个用户,并且,我认为,他们应该获得 1-2-3-4-5 个 ID,但我可以控制它并设置他们的 ID 手册吗?
现在初始化看起来像:
if (!WebSecurity.UserExists("elena"))
WebSecurity.CreateUserAndAccount("elena", "password");