Skip to content

Commit

Permalink
(GH-586) renamed ef core primary key convention helper class
Browse files Browse the repository at this point in the history
  • Loading branch information
johelvisguzman committed Jun 25, 2021
1 parent 9a04b8b commit 16dd8f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void ConfigureConventions(DbContext context)
{
Conventions = new RepositoryConventions()
{
PrimaryKeysCallback = type => EfCoreRepositoryContextConventionHelper.GetPrimaryKeyPropertyInfos(context, type)
PrimaryKeysCallback = type => EfCoreRepositoryConventionHelper.GetPrimaryKeyPropertyInfos(context, type)
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Linq;
using System.Reflection;

internal static class EfCoreRepositoryContextConventionHelper
internal static class EfCoreRepositoryConventionHelper
{
public static PropertyInfo[] GetPrimaryKeyPropertyInfos(DbContext context, Type entityType)
{
Expand Down

0 comments on commit 16dd8f3

Please sign in to comment.