Fluent Nhibernate - 架构映射问题
如果在我的类映射中我有
SchemaAction.None();
并且如果我也有
.ExposeConfiguration(cfg =>
{
new SchemaExport(cfg)
.Create(false, false);
})
我可以确保 nhib 不会以任何方式接触数据库模式。 换句话说,唯一的写入操作是实体到表的写入操作?
If in my classmap I have
SchemaAction.None();
and if I also have
.ExposeConfiguration(cfg =>
{
new SchemaExport(cfg)
.Create(false, false);
})
Can I ensure that nhib will not touch the db schema in any fashion.
In other words the only write action will be that of entities to the tables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更好的方法是完全省略 ExposeConfiguration 调用。
The better way would be to just leave out the ExposeConfiguration call altogether.