Question

I would like to find the equivalent of LIKE in mongodb spring

Here is the request with the exact match

query.addCriteria(Criteria.where(field).is("myfield"))

I would like something like:

query.addCriteria(Criteria.where(field).LIKE("myfield"))
Était-ce utile?

La solution

You can try making it regex, this results in the same ouput like in the case of LIKE.

Criteria.where(field).regex("myfield", "i");

Note that i stands for case-insensitive.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top