Archives for: "February 2020"
String.Contains won't work in EF Core 3.0
In the past, when I used EF Core 1.1, I can use String.Contains() in where to preform string like search. Such as: _db.Customers.where(x=>x.FirstName.constains("michael")) But we moved to EF Core 3.0. I found that is a problem, I got the exception… more »