我在 Cosmos DB 中有如下字段
{
"BatchId": "XYZ",
"abc": "OK",
"sdf": "324234",
"sfd": "234",
"DeType": "234",
"werwe": "werwe",
"werwer": "low",
"GenerationTimeLiveMinutes": 129
}
在这里,我有一个具有搜索字段的 .net UI。我的要求是根据提供的搜索条件显示所有记录。也就是说,如果我在 GenerationTimeLiveMinutes(数字字段)中给出“9”,它应该显示包含9 的所有记录。我可以使用 UDF 来实现这一点,但我们不应该根据客户端使用 UDF。我们可以使用 cosmos 选择查询来实现这一点吗?
select * from ABCCollection r where BatchId='XYZ'
AND Contains(r.CommandTimeToLiveMinutes,9)
不返回任何结果 谢谢