gpt4 book ai didi

java - CrudRepository 按一对多关系过滤

转载 作者:行者123 更新时间:2023-12-01 18:23:35 26 4
gpt4 key购买 nike

我有两个实体客户和订单:

@Entity
public class Customer {

@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
.....
@OneToMany(mappedBy="customer")
private Set<Order> orders = new HashSet<Order>();
.....
}

@Entity
public class Order {

@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
........
@ManyToOne()
private Customer;
........
}

CrudRepository 中,我想找到所有没有订单的客户。我该如何编写@Query?或者如何在 CrudRepository 接口(interface)中编写该方法?

@Repository
public interface CustomerRepository extends CrudRepository<Customer, Long>{

findBy ......

@Query(".......")
find.....

}

谢谢!

最佳答案

您需要使用empty关键字,该关键字可以与集合表达式一起使用(无需连接)。

JPQL 查询将是

select c from Customer c where c.orders is empty 

关于java - CrudRepository 按一对多关系过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60267356/

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