File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/Microsoft.Data.SqlClient
src/Microsoft/Data/SqlClient Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ public partial class SqlBatchCommand : System.Data.Common.DbBatchCommand
70
70
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommand.xml' path='docs/members[@name="SqlBatchCommand"]/DbParameterCollection/*'/>
71
71
protected override System . Data . Common . DbParameterCollection DbParameterCollection => throw null ;
72
72
}
73
+ /// <inheritdoc cref="System.Data.Common.DbBatchCommandCollection"/>
73
74
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/SqlBatchCommandCollection/*'/>
74
75
public class SqlBatchCommandCollection : System . Data . Common . DbBatchCommandCollection , System . Collections . Generic . IList < SqlBatchCommand >
75
76
{
Original file line number Diff line number Diff line change 9
9
10
10
namespace Microsoft . Data . SqlClient
11
11
{
12
+ /// <inheritdoc cref="DbBatchCommandCollection"/>
12
13
/// <include file='../../../../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/SqlBatchCommandCollection/*'/>
13
14
public class SqlBatchCommandCollection : DbBatchCommandCollection , IList < SqlBatchCommand >
14
15
{
@@ -76,7 +77,6 @@ SqlBatchCommand IList<SqlBatchCommand>.this[int index]
76
77
/// <inheritdoc />
77
78
protected override void SetBatchCommand ( int index , DbBatchCommand batchCommand )
78
79
=> _list [ index ] = ( SqlBatchCommand ) batchCommand ;
79
-
80
80
}
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments