如何使用 Active Records 和 nhibernate 更新 SQL Server 数据库中的架构?

发布于 2024-10-15 17:48:18 字数 142 浏览 1 评论 0原文

我有 winforms 应用程序,它使用 nhibernate 和活动记录来访问数据库。我的问题是如何通过应用程序更新数据库架构? CreateSchema 方法删除数据库并创建一个新数据库。无论如何,是否可以通过某种方法更新数据库的少数部分。

I have winforms application which uses nhibernate and active records to access the database. My question is how do I update the database schema through the application? The CreateSchema method deletes the database and creates a new one. Is there anyway to update just few parts of the database through some method.

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

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

发布评论

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

评论(1

森罗 2024-10-22 17:48:18

配置(根据我的经验,与 MSSQL+Oracle 配合良好)

 public void CanUpdateDatabase()
    {
        SchemaUpdate su = new SchemaUpdate(config);
        su.Execute(true, true);
    }

您可以使用 schemaupdate,前提是您拥有根据数据库方言工作的

You can use schemaupdate, providing you have the configuration

 public void CanUpdateDatabase()
    {
        SchemaUpdate su = new SchemaUpdate(config);
        su.Execute(true, true);
    }

it works depending on the db dialect ( in my experience works well with MSSQL+Oracle )

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