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.
首先,我发现这篇文章对一般的搜索/索引很有帮助,这篇文章让我了解了正确的索引。因此,在我的描述中使用了关键字分析器后,我无法在描述中找到带有“*”(星号)的字符串。例如,我有很多以“* note”开头的描述。所以我想找到:
item.Description.StartsWith("*");
我也试过:
.Where( x => x.Description.StartsWith( RavenQuery.Escape( "*" ) ) )
但这似乎不起作用。对此有什么想法吗?
这实际上应该有效,无论是在 StartsWith 中还是不需要进行转义。你可以尝试创建一个失败的测试吗?