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.
如何使用 Oriento Query Builder(Oriento 的一部分,用于 node.js 的 OrientDB 驱动程序)从 OrientDB 文档中编写以下示例?
select name.toLowerCase() == 'luke' from Actors
谢谢您的帮助。
db.select().from('Actors').where('name.toLowerCase() = :name').addParam('name', 'luke').all();