Fix #1492 MongoDbRepositoryRegistrar bug.

pull/1494/head
maliming 6 years ago
parent 8b8e51cf9f
commit ce54914459

@ -20,7 +20,7 @@ namespace Volo.Abp.MongoDB.DependencyInjection
protected override Type GetRepositoryType(Type dbContextType, Type entityType)
{
return typeof(MongoDbRepository<,,>).MakeGenericType(dbContextType, entityType);
return typeof(MongoDbRepository<,>).MakeGenericType(dbContextType, entityType);
}
protected override Type GetRepositoryType(Type dbContextType, Type entityType, Type primaryKeyType)

Loading…
Cancel
Save