How to do a LIKE in Entity Framework CORE (not full .net)
The LIKE function has moved under EF.Functions
in Core:
from c in dc.Organization
where EF.Functions.Like(c.Boss, "%Jeremy%")
The LIKE function has moved under EF.Functions
in Core:
from c in dc.Organization
where EF.Functions.Like(c.Boss, "%Jeremy%")