Skip to content

Commit

Permalink
Fixing Oracle tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
anpete committed Feb 1, 2018
1 parent 25eb0b2 commit 76d3da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public override DbContextOptionsBuilder AddOptions(DbContextOptionsBuilder build
{
w.Log(RelationalEventId.QueryClientEvaluationWarning);
w.Log(OracleEventId.ByteIdentityColumnWarning);
w.Log(CoreEventId.FirstWithoutOrderByAndFilterWarning);
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public override DbContextOptionsBuilder AddOptions(DbContextOptionsBuilder build
{
new OracleDbContextOptionsBuilder(
base.AddOptions(builder)
.ConfigureWarnings(w => w.Log(RelationalEventId.QueryClientEvaluationWarning)))
.ConfigureWarnings(w => w.Log(RelationalEventId.QueryClientEvaluationWarning)
.Log(CoreEventId.FirstWithoutOrderByAndFilterWarning)))
.MaxBatchSize(1);
return builder;
}
Expand Down

0 comments on commit 76d3da5

Please sign in to comment.