我已经将我的一些Entity
from移植JPA
到文档,现在移植我的一些查询。这是 JPA 查询:
em.createQuery("select distinct c from CustomerImpl c left join fetch c.addresses ca where (:name is null or c.firstName LIKE :name or c.lastName LIKE :name) and (:ref is null or c.externalReference LIKE :ref) and (:city is null or ca.city LIKE :city) order by c.firstName").setParameter("name", name).setParameter("ref", customerRef).setParameter("city", city).getResultList();
以下是我的尝试:
Criteria orNameCriteria = new Criteria().orOperator(Criteria.where("firstName").is(null), Criteria.where("firstName").is(name), Criteria.where("lastName").is(name));
Criteria orCustomerRefCriteria = new Criteria().orOperator(Criteria.where("externalReference").is(null), Criteria.where("externalReference").regex(customerRef,"i"));
Criteria orAddress = new Criteria().orOperator(Criteria.where("addresses.city").is(null), Criteria.where("addresses.city").regex(city, "i"));
Query nameq = new Query(new Criteria().andOperator(orNameCriteria,orCustomerRefCriteria,orAddress));
此查询返回零大小的数组列表。然后我更改了orNameCriteria
使用 is 子句并确保name
变量中包含的数据具有/
后缀和前缀。那也没有用。
但来自客户mongoVue
的查询:RockMongo
{ firstName: /SAM/}
返回数据。
问题 1:如何使用 spring-data-mongo编写LIKE CLAUSECriteria
?
问题2:使用 or 和 and 子句的正确方法是criteria
谢谢阅读