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 I'm doing
var searchTerms = new string[] { "mockingbird", "kill" }
var found = await books.Search(book => book.Title)
.ContainingAll(searchTerms)
.ToListAsync(stoppingToken);
I'm searching on an EfCore DbSet which inherits from IQueryable