Skip to content
This repository was archived by the owner on Apr 20, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion NetCoreEntityFramework/NetCoreEntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Nodes.NetCore.EntityFramework.Helpers</PackageId>
<Version>2.1.2</Version>
<Version>2.1.3</Version>
<Authors>Nodes</Authors>
<Company>Nodes</Company>
<Product>.NET Core Entity Framework Helpers</Product>
Expand All @@ -13,6 +13,7 @@
<PackageIcon>Nodes logo.png</PackageIcon>
<RepositoryUrl>https://github.com/nodes-dotnet/net-core-entity-framework</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NetCoreEntityFramework/Repositories/EntityRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntit
{
protected DbContext Context { get; }

protected EntityRepository(DbContext context)
public EntityRepository(DbContext context)
{
Context = context;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Nodes.NetCore.EntityFramework.Repositories
{
public class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
{
protected EntitySoftDeleteRepository(DbContext context) : base(context)
public EntitySoftDeleteRepository(DbContext context) : base(context)
{
}

Expand Down