Skip to content

Commit

Permalink
Merge pull request #6589 from abpframework/maliming/EfCoreRepository-4.x
Browse files Browse the repository at this point in the history
Make GuidGenerator in EfCoreRepository public.
  • Loading branch information
hikalkan authored Dec 11, 2020
2 parents f5a30af + a29e91d commit eed65fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class EfCoreRepository<TDbContext, TEntity> : RepositoryBase<TEntity>, IE
private readonly IDbContextProvider<TDbContext> _dbContextProvider;
private readonly Lazy<AbpEntityOptions<TEntity>> _entityOptionsLazy;

protected virtual IGuidGenerator GuidGenerator { get; set; }
public virtual IGuidGenerator GuidGenerator { get; set; }

public EfCoreRepository(IDbContextProvider<TDbContext> dbContextProvider)
{
Expand Down

0 comments on commit eed65fd

Please sign in to comment.