I have the following query:
SELECT Animals.name
FROM Animals
WHERE CONTAINS(*, 'feline AND black');
I am having trouble converting it to an Entity Framework Core query. I have a SQL Server with a catalog that has a few indexes.
I want to be able to use FREETEXT
and CONTAINS
to do a fulltext query on the tables. I cannot find the method in Entity Framework Core for fulltext search with CONTAINS
.