There are Q+A's for Entity Framework LIKE's in the Full .net framework:
How to do SQL Like % in Linq?
Like Operator in Entity Framework?
eg:
from c in dc.Organization
where SqlMethods.Like(c.Boss, "%Jeremy%")
This doesn't work in EF Core:
The name SqlMethods does not exist in the current context.
So how do you do a LIKE using Entity Framework CORE?