Questions tagged «seeding»


6
EntityType'IdentityUserLogin'没有定义键。定义此EntityType的键
我正在使用Entity Framework Code First和MVC5。使用个人用户帐户身份验证创建我的应用程序时,我被赋予了一个帐户控制器,并与之一起获得Indiv用户帐户身份验证才能正常工作的所有必需的类和代码。 。 其中已经存在的代码如下: public class ApplicationDbContext : IdentityDbContext<ApplicationUser> { public ApplicationDbContext() : base("DXContext", throwIfV1Schema: false) { } public static ApplicationDbContext Create() { return new ApplicationDbContext(); } } 但是后来我继续使用代码先创建了自己的上下文,因此现在也有了以下内容: public class DXContext : DbContext { public DXContext() : base("DXContext") { } public DbSet<ApplicationUser> Users { get; set; } …

7
MVC 5种子用户和角色
我一直在玩新的MVC 5,我有一些使用代码优先迁移的模型,控制器和视图设置。 我的问题是如何播种用户和角色?目前,我在Configuration.cs的Seed方法中植入了一些参考数据。但是在我看来,直到第一次击中AccountController才创建用户和角色表。 我目前有两个连接字符串,因此可以将身份验证中的数据分离到不同的数据库中。 如何获取用户,角色等表格以及其他表格?而不是当帐户控制器被击中时?

6
Rails:运行rake db:seed时,US-ASCII中的无效字节序列(参数错误)
rake db:seed在我的Rails应用中运行时,出现此错误: US-ASCII中的无效字节序列(参数错误) 我只是添加science_majors到种子文件中,现在,当我运行rake db:seed它时,出现了以下错误: 无效的字节序列错误 为什么会这样,我该如何解决? seed.rb的一部分 @college = College.find_or_create_by_name!('University of Pittsburgh') if @college.update_attributes( url: 'university-of-pittsburgh', public: 'Public', years: '4-year', category: 'National University', calendar: 'Semester', location: 'Pittsburgh, PA', setting: 'Large City (250-500k)', retention: '90', majors: 'business/marketing: 15%|social sciences: 14%|health professions: 11%|english: 10%|engineering: 9%|psychology: 8%|biology: 7%|history: 5%', scholarships_link: 'http://www.oafa.pitt.edu/universityschlrs.aspx', map: …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.