Skip to content

Commit 12edcf1

Browse files
committed
Fixed bug related to Edits not being Shown
1 parent 7ebffbd commit 12edcf1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/DbSyncKit.DB.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GenerateDocumentationFile>True</GenerateDocumentationFile>
8-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
9-
<FileVersion>1.0.0.0</FileVersion>
10-
<Version>1.0.0.0</Version>
8+
<AssemblyVersion>1.0.1.0</AssemblyVersion>
9+
<FileVersion>1.0.1.0</FileVersion>
10+
<Version>1.0.1.0</Version>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<RepositoryUrl>https://dbsynckit.rohit-mahajan.in/</RepositoryUrl>
1313
<PackageProjectUrl>https://github.com/RohitM-IN/DbSyncKit</PackageProjectUrl>

src/Helper/QueryHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public PropertyInfo[] GetComparableProperties<T>() where T: IDataContractCompare
119119
/// <returns>An array of <see cref="PropertyInfo"/> objects representing the key properties of type <typeparamref name="T"/>.</returns>
120120
public PropertyInfo[] GetKeyProperties<T>() where T : IDataContractComparer
121121
{
122-
return CacheManager.GetComparableProperties(typeof(T));
122+
return CacheManager.GetKeyProperties(typeof(T));
123123
}
124124

125125
}

0 commit comments

Comments
 (0)