Skip to content

Commit

Permalink
Fixed bug related to Edits not being Shown
Browse files Browse the repository at this point in the history
  • Loading branch information
RohitM-IN committed Jan 2, 2024
1 parent 7ebffbd commit 12edcf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/DbSyncKit.DB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0.0</Version>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<Version>1.0.1.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://dbsynckit.rohit-mahajan.in/</RepositoryUrl>
<PackageProjectUrl>https://github.com/RohitM-IN/DbSyncKit</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/QueryHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public PropertyInfo[] GetComparableProperties<T>() where T: IDataContractCompare
/// <returns>An array of <see cref="PropertyInfo"/> objects representing the key properties of type <typeparamref name="T"/>.</returns>
public PropertyInfo[] GetKeyProperties<T>() where T : IDataContractComparer
{
return CacheManager.GetComparableProperties(typeof(T));
return CacheManager.GetKeyProperties(typeof(T));
}

}
Expand Down

0 comments on commit 12edcf1

Please sign in to comment.