像Google一样自动生成全文搜索查询?
我是使用 SQL 2008 的 FTS 新手,我正在寻找一个将类似 Google 的关键字转换为 FTS 查询的库,以便与 CONTAINS()
一起使用。
我希望结果是:
a keyword => "a" OR "keyword"
another keyword -"long" => "another" OR "keyword" AND NOT "long"
是否有此类事情的库?
任何帮助将不胜感激!
P/S:我正在使用 SQL 2008 和 Entity Framework v4
I'm new at FTS with SQL 2008 and I'm searching for a lib that convert Google-like keyword to FTS query for using with CONTAINS()
.
I want the result to be:
a keyword => "a" OR "keyword"
another keyword -"long" => "another" OR "keyword" AND NOT "long"
Is there any lib for that kind of thing?
Any helps would be appreciated!
P/S: I'm using SQL 2008 with Entity Framework v4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 Lucene 全文搜索 使用 Lucene 搜索
Try Lucene Full Text Search Using Lucene Search