Fluent NHibernate 的类映射生成器
Fluent NHibernate 是否有类映射生成器?我需要像 db2hbm 这样的东西,但我希望它生成 Fluent Class Maps 而不是 xml 映射。
我知道 AutoMapping for Fluent 但这不是我想要的。我希望能够从数据库中的表生成类映射文件并将它们推送到我的 src 存储库。
Is there a Class Map generator for Fluent NHibernate? I need something like db2hbm but I want it to generate Fluent Class Maps instead of xml mappings.
I am aware of AutoMapping for Fluent but that is not what I want. I want to be able to generate Class Map files from tables in database and push them to my src repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 NHibernate 映射生成器 来完成此操作。
You can do this with NHibernate Mapping Generator.
您可以使用 Visual NHibernate 来完成此操作。检查选项屏幕上的 Fluent Nhibernate 选项以创建 FNH 映射代码。
You can do this with Visual NHibernate. Check the Fluent Nhibernate option on the Options screen to create FNH mapping code.
LLBLGen Pro 是一个很棒的工具,可以做到这一点以及更多。它不是免费的,但每一分钱都是值得的。
LLBLGen Pro is a great tool that can do this and much more. It´s not free, but it´s worth every cent.
这是我遇到的最接近的事情(生成 Fluent NH 映射的 T4 模板示例):
http://www.pnpguidance.net/Post/SampleFluentNHibernateT4TemplatesCodeGenerationLINQToSQL.aspx
This is the closest thing I've come across (T4 Templates example to generate Fluent NH mappings):
http://www.pnpguidance.net/Post/SampleFluentNHibernateT4TemplatesCodeGenerationLINQToSQL.aspx