Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以客户 ID 和客户名称作为字段的状态。要求是查询保险库并获取包含特定字符串模式(如“ash”)的客户名称的客户 ID。就像在 sql 查询中一样,我们搜索格式为 '%ash%' 的模式。这在保险库查询中可能吗?如果是,那么语法应该是什么?谢谢。
我相信这在我们的 slack 实例上得到了回答(slack.corda.net,适用于任何使用 corda 的人)
尝试设置如下所示的查询:
new QueryCriteria.VaultCustomQueryCriteria(Builder.like("%"+inputCustomerName+"%",customerName));
注意:感谢 Corda 用户 Amol Pednekar 从 slack 对这个问题的帮助。