Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist authored Sep 14, 2023
1 parent 5c10aa1 commit 1a7399c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AdoNet/Shared/Storage/RelationalStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ private async Task<Tuple<IEnumerable<TResult>, int>> ExecuteAsync<TResult>(
CommandBehavior commandBehavior,
CancellationToken cancellationToken)
{
using (var connection = DbConnectionFactory.CreateConnection(invariantName, ConnectionString))
using (var connection = DbConnectionFactory.CreateConnection(_invariantName, ConnectionString))
{
await connection.OpenAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
using (var command = connection.CreateCommand())
Expand Down

0 comments on commit 1a7399c

Please sign in to comment.