Skip to content

Commit 576c980

Browse files
More xml doc improvements.
1 parent 03e7f6d commit 576c980

20 files changed

Lines changed: 1244 additions & 1657 deletions

Core/Core/DbConnectionProvider.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ public TConnection Take()
3535
/// <inheritdoc />
3636
public void Give(IDbConnection connection)
3737
{
38-
if (connection is null) throw new ArgumentNullException(nameof(connection));
39-
if (connection != Connection) throw new ArgumentException("Does not belong to this provider.", nameof(connection));
38+
if (connection is null)
39+
throw new ArgumentNullException(nameof(connection));
40+
if (connection != Connection)
41+
throw new ArgumentException("Does not belong to this provider.", nameof(connection));
4042
Contract.EndContractBlock();
4143

4244
if (TakenConnectionState == ConnectionState.Closed)

Core/Core/QueryResult.cs

Lines changed: 105 additions & 59 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)