Fluent NHibernate AutoMapping SchemaExport - 更改对象模型并保留数据

发布于 2024-10-25 18:07:33 字数 178 浏览 1 评论 0原文

当数据对象模型更改(向类添加新属性)时,是否有一种方法可以让流畅的自动映射更改架构,目前它只能删除并重新创建数据库架构,这将丢失数据库中的所有数据。它可以使用 Alter table 而不是 drop/create table,还是我只是在做梦?

是否可以根据自动映射流畅地更新数据库架构而不丢失数据?

干杯,

Is there a way for the fluent automapping to alter a schema when the data object model changes (adding a new property to a class), currently it only drops and recreates the database schema, which would lose all the data in the database. Can it use Alter table instead of drop / create table, or am I just dreaming?

Can fluent update the database schema according to automapping without losing data?

Cheers,

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

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

发布评论

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

评论(1

兰花执着 2024-11-01 18:07:33

哎哟!

只需使用

new SchemaUpdate(config).Execute(false, true); 

而不是

new SchemaCreate(config).Execute(yadda yadda);

Doh!

Just use

new SchemaUpdate(config).Execute(false, true); 

instead of

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