【发布时间】:2022-01-14 05:36:08
【问题描述】:
【问题讨论】:
标签: android firebase google-cloud-firestore
【问题讨论】:
标签: android firebase google-cloud-firestore
要测试某个数组字段中是否存在某个精确值,可以use the array-contains operator:
CollectionReference requestsRef = db.collection("upiPayRequests");
requestsRef.whereArrayContains("Refnum", 8888888888);
【讨论】: