如何在 RQL 中查询 属性 路径表达式(如 $type)中的 $ 等特殊字符
How to query in RQL for special characters like $ in the property path expression like $type
在 ravendb-studio 中,我喜欢使用 RQL 查询来查询 属性 $type 具有某些值的文档。
我试过
from EventLogEntries where $type in ("...", "...")
但是它抛出一个错误,它无法解析 where 子句。有人建议如何更正查询吗?
似乎可以将 属性 放在 qoutes
中
from EventLogEntries where '$type' in ("...", "...")
returns预期结果
在 ravendb-studio 中,我喜欢使用 RQL 查询来查询 属性 $type 具有某些值的文档。
我试过
from EventLogEntries where $type in ("...", "...")
但是它抛出一个错误,它无法解析 where 子句。有人建议如何更正查询吗?
似乎可以将 属性 放在 qoutes
中from EventLogEntries where '$type' in ("...", "...")
returns预期结果