I'm trying to use full text search in Entity Framework 6. I've found a library https://www.nuget.org/packages/EfFts/ and it works but I need call CONTAINS function on two columns with OR not AND:
WHERE CONTAINS(title, 'test') OR CONTAINS(content, 'test')
but I really don't know how to force EF to create such a query.