We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d07698 commit 63e2937Copy full SHA for 63e2937
2 files changed
src/Extensions/DataRowExtensions.cs
@@ -1,4 +1,4 @@
1
-using DbSyncKit.DB.Utils;
+using DbSyncKit.DB.Interface;
2
using System.Data;
3
namespace DbSyncKit.DB.Extensions
4
{
@@ -15,7 +15,7 @@ public static class DataRowExtensions
15
/// <param name="columnName">The name of the column.</param>
16
/// <returns>The value of the specified column, converted to the specified type.</returns>
17
/// <remarks>
18
- /// This extension method is intended for use with classes that inherit from <see cref="DataContractUtility{T}"/>.
+ /// This extension method is intended for use with classes that inherit from <see cref="IDataContractComparer"/>.
19
/// </remarks>
20
public static T GetValue<T>(this DataRow row, string columnName)
21
src/Utils/DataContractUtility.cs
0 commit comments