Hello, I was upgrading our application to the latest .NET version and I found an issue when updating to the latest version of Entity Framework.
Persistence.EntityFrameworkCoreOracleProvider.csproj: Error NU1107 : Version conflict detected for Microsoft.EntityFrameworkCore.Relational.
EntityFrameworkCoreOracleModule -> EntityFrameworkCoreModule -> Microsoft.EntityFrameworkCore.Relational (>= 9.0.0)
EntityFrameworkCoreOracleModule -> Oracle.EntityFrameworkCore 8.23.60 -> Microsoft.EntityFrameworkCore.Relational (>= 8.0.3 && < 9.0.0).
Basically we cannot upgrade to the latest version since Oracle.EntityFrameworkCore
depends on Microsoft.EntityFrameworkCore.Relational
from .NET 8 and does not support the .NET 9 version.
I hope this can be resolved soon. Thanks!