如何在 EF CTP 5 中定义数据库架构名称

发布于 2024-10-20 13:36:33 字数 98 浏览 1 评论 0原文

我正在将 CTP 5 与现有数据库一起使用。表是在与 dbo 不同的架构下创建的。 DbContext 生成的 SQL 使用 dbo。如何使 DbContext 使用正确的架构名称?

I am using CTP 5 with existing database. Tables are created under a schema different than dbo. The SQL generated by the DbContext is using dbo. How do I make the DbContext use the correct schema name?

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

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

发布评论

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

评论(1

長街聽風 2024-10-27 13:36:33

ToTable 有一个重载,它接受两个字符串:第一个是表的名称,第二个是模式的名称。
用于修饰类的属性也提供了相同的可能性。

ToTable has an overload which accepts two strings: the first is the name of the table and the second the name of the schema.
The same possibility is offered by the attribute used to decorate the class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文