gpt4 book ai didi

java - Hibernate Criteria - 从选择中排除 groupProperty

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:18:32 25 4
gpt4 key购买 nike

我想使用 hibernate 条件对象作为第二个条件的子查询,如下所示:

    DetachedCriteria latestStatusSubquery = DetachedCriteria.forClass(BatchStatus.class);
latestStatusSubquery.setProjection(Projections.projectionList()
.add( Projections.max("created"), "latestStatusDate")
.add( Projections.groupProperty("batch.id"))
);

DetachedCriteria batchCriteria = DetachedCriteria.forClass(BatchStatus.class).createAlias("batch", "batch");
batch.add( Property.forName( "created" ).eq( latestStatusSubquery ) );

问题是添加 groupProperty 会自动将该属性添加到子选择查询的 select 子句中,我找不到任何方法来阻止这种情况的发生。

结果,当然是DB错误,因为子查询返回的值太多。

有人知道解决这个问题的方法吗?

最佳答案

像下面的示例一样尝试,

DetachedCriteria subquery = DetachedCriteria.forClass(CustomerCommentsVO.class, "latestComment"); 
subquery.setProjection(Projections.max("latestComment.commentId"));
subquery.add(Expression.eqProperty("latestComment.prospectiveCustomer.prospectiveCustomerId", "comment.prospectiveCustomer.prospectiveCustomerId"));

objCriteria = objSession.createCriteria(CustomerCommentsVO.class,"comment");
objCriteria.add(Subqueries.propertyEq("comment.commentId", subquery));
List lstComments = objCriteria.list();

关于java - Hibernate Criteria - 从选择中排除 groupProperty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3642688/

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