EF Core 3.1 - Except - ORA-00907 exception
Posted: Tue 18 Feb 2020 16:27
Hello,
When I use the Except method, I get an ORA-00933 or ORA-00907 exception :
The generated SQL contains the EXCEPT keyword (instead of MINUS in Oracle).
When I use the Except method, I get an ORA-00933 or ORA-00907 exception :
Code: Select all
var test = dbContext.ThirdParties.Except(dbContext.ThirdParties.Skip(5).Take(10)).FirstOrDefault();