Skip to content
This repository was archived by the owner on Apr 20, 2024. It is now read-only.

Commit af82135

Browse files
author
Morten Turn Pedersen
authored
Merge pull request #36 from nodes-dotnet/hotfix/repositories-non-abstract
Hotfix/repositories non abstract
2 parents 5b80663 + bb601f8 commit af82135

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

NetCoreEntityFramework/NetCoreEntityFramework.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<PackageId>Nodes.NetCore.EntityFramework.Helpers</PackageId>
6-
<Version>2.1.1</Version>
6+
<Version>2.1.2</Version>
77
<Authors>Nodes</Authors>
88
<Company>Nodes</Company>
99
<Product>.NET Core Entity Framework Helpers</Product>

NetCoreEntityFramework/Repositories/EntityRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Nodes.NetCore.EntityFramework.Repositories
1212
{
13-
public abstract class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntity : EntityBase
13+
public class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntity : EntityBase
1414
{
1515
protected DbContext Context { get; }
1616

NetCoreEntityFramework/Repositories/EntitySoftDeleteRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Nodes.NetCore.EntityFramework.Repositories
1212
{
13-
public abstract class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
13+
public class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
1414
{
1515
protected EntitySoftDeleteRepository(DbContext context) : base(context)
1616
{

0 commit comments

Comments
 (0)