具有 Fluent Nhibernate 的嵌套子类
我已经看到了如何使用旧的子类语法执行此操作的示例,但没有看到使用较新的 : SubclassMap 语法的示例。
基本上,我的表中有多个鉴别器,需要弄清楚如何使用 FNH 来做到这一点。
谢谢, 山姆
I've seen examples of how to do this with the old subclass syntax, but none with the newer : SubclassMap syntax.
Basically, I have multiple discriminators in a table and need to figure out how to do this with FNH.
Thanks,
Sam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们有一个基类 User 和许多派生类,如学习者、评估者、经理、管理员等。
这里是 UserMap
和 Manager 的示例
希望对您有所帮助。
We have a base class User and many derived classes from that as Learners, Assessors, Managers, Admins etc.
here is the UserMap
and an example of Manager
Hope that will help you.