根据db实现条件流畅映射

发布于 2024-10-16 12:14:20 字数 164 浏览 4 评论 0原文

我在我的应用程序中使用 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 技术交流群。

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

发布评论

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

评论(2

海之角 2024-10-23 12:14:20

您可以定义一个约定,而不是手动设置它吗?那么你就只有一个 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).

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