Skip to content

Commit

Permalink
Resolved aspnetboilerplate#727: Renamed EntityFrameworkConventionalRe…
Browse files Browse the repository at this point in the history
…gisterer to EntityFrameworkConventionalRegistrar.
  • Loading branch information
hikalkan committed Dec 2, 2015
1 parent b557156 commit 6b7e228
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Abp.EntityFramework/Abp.EntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="EntityFramework\AbpDbContext.cs" />
<Compile Include="EntityFramework\Dependency\EntityFrameworkConventionalRegisterer.cs" />
<Compile Include="EntityFramework\Dependency\EntityFrameworkConventionalRegistrar.cs" />
<Compile Include="EntityFramework\Extensions\QueryableExtensions.cs" />
<Compile Include="EntityFramework\Repositories\AutoRepositoryTypesAttribute.cs" />
<Compile Include="EntityFramework\Repositories\EntityFrameworkGenericRepositoryRegistrar.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public AbpEntityFrameworkModule(ITypeFinder typeFinder)

public override void PreInitialize()
{
IocManager.AddConventionalRegistrar(new EntityFrameworkConventionalRegisterer());
IocManager.AddConventionalRegistrar(new EntityFrameworkConventionalRegistrar());
}

public override void Initialize()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Abp.EntityFramework.Dependency
/// <summary>
/// Registers classes derived from AbpDbContext with configurations.
/// </summary>
public class EntityFrameworkConventionalRegisterer : IConventionalDependencyRegistrar
public class EntityFrameworkConventionalRegistrar : IConventionalDependencyRegistrar
{
public void RegisterAssembly(IConventionalRegistrationContext context)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class EntityFrameworkConventionalRegisterer_Test : TestBaseWithLocalIocMa
[Fact]
public void Should_Set_ConnectionString_If_Configured()
{
new EntityFrameworkConventionalRegisterer()
new EntityFrameworkConventionalRegistrar()
.RegisterAssembly(
new ConventionalRegistrationContext(
Assembly.GetExecutingAssembly(),
Expand Down

0 comments on commit 6b7e228

Please sign in to comment.