我在播种信息时使用实体框架运行代码首次迁移时遇到问题。我似乎无法弄清楚我做错了什么。以下是程序包管理器控制台在运行update-database时给出的错误。
Running Seed method.
System.Data.Entity.Infrastructure.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. ---> System.Data.UpdateException: An error occurred while updating the entries. See the inner exception for details. --->
System.Data.SqlClient.SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint "FK_dbo.Blogs_dbo.Statuses_StatusId". The conflict occurred in database "GregGoodwin", table "dbo.Statuses", column 'Id'.
The statement has been terminated.
有一个更大的堆栈跟踪,它不会告诉我更多。无论如何这里是我的Configuration.cs种子代码。
var cat = new Category { CategoryTitle = "General", PostDate = DateTime.Now, Slug = "general" };
context.Categories.AddOrUpdate(cat);
var statusPub = new Status { StatusTitle = "Published", Slug = "published", PostDate = DateTime.Now };
context.Statuses.AddOrUpdate(statusPub);
var statusDraft = new Status { StatusTitle = "Draft", Slug = "draft", PostDate = DateTime.Now };
context.Statuses.AddOrUpdate(statusDraft);
var blogPost = new Blog
{
CategoryId = 1,
AllowComments = true,
PostDate = DateTime.Now,
PostDescription = "Default post added to database",
PostTitle = "Hello World",
Slug = "hello-world",
PostContent = "<p>Hello to the world</p>",
StatusId = 1,
Tags = "hello,world",
ShortLink = "http://bit.ly/16Qt4wp"
};
context.Blogs.AddOrUpdate(blogPost);
现在这是我的模特
状态
[Table("Statuses")]
public class Status
{
[Key, DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
[Required]
public string StatusTitle { get; set; }
public string Slug { get; set; }
[DataType(DataType.Date), Timestamp]
public DateTime PostDate { get; set; }
}
分类
[Table("Categories")]
public class Category
{
[Key, DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
[Required]
public string CategoryTitle { get; set; }
public string Slug { get; set; }
[DataType(DataType.Date), Timestamp]
public DateTime PostDate { get; set; }
}
博客
[Table("Blogs")]
public class Blog
{
[Key, DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
[Required]
public string PostTitle { get; set; }
[Required]
public string PostDescription { get; set; }
[Required]
public string PostContent { get; set; }
public string Slug { get; set; }
public string Tags { get; set; }
public bool AllowComments { get; set; }
public string ShortLink { get; set; }
[DataType(DataType.Date), Timestamp]
public DateTime PostDate { get; set; }
public int StatusId { get; set; }
public int CategoryId { get; set; }
public virtual Category Category { get; set; }
public virtual Status Status { get; set; }
}
我做错了什么?提前感谢您的帮助。
编辑:在查看数据库后,我注意到正在添加类别,但是当我运行种子时,状态和博客条目不是。
答案 0 :(得分:1)
很可能状态表中没有Id 1
的记录。我们无法分辨,因为这是一个标识列,因此不会传递Id属性。因此,请尝试设置状态导航属性而不是StatusID,并且在调用SaveChanges()
时应该正确解析:
var blogPost = new Blog
{
CategoryId = 1,
...
Status = statusDraft,
...
};
答案 1 :(得分:0)
我有这个问题,这是我的解决方案。 在插入数据库之前检查数据并不特别。
protected override void Seed(ApplicationDbContext context) {
var gender = new[] { Gender.NotSpecified, Gender.Male, Gender.Female };
var dbGender = context.Gender.ToList();
for (byte i = 0; i < gender.Length; i++) {
if (dbGender.FirstOrDefault(x => x.Name == gender[i]) != null) {
context.Gender.Add(new Gender {
Id = i,
Name = gender[i]
});
}
}
}