我可以在C#中使用MongoDB 4文本搜索禁用词干/停用词过滤

时间:2018-10-10 17:04:42

标签: c# mongodb

我想在MongoDB中使用C#驱动程序进行全文搜索。

但是我看到在创建索引时,不能选择“ none”作为语言。 我希望字词能按原样匹配,也不要删除停用词。

1 个答案:

答案 0 :(得分:1)

给出类型

# sample input
x <- c("Get rid of la but not lala")
# pattern with spaces flanking target word
y <- gsub(" la ", " ", x)
# output
> y
[1] "Get rid of but not lala"

您可以这样做:

public class Entity
{
    public string Text;
}