Closed siderisltd closed 8 years ago
Searching by empty string :
var resultsInTitles = this.repo .All() .Search(x => x.Title.ToLower()) .Containing(query.ToLower()) .ToRanked() .OrderByDescending(r => r.Hits);
If query is "" : Actual -> Throws
Expected -> Return all results
Thanks for reading an issue @siderisltd. I'll fix this up in the next day or so
Searching by empty string :
If query is "" : Actual -> Throws
Expected -> Return all results