From 12edcf10a3ac22eab0eac918351b650f4d9d4728 Mon Sep 17 00:00:00 2001 From: RohitM-IN Date: Wed, 3 Jan 2024 02:30:23 +0530 Subject: [PATCH] Fixed bug related to Edits not being Shown --- src/DbSyncKit.DB.csproj | 6 +++--- src/Helper/QueryHelper.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/DbSyncKit.DB.csproj b/src/DbSyncKit.DB.csproj index 1ee9cce..021aabf 100644 --- a/src/DbSyncKit.DB.csproj +++ b/src/DbSyncKit.DB.csproj @@ -5,9 +5,9 @@ enable enable True - 1.0.0.0 - 1.0.0.0 - 1.0.0.0 + 1.0.1.0 + 1.0.1.0 + 1.0.1.0 README.md https://dbsynckit.rohit-mahajan.in/ https://github.com/RohitM-IN/DbSyncKit diff --git a/src/Helper/QueryHelper.cs b/src/Helper/QueryHelper.cs index 202dc48..7351672 100644 --- a/src/Helper/QueryHelper.cs +++ b/src/Helper/QueryHelper.cs @@ -119,7 +119,7 @@ public PropertyInfo[] GetComparableProperties() where T: IDataContractCompare /// An array of objects representing the key properties of type . public PropertyInfo[] GetKeyProperties() where T : IDataContractComparer { - return CacheManager.GetComparableProperties(typeof(T)); + return CacheManager.GetKeyProperties(typeof(T)); } }