What I have read so far that Linq (and C# for that matter) already does case sensitive checks.
How can I make it case in-sensitive?
Here is my code and it returns me 0 rows and where as I do have one record in the database
bool result = Employee.SearchBy(x => x.Name.Contains("johN schulZ"));
and this return true:
bool result = Employee.SearchBy(x => x.Name.ToLower().Contains("johN schulZ".ToLower()));
The latter solution is working, but I would like to know if there may be a more convenient way.