如何使用 Fluent NHibernate AutoMapping 更改架构

发布于 2024-08-12 13:54:41 字数 88 浏览 4 评论 0原文

在我的数据库中,每个表都属于一个模式(例如,人)。我正在使用 Fluent NHibernate 和 Automapping,我的问题是如何设置我想要使用的模式。

In my database every table belongs to a schema (Person for example.) I am using Fluent NHibernate with Automapping and my question is how I set the schema I want to use.

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

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

发布评论

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

评论(2

2024-08-19 13:54:41

使用约定,特别是IClassConvention

Use a convention, specifically an IClassConvention.

强者自强 2024-08-19 13:54:41
public class SchemaConvention : IClassConvention
{
    public void Apply(IClassInstance instance)
    {
        instance.Schema("schemaNameGoesHere");
    }
}
public class SchemaConvention : IClassConvention
{
    public void Apply(IClassInstance instance)
    {
        instance.Schema("schemaNameGoesHere");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文