我正在使用 MongoRepository 查询我的 MongoDB。假设我的数据库包含如下数据:
{
stateOrCountry:"SomeValue"
}
现在,如果我像这样写查询
findByStateOrCountry("country")
它认为我正在搜索州或国家/地区。如何为其中包含“或”的键编写查询
我正在使用 MongoRepository 查询我的 MongoDB。假设我的数据库包含如下数据:
{
stateOrCountry:"SomeValue"
}
现在,如果我像这样写查询
findByStateOrCountry("country")
它认为我正在搜索州或国家/地区。如何为其中包含“或”的键编写查询