gpt4 book ai didi

c# - Fluent NHibernate 多对多中的 Where 子句

转载 作者:太空狗 更新时间:2023-10-30 00:22:10 26 4
gpt4 key购买 nike

我正在尝试在 Fluent Nhibernate 中设置多对多映射,该映射具有附加到子表的 where 子句。

这基本上是它应该如何工作的:

HasManyToMany(p => p.Images)
.Table("ProductImages")
.ParentKeyColumn("ProductID")
.ChildKeyColumn("ImageID")
.Where("ImageTypeID = 2");

ImageTypeID 列在 Images 表中,但 NHibernate 假定它是 ProductImages 表的一部分。知道我该如何指定吗?

谢谢!

最佳答案

可以。在 Fluent NHibernate 映射中使用 .ChildWhere:

HasManyToMany(p => p.Images)
.Table("ProductImages")
.ParentKeyColumn("ProductID")
.ChildKeyColumn("ImageID")
.ChildWhere("ImageTypeID = 2");

关于c# - Fluent NHibernate 多对多中的 Where 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2238290/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com