Developer Forum »
IndexQuery lower case
5 posts

Hello!

In a search(IndexQuery), when getting body(text), it automatic makes it lower case letters.

var list = (from item in _filteredSearchResult

                        orderby item.ScorePercentage descending

                        let text = item.Body

                        let maxLength = 200

                        select new{

This does not happen when viewing the article, just in the search list.

Regards,

Thomas

120 posts

The whole index is lower case. Use tha actual content object and its properties to generate better text extracts.

1