Browse Source
Merge pull request #6589 from abpframework/maliming/EfCoreRepository-4.x
Make GuidGenerator in EfCoreRepository public.
pull/6605/head
Halil İbrahim Kalkan
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/Domain/Repositories/EntityFrameworkCore/EfCoreRepository.cs
|
|
|
@ -30,7 +30,7 @@ namespace Volo.Abp.Domain.Repositories.EntityFrameworkCore |
|
|
|
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) |
|
|
|
{ |
|
|
|
|