是否可以通过 odbc 连接使用(流畅)nhibernate?
我必须使用自定义 odbc 驱动程序。
我需要作为连接字符串传递的是 DSN。
我如何使用(流畅的)nhibernate 来做到这一点? FluentNHibernate.Cfg.Db 仅提供具有 DSN 方法的 OdbcConnectionStringBuilder 类。我该如何使用这个?
i have to use a custom odbc driver.
All i need to pass as a connection string is the DSN.
How do i do this with (fluent)nhibernate? FluentNHibernate.Cfg.Db does only offer a OdbcConnectionStringBuilder class with an DSN method. How do i use this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建自己的从
PersistenceConfiguration
派生的OdbcConfiguration
类。根据您的数据库,您必须替换以下类中的方言。
然后,在 Fluent NHibernate 中,使用
OdbcConfiguration
:You can create your own
OdbcConfiguration
class that derives fromPersistenceConfiguration
.Depending on your database, you will have to replace the Dialect in the following class.
Then, in Fluent NHibernate, use that
OdbcConfiguration
:快速搜索后没有找到任何使用 OdbcConnectionStringBuilder 的示例代码。 Fluent NHibernate 似乎没有相应的“OdbcConfiguration”对象与 OdbcConnectionStringBuilder 一起使用。如果您不使用 Fluent NHibernate 来配置数据库(不过您仍然可以使用 Fluent 来进行所有对象映射),您可以通过 hibernate.cfg.xml 文件进行配置,请查看 用于使用 ODBC 提供程序的 DB2 示例配置。
Didn't find any sample code using OdbcConnectionStringBuilder after a quick search. Fluent NHibernate doesn't seem to have a corresponding "OdbcConfiguration" object to use with the OdbcConnectionStringBuilder. If you don't use Fluent NHibernate for configuring the database (you can still use Fluent for all the object mapping though), you can configure via the hibernate.cfg.xml file, look at the DB2 example config for using ODBC provider.