根据db实现条件流畅映射
我在我的应用程序中使用 2 个不同的数据库,一个用于在线模式的大(oracle)数据库,一个用于离线模式的小(sqlce)数据库。
问题在于映射,id 生成策略不一样,我需要在 sqlce 上自定义实现(类似于序列,但用于负方向)。
如果我的映射不包含 IF,我怎样才能实现这种能力
I'm working with 2 different DB's in my app, a big(oracle) one for the online mode and a small(sqlce) one for offline mode.
The problem is with the mappings, the id generation strategy is not the same, I need a custom implementation on the sqlce(something like sequences but for the negative direction).
How can I achieve this ability, without my mapping contain IF's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以定义一个约定,而不是手动设置它吗?那么你就只有一个 if,即在会话工厂配置时加载哪个约定。或者,如果约定可以检查正在使用的方言的所有方式,则可能没有(尽管我不知道约定可用的流畅的 nhibernate 对象是否支持这一点)。
Instead of manually setting it, can you define a convention? Then you would just have one if, which convention to load at session factory config time. Or maybe none if the convention can examine all the way into which dialect is being used (though I don't know if the fluent nhibernate objects available to conventions supports that).
这是实现此http://kinnrot.blogspot的好方法.com/2011/02/per-db-conventions-with.html
here is a good way to implement this http://kinnrot.blogspot.com/2011/02/per-db-conventions-with.html