流畅的 nhibernate 命名查询,无需使用 hbm 文件作为映射
我需要创建一个命名查询,并将其与我当前定义为流畅地图的地图之一一起使用。
是否可以继续使用流畅的映射,并能够在代码中动态创建命名查询?或者,切换到 hbm 映射是唯一的选择吗?
I am needing to create a named-query, and use it with one of the maps, that i currently have defined as a fluent map.
is it possible to continue using the fluent map, and be able to create the named-query dynamically in code? or, is switching to a hbm map the only option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许我误读了这个问题,但你不必完全切换到 hbm 映射。
您可以继续使用 Fluent NHibernate 来映射类并仅使用 hbm 进行命名查询。然后,您将在您的配置中包含实体和 hbms。
在您的namedQueries.hbm.xml中,您只定义命名查询:
Maybe I'm misreading the question, but you don't have to switch to hbm mapping completely.
You could continue to use fluent NHibernate to map classes and use hbm for named queries only. In your configuration, you'd then include the entities and the hbms.
In your namedQueries.hbm.xml you then only define named queries: