i have the following error when trying to find a record in database by ntext
field using Entity Framework
enter code hereThe data types ntext and nvarchar are incompatible
in the equal to operator.
I found a few articles here related to that issue but i can't modify database and change column type.
I solve that problem using
dbcontext.database.sqlquery
withlike
operator to comparentext
rows with my value.