如何使用 Active Records 和 nhibernate 更新 SQL Server 数据库中的架构?
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
配置(根据我的经验,与 MSSQL+Oracle 配合良好)
您可以使用 schemaupdate,前提是您拥有根据数据库方言工作的
You can use schemaupdate, providing you have the configuration
it works depending on the db dialect ( in my experience works well with MSSQL+Oracle )