File tree Expand file tree Collapse file tree
PhenX.EntityFrameworkCore.BulkInsert.Benchmark
PhenX.EntityFrameworkCore.BulkInsert.Tests/DbContainer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ public static void Main(string[] args)
1919 // Library comparison benchmarks
2020 var comparators = new [ ]
2121 {
22+ typeof ( LibComparatorMySql ) ,
23+ typeof ( LibComparatorPostgreSql ) ,
24+ typeof ( LibComparatorSqlite ) ,
25+ typeof ( LibComparatorSqlServer ) ,
2226 typeof ( LibComparatorOracle ) ,
23- // typeof(LibComparatorMySql),
24- // typeof(LibComparatorPostgreSql),
25- // typeof(LibComparatorSqlite),
26- // typeof(LibComparatorSqlServer),
2727 } ;
2828
2929 BenchmarkRunner . Run ( comparators , config ) ;
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ protected override void ConfigureDbContext()
2525
2626 protected override IDatabaseContainer ? GetDbContainer ( )
2727 {
28- return new OracleBuilder ( ) . Build ( ) ;
28+ return new OracleBuilder ( )
29+ . WithImage ( "gvenzl/oracle-free:23-slim-faststart" )
30+ . Build ( ) ;
2931 }
3032}
Original file line number Diff line number Diff line change @@ -29,10 +29,7 @@ public class TestDbContainerOracle : TestDbContainer
2929 protected override void Configure ( DbContextOptionsBuilder optionsBuilder , string databaseName )
3030 {
3131 optionsBuilder
32- . UseOracle ( GetConnectionString ( databaseName ) , o =>
33- {
34- // o.UseNetTopologySuite();
35- } )
32+ . UseOracle ( GetConnectionString ( databaseName ) )
3633 . UseBulkInsertOracle ( ) ;
3734 }
3835
You can’t perform that action at this time.
0 commit comments