Skip to content

Commit d804628

Browse files
committed
chore(#117): remove deprecated constructor
1 parent 18ae7c8 commit d804628

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/JsonApiDotNetCore/Data/DefaultEntityRepository.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@ public class DefaultEntityRepository<TEntity>
1818
IEntityRepository<TEntity>
1919
where TEntity : class, IIdentifiable<int>
2020
{
21-
[Obsolete("DbContext is no longer directly injected into the ctor. Use JsonApiContext.GetDbContextResolver() instead")]
22-
public DefaultEntityRepository(
23-
DbContext context,
24-
ILoggerFactory loggerFactory,
25-
IJsonApiContext jsonApiContext)
26-
: base(context, loggerFactory, jsonApiContext)
27-
{ }
28-
2921
public DefaultEntityRepository(
3022
ILoggerFactory loggerFactory,
3123
IJsonApiContext jsonApiContext)

0 commit comments

Comments
 (0)