alexshyba / SitecoreSearchContrib

Extension to Sitecore.Search namespace. Includes AdvancedDatabaseCrawler and Searcher. Make sure to check out the website for the project.
http://sitecorian.github.io/SitecoreSearchContrib
25 stars 21 forks source link

Changed Refinements/Ranges to IEnumerables #26

Closed andrewburgess closed 11 years ago

andrewburgess commented 11 years ago

Changing to IEnumerables reduces some superfluous method calls to create the refinements/ranges.

For example

keywords.Select(x => x.ID.ToString())

instead of

keywords.Select(x => x.ID.ToString()).ToList()