Skip to content

Commit 2f929dc

Browse files
Doc comment update.
1 parent 12081be commit 2f929dc

1 file changed

Lines changed: 10 additions & 21 deletions

File tree

Core/ExpressiveCommand.cs

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ namespace Open.Database.Extensions;
88
/// </summary>
99
public class ExpressiveCommand : ExpressiveCommandBase<IDbConnection, IDbCommand, IDataReader, DbType, ExpressiveCommand>
1010
{
11-
/// <param name="connectionPool">The pool to acquire connections from.</param>
12-
/// <param name="type">The command type.</param>
13-
/// <param name="command">The SQL command.</param>
14-
/// <param name="params">The list of params</param>
11+
/// <summary>Constructs a <see cref="ExpressiveCommand"/>.</summary>
12+
/// <inheritdoc cref="ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.ExpressiveCommandBase(IDbConnectionPool{TConnection}, CommandType, string, IEnumerable{ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.Param}?)" />
1513
public ExpressiveCommand(
1614
IDbConnectionPool connectionPool,
1715
CommandType type,
@@ -21,10 +19,8 @@ public ExpressiveCommand(
2119
{
2220
}
2321

24-
/// <param name="connFactory">The factory to generate connections from.</param>
25-
/// <param name="type">The command type.</param>
26-
/// <param name="command">The SQL command.</param>
27-
/// <param name="params">The list of params</param>
22+
/// <summary>Constructs a <see cref="ExpressiveCommand"/>.</summary>
23+
/// <inheritdoc cref="ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.ExpressiveCommandBase(IDbConnectionFactory{TConnection}, CommandType, string, IEnumerable{ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.Param}?)" />
2824
public ExpressiveCommand(
2925
IDbConnectionFactory connFactory,
3026
CommandType type,
@@ -34,11 +30,8 @@ public ExpressiveCommand(
3430
{
3531
}
3632

37-
/// <param name="connection">The connection to execute the command on.</param>
38-
/// <param name="transaction">The optional transaction to execute the command on.</param>
39-
/// <param name="type">The command type.</param>
40-
/// <param name="command">The SQL command.</param>
41-
/// <param name="params">The list of params</param>
33+
/// <summary>Constructs a <see cref="ExpressiveCommand"/>.</summary>
34+
/// <inheritdoc cref="ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.ExpressiveCommandBase(TConnection, IDbTransaction?, CommandType, string, IEnumerable{ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.Param}?)" />
4235
public ExpressiveCommand(
4336
IDbConnection connection,
4437
IDbTransaction? transaction,
@@ -49,10 +42,8 @@ public ExpressiveCommand(
4942
{
5043
}
5144

52-
/// <param name="transaction">The transaction to execute the command on.</param>
53-
/// <param name="type">The command type.</param>
54-
/// <param name="command">The SQL command.</param>
55-
/// <param name="params">The list of params</param>
45+
/// <summary>Constructs a <see cref="ExpressiveCommand"/>.</summary>
46+
/// <inheritdoc cref="ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.ExpressiveCommandBase(IDbTransaction, CommandType, string, IEnumerable{ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.Param}?)" />
5647
public ExpressiveCommand(
5748
IDbTransaction transaction,
5849
CommandType type,
@@ -62,10 +53,8 @@ public ExpressiveCommand(
6253
{
6354
}
6455

65-
/// <param name="connection">The connection to execute the command on.</param>
66-
/// <param name="type">The command type.</param>
67-
/// <param name="command">The SQL command.</param>
68-
/// <param name="params">The list of params</param>
56+
/// <summary>Constructs a <see cref="ExpressiveCommand"/>.</summary>
57+
/// <inheritdoc cref="ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.ExpressiveCommandBase(TConnection, CommandType, string, IEnumerable{ExpressiveCommandBase{TConnection, TCommand, TReader, TDbType, TThis}.Param}?)" />
6958
public ExpressiveCommand(
7059
IDbConnection connection,
7160
CommandType type,

0 commit comments

Comments
 (0)