I am getting the error
Devart.Data.Oracle.OracleException : ORA-00920: invalid relational operator when querying the database using a bool property in a where clause like:
- var students = _dbContext.Students.Where(s => s.IsActive).ToList();
I am connecting to an Oracle DB and the the bool property is mapped to a NUMBER(1) column.