SearchExtensions
SearchExtensions copied to clipboard
Library of IQueryable extension methods to perform searching
Hi, By not specifying properties in Search() all the properties are searched for the search term. I have a List of objects with a lot of properties and searching works...
Hello, I am filtering a list of users by using a search pattern and NinjaNye.SearchExtensions 3.0.1. One of the user has a special character within its name ( the literal...
I need to do a `ContainingAll` query on an object's scalar properties *and* that of a child collection object. ``` q = q.Search(Function(t) t.Name, Function(t) t.ClassName, Function(t) t.OrderNumber). ContainingAll(fields). Where(Function(t)...
When using this library and attempting a ToListAsync, we get the following error: System.InvalidOperationException: 'The source IQueryable doesn't implement IDbAsyncEnumerable. Only sources that implement IDbAsyncEnumerable can be used for Entity...
I want to ignore the case when using `Containg` or `ContainigAll`. But `SetCulture` is not available. Is the documentation outdated or am I doing something wrong? Simplified example of what...
`query.Search(p=>p.date).soundex("10")` search datetime
Hi, I have just started using your extension and let me tell you. Its working perfectly. You saved lots of my time. I have unique requirement and see if this...
Code looks like below: ``` return await _entities.Search(x => x.Propname).Containing(keywords.Split(' ')) .ToRanked().OrderByDescending(x => x.Hits) .Select(x => x.Item) .ToListAsync(); ``` It seems to me the query created has some kind of...
I have tried using SearchChildren with EFCore and a query against a SQL database but it doesn't seem to be applying any filters in the generated SQL query. I saw...