ninjanye / SearchExtensions

Library of IQueryable extension methods to perform searching

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Searching by empty string throws ArgumentNullException

siderisltd opened this issue · comments

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