流畅的 Nhibernate 映射从二级表加载集合
你能用流畅的 nhibernate 映射以下场景吗?如果是的话,如何映射:
表结构如下所示:
PrimaryTable
|__ 中间表
|__MyData
"PrimaryTable" -> “中间表”为1:1,“中间表”->1:1 MyData 是 1:n
对象模型如下所示:
PrimaryTableObject
|__ IList
基本上,我想加载集合但绕过中间表。有没有办法通过流畅的 nhibernate 映射来做到这一点?
如果问题没有意义,请批评我,我会用更多信息进行编辑。
Can you map the following scenario with fluent nhibernate, and if so how:
The table structure looks like this:
PrimaryTable
|__ Intermediary table
|__MyData
"PrimaryTable" -> "Intermediary table" is 1:1 and "Intermediary table" -> MyData is 1:n
The object model looks like this:
PrimaryTableObject
|__ IList<MyDataObject>
Basically, I want to load the collection but bypass the intermediary table. Is there a way to do this with fluent nhibernate mapping?
Bash me if the question doesn't make sense and I'll edit it with more info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)