我试图编写一个只返回其中一个字段的查询。现在我存储文件的filePath和文件的内容,在我的搜索中我想搜索内容,但只返回filePath。
我从这句话开始:
var searchResults = client.Search<File>(
s => s.Query(q => q.Wildcard(w => w.Value("*" + genre + "*").OnField("fileContents"))).AllIndices().AllTypes());
返回结果为searchResults.Documents
并向其添加.Field:
var searchResults = client.Search<File>(
s => s.Query(q => q.Wildcard(w => w.Value("*" + genre + "*").OnField("fileContents"))).AllIndices().AllTypes().Fields(f=>f.filePath));
它在searchResults.Documents
中没有任何内容,但它使用searchResults.Hits.Total
正确显示了点击次数。
File类只是:
public class File
{
public string filePath { get; set; }
public string fileContents { get; set; }
}
这将生成以下json请求:
{
"fields": [
"filePath"
],
"query": {
"wildcard": {
"fileContents": {
"value": "*int*"
}
}
}
}
当在Sense中运行时返回结果,并且在执行searchResults.Hits.Total
时会给出命中数。
但是,searchResults.Document
IEnumerable中没有记录。
我应该采用不同的方式返回一个特定的字段吗?
答案 0 :(得分:11)
使用&#34;来源&#34;字段以指定要撤回的字段。以下是我的应用程序中仅返回一些字段的示例代码。
var searchResults = ElasticClient.Search<AuthForReporting>(s => s
.Size(gridSortData.PageSize)
.From(gridSortData.PageIndex * gridSortData.PageSize)
.Sort(sort)
.Source(sr => sr
.Include(fi => fi
.Add(f => f.AuthEventID)
.Add(f => f.AuthResult.AuthEventDate)
.Add(f => f.AuthInput.UID)
.Add(f => f.AuthResult.CodeID)
.Add(f => f.AuthResult.AuthenticationSuccessful)
.Add(f => f.AuthInput.UserName)
.Add(f => f.AuthResult.ProductID)
.Add(f => f.AuthResult.ProductName)
.Add(f => f.AuthInput.AuthType)
.Add(f => f.AuthResult.Address.City)
.Add(f => f.AuthResult.Address.State)
.Add(f => f.AuthResult.Address.CountryCode)
.Add(f => f.AuthResult.RulesFailed)
)
)
.Query(query)
);
然后,您可以通过&#34;来源&#34;访问这些字段。在结果中:
var finalResult = from x in searchResults.Hits
select new AlertListRow
{
AlertCode = x.Source.AlertCode,
AlertDate = x.Source.AlertDate,
AlertID = x.Id,
AlertSummary = x.Source.Subject,
AlertMessage = x.Source.Body
};