Desupported APIs

The desupported APIs are as follows:

  • ModelBuilder.UseOracleIdentityColumn Extension Method

    Starting with EF Core 5, ODP.NET EF Core desupports UseOracleIdentityColumn. Developers should call the ModelBuilder.UseIdentityColumn extension method instead, which provides identical functionality. UseOracleIdentityColumn remains supported for EF Core 3.1 and earlier releases.

  • ModelBuilder and PropertyBuilder ForOracleUseSequenceHiLo Extension Method

    Starting with EF Core 5, ODP.NET EF Core desupports ForOracleUseSequenceHiLo. Developers should call the ModelBuilder.UseHiLo extension method instead, which provides identical functionality. ForOracleUseSequenceHiLo remains supported for EF Core 3.1 and earlier releases.

  • Oracle.EntityFrameworkCore.Migrations.Operations.OracleCreateUserOperation Class

    Starting with Oracle EF Core 21c, the OracleCreateUserOperation class is desupported. Developers should call the MigrationBuilder.Sql method instead with a CREATE USER SQL statement to create a user if they are using the desupported API directly.

  • Oracle.EntityFrameworkCore.Migrations.Operations.OracleDropUserOperation Class

    Starting with Oracle EF Core 21c, the OracleDropUserOperation class is desupported. Developers should call the MigrationBuilder.Sql method instead with a DROP USER SQL statement to drop a user if they are using the desupported API directly.