droplink and treelist values in sitecore search
问题 How to get droplink and treelist values in sitecore search . Below are my code and config file . But when i am searching based on droplink and treelist value its not coming in search result . var fquery = new FullTextQuery(search); SearchHits searchHits = sc.Search(fquery, int.MaxValue); return searchHits.FetchResults(0, int.MaxValue).Select(r => r.GetObject()).ToList(); config file entry . I am not sure if i have to parse them or something else . Looking forward for help. 回答1: You don't say