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.
我在 JDOQL 查询中使用 .startsWith() 过滤器,但它区分大小写。所以 startsWith("ab") 不会返回 "Abc" 结果等等。
我需要使用 SQL 查询来避免这种情况吗?
所以将它与 toUpperCase() 然后也许 field.toUpperCase().startsWith("AB")
编辑:修复方法名称