我们说我有这样的代码:
SimpleFacetedSearch sfs = new SimpleFacetedSearch(_Reader, new string[] { "source", "category" });
SimpleFacetedSearch.Hits hits = sfs.Search(query);
foreach (SimpleFacetedSearch.HitsPerFacet hpg in hits.HitsPerFacet)
{
SimpleFacetedSearch.FacetName facetName = hpg.Name;
for (int i = 0; i < facetName.Length; i++)
{
string part = facetName[i];
}
}
据我所知,我能够检索方面的价值,但对我来说有趣的是我怎样才能确定我在看哪个方面,例如: {1}}或source
,如本例所示。