We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f28e9 commit 3eb6bf4Copy full SHA for 3eb6bf4
1 file changed
Helper/QueryHelper.cs
@@ -1,8 +1,6 @@
1
-using DbSyncKit.DB.Attributes;
2
-using DbSyncKit.DB.Interface;
+using DbSyncKit.DB.Interface;
3
using DbSyncKit.DB.Manager;
4
-using System.Text;
5
-using System.Text.RegularExpressions;
+using System.Reflection;
6
7
namespace DbSyncKit.DB.Helper
8
{
@@ -100,5 +98,10 @@ public List<string> GetIdentityColumns<T>() where T : IDataContractComparer
100
98
return CacheManager.GetIdentityColumns(typeof(T));
101
99
}
102
+ public PropertyInfo[] GetComparableProperties<T>() where T: IDataContractComparer
+ {
103
+ return CacheManager.GetComparableProperties(typeof(T));
104
+ }
105
+
106
107
0 commit comments