gpt4 book ai didi

c# - Entity Framework - 每个类型问题的表

转载 作者:行者123 更新时间:2023-11-30 18:25:48 25 4
gpt4 key购买 nike

我在使用 Entity Framework 和 table-per-type 继承时遇到了问题。我得到的结果是在“PostComments”表中多了一列。

到目前为止,这是我的代码:

BaseComment 类:

   public abstract class BaseComment
{
[Key]
public int Id { get; set; }

[Required]
[AllowHtml]
public string Content { get; set; }

[Required]
public DateTime TimeCreated { get; set; }

public int? ParentId { get; set; }

public int UserId { get; set; }

[Required]
public CommentStatus CommentStatus { get; set; }

[ForeignKey("ParentId")]
public virtual BaseComment Parent { get; set; }

[ForeignKey("UserId")]
public virtual User User { get; set; }
}

PostComment类

public class PostComment : BaseComment
{
public int PostId { get; set; }

[ForeignKey("PostId")]
public virtual Post Post { get; set; }
}

PageComment 类

public class PageComment : BaseComment
{
public int PageId { get; set; }

[ForeignKey("PageId")]
public virtual Page Page { get; set; }
}

我的 Seed() 方法

protected override void Seed(DAL.Contexts.XPressDbContext context)
{
context.PostComments.AddOrUpdate(new PostComment()
{
Content = "asdasd",
PostId = 1,
TimeCreated = DateTime.Now,
UserId = 1,
CommentStatus = CommentStatus.Approved
});

context.PageComments.AddOrUpdate(new PageComment()
{
Content = "About page comment",
PageId = 17,
TimeCreated = DateTime.Now,
UserId = 1,
CommentStatus = CommentStatus.Approved
});
}

SQL 结果:见 PostComments 表中的 Page_Id 列。该列不应出现在那里。

SQL result

谁能告诉我哪里错了?感谢您的帮助!

最佳答案

您的 TPT 定义是正确的。您看到的这个额外的列似乎不是您的 TPT 配置的问题。看起来 Page 类有一个对 PostComments 的引用,它正在创建这个额外的列。

关于c# - Entity Framework - 每个类型问题的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29609623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com