dotnet-db-samples icon indicating copy to clipboard operation
dotnet-db-samples copied to clipboard

.NET code samples for Oracle database developers #OracleDotNet

Results 65 dotnet-db-samples issues
Sort by recently updated
recently updated
newest added

When `UseOracleSQLCompatibility("11")` option is set, identity columns are created with sequence+trigger. But the sequence is never deleted when unapplying an migration - this causes some manual interaction, where one needs...

bug

## Bug report In the following scenario: - Vehicle, class which has a property, Driver. - Car, child of Vehicle. - Driver, which has a list of Vehicles. - Driver...

bug

Hi, We are moving from ```Oracle.ManagedDataAccess.Core 2.19.91``` to ```Oracle.ManagedDataAccess.Core 3.21.4``` and after update we are not able to connect to the database. Database version is ```12.1.0.2.0 - 64bit Production```. We...

bug

Are there plans about implementation performance counters based on Event Source? SqlClient Data Provider for SQL Server already have it: https://github.com/dotnet/SqlClient/pull/719

enhancement

Using the current latest Oracle.EntityFrameworkCore (5.21.3), I think there's a bug using TIMESTAMP WITH LOCAL TIME ZONE columns. Oracle.ManagedDataAccess expects to use CLR type DateTime, but Oracle.EntityFrameworkCore requires DateTimeOffset. I...

enhancement

Now that #56 is done, can we get UDT support in Oracle.EntityFrameworkCore too? Would be nice to just entity.Property(e => e.ComplexValue).HasColumnType("ComplexType").HasColumnName("ComplexValue") and map it to a C# class.

enhancement

I use strongly-typed entity identifiers of type System.Guid (for example): ``` public class OrderIdValueConverter : ValueConverter { public OrderIdValueConverter(ConverterMappingHints mappingHints = null) : base( id => id.Value, value => new...

When creating an update the following SQL is generated: ```sql DECLARE v_RowCount INTEGER; BEGIN UPDATE "MyTable" SET "Processed" = :p0, "Updated" = :p1 WHERE "Id" = :p2 AND "Type" =...

enhancement

Hi, I got the following config: * Oracle Database 11g Release 11.2.0.4.0 - 64bit Production on Linux * Net core 3.1 and Oracle.ManagedDataAccess.Core 3.21.1 - **Linux** * Table with LONG...