У меня есть set<>
в этой сущности, как фильтровать lc
или lh
с hql
?
//I use this hql ,but it do not work ,
String hql = "from VisitPlan v left join fetch v.lc where v.lc in :lcs"
@Entity
@Table(name = "T_VisitPlan")
public class VisitPlan {
//............
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable
@Column
private Set<String> lh = new HashSet<>();
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable
@Column
private Set<String> lc = new HashSet<>();
//.........
}