@@ -49,7 +49,7 @@ public SqlColumn this[int index]
4949
5050 /// <summary>
5151 /// Gets the column with the specified <paramref name="name"/>
52- /// or <c> null</c > if collection doesn't contain such a column.
52+ /// or <see langword=" null"/ > if collection doesn't contain such a column.
5353 /// </summary>
5454 public SqlColumn this [ string name ] =>
5555 string . IsNullOrEmpty ( name ) ? null : columnList . Find ( column => Comparer . Equals ( column . Name , name ) ) ;
@@ -81,7 +81,7 @@ public void Add(SqlExpression expression) =>
8181 /// Builds a <see cref="SqlColumnRef"/> by the specified <paramref name="expression"/> and
8282 /// <paramref name="alias"/>; then adds it to the end of the <see cref="SqlColumnCollection"/>.
8383 /// </summary>
84- /// <exception cref="ArgumentNullException"><paramref name="alias"/> is <c> null</c >.</exception>
84+ /// <exception cref="ArgumentNullException"><paramref name="alias"/> is <see langword=" null"/ >.</exception>
8585 public void Add ( SqlExpression expression , string alias )
8686 {
8787 ArgumentValidator . EnsureArgumentNotNull ( alias , nameof ( alias ) ) ;
@@ -92,7 +92,7 @@ public void Add(SqlExpression expression, string alias)
9292 /// Builds a <see cref="SqlColumnRef"/> by the specified <paramref name="expression"/> and <paramref name="alias"/>
9393 /// then inserts it into <see cref="SqlColumnCollection"/> at the specified <paramref name="index"/>.
9494 /// </summary>
95- /// <exception cref="ArgumentNullException"><paramref name="alias"/> is <c> null</c >.</exception>
95+ /// <exception cref="ArgumentNullException"><paramref name="alias"/> is <see langword=" null"/ >.</exception>
9696 /// <exception cref="IndexOutOfRangeException"><paramref name="index"/> is less than <c>0</c>.
9797 /// -or- <paramref name="index"/> is greater than <see cref="Count"/>.</exception>
9898 public void Insert ( int index , SqlExpression expression , string alias )
0 commit comments