Entity Framework 4.1 RC:覆盖多对多联接表的名称

发布于 2024-10-26 08:15:54 字数 316 浏览 2 评论 0原文

在我的代码中,我使用以下方式定义了多对多关系:

modelBuilder.Entity<Post>()
        .HasMany( p => p.Authors ).WithMany();

Post.Authors 是用户实体的 ICollection。

模型构建器自动创建一个名为 PostUsers 的表。

如何覆盖表命名约定,以便模型构建器在从模型创建数据库时命名表 PostAuthors

谢谢!

In my code I have a many to many relationship defined using:

modelBuilder.Entity<Post>()
        .HasMany( p => p.Authors ).WithMany();

Post.Authors is an ICollection of User entities.

The ModelBuilder automatically creates a table called PostUsers.

How can I override the table naming convention so that the ModelBuilder names the table PostAuthors when the database is created from the model?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时浪漫 2024-11-02 08:15:54

您可以使用:

modelBuilder.Entity<Post>
    .HasMany(p => p.Authors)
    .WithMany()
    .Map(m => m.ToTable("PostAuthors", "dbo"));

You can use:

modelBuilder.Entity<Post>
    .HasMany(p => p.Authors)
    .WithMany()
    .Map(m => m.ToTable("PostAuthors", "dbo"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文