我有两个表,分别为Post
和Comments
,其中Post
可能包含许多Comments
。这些是我的模特
public class Post
{
public int Id { get; set; }
public string PostText { get; set; }
public string Title { get; set; }
public bool Status { get; set; }
public DateTime PostDate { get; set; }
public virtual List<Comment> Comments { get; set; }
public virtual ApplicationUser ApplicationUser { get; set; }
}
public class Comment
{
public int Id { get; set; }
public string CommentText { get; set; }
public DateTime CommentTime { get; set; }
public bool Status { get; set; }
public virtual ApplicationUser ApplicationUsers { get; set; }
public virtual Post Posts { get; set; }
}
现在我要数据发布数据及其相关注释。这就是我实施服务的方式
public Post GetPostById(int id)
{
var result = _dataContext.Set<Post>().Include(p => p.Comments).ThenInclude(p => p.ApplicationUsers).FirstOrDefault(p => p.Id == id);
return result;
}
这就是我配置映射的方式
public void Configure(EntityTypeBuilder<Post> builder)
{
builder.HasKey(p => p.Id);
builder.Property(p => p.PostText).IsUnicode(true).IsRequired(true).HasMaxLength(9999);
builder.Property(p => p.Title).IsUnicode(true).IsRequired().HasMaxLength(100);
builder.Property(p => p.PostDate).HasDefaultValue(DateTime.Now).IsRequired(true);
builder.Property(p => p.Status).HasDefaultValue(true).IsRequired(true);
builder.HasMany(p => p.Comments)
.WithOne(p => p.Posts)
.OnDelete(DeleteBehavior.Cascade);
builder.HasOne(p => p.ApplicationUser)
.WithMany(p => p.Posts);
}
但是此代码不会给我任何评论。我怎样才能做到这一点 谢谢。
答案 0 :(得分:1)
首先,您需要在评论类中添加public int PostId { get; set; }
您可以尝试使用此行吗?
builder.HasMany(p => p.Comments)
.WithOne(p => p.Posts)
.HasForeignKey(p => p.PostId);
.OnDelete(DeleteBehavior.Cascade);
为什么没有这样的结果?
_dataContex.Posts.Include(p => p.Comments).ThenInclude(p => p.ApplicationUsers).FirstOrDefault(p => p.Id == id);