C# SQL Server:使用contains和ifilters的全文pdf搜索结果

C# SQL Server:使用contains和ifilters的全文pdf搜索结果,c#,sql-server,pdf,C#,Sql Server,Pdf,我在我的SQL Server中安装了iFilter,可以使用以下命令验证我是否支持pdf SELECT document_type, path FROM sys.fulltext_document_types WHERE document_type = '.pdf' 我明白了 .pdf C:\Program Files\Adobe\Adobe pdf iFilter 11 for 64位平台\bin\PDFFilter.dll 我使用ManagementStudio创建了全文索引,创建了一

我在我的SQL Server中安装了iFilter,可以使用以下命令验证我是否支持pdf

SELECT document_type, path 
FROM sys.fulltext_document_types 
WHERE document_type = '.pdf'
我明白了

.pdf C:\Program Files\Adobe\Adobe pdf iFilter 11 for 64位平台\bin\PDFFilter.dll

我使用ManagementStudio创建了全文索引,创建了一个存储文本
.pdf
的列,并将其设置为“类型列”,我还创建了一个将
pdf
本身存储为
varbinary(max)
的列,并可以通过使用c#back检索文件并读取它来验证其存在性。但是,虽然我可以使用此搜索查询搜索文本字段

select * 
from tblresume 
where contains(textResume, 'test text')
我无法使用此方法搜索pdf列

select * 
from tblresume 
where contains(pdfResume, 'test text')
没有错误,我只是没有搜索结果,有人能帮我吗


谢谢,

使用FTS DMV,您能告诉我是否有任何文档被编入了索引吗?不知道那是什么,你能告诉我如何使用FTS DMV吗?我在谷歌上搜索了一下,但似乎不明白那是什么。