TS.EntityFrameworkCore.GenericRepository
8.0.4
dotnet add package TS.EntityFrameworkCore.GenericRepository --version 8.0.4
NuGet\Install-Package TS.EntityFrameworkCore.GenericRepository -Version 8.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TS.EntityFrameworkCore.GenericRepository" Version="8.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TS.EntityFrameworkCore.GenericRepository --version 8.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TS.EntityFrameworkCore.GenericRepository, 8.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TS.EntityFrameworkCore.GenericRepository as a Cake Addin #addin nuget:?package=TS.EntityFrameworkCore.GenericRepository&version=8.0.4 // Install TS.EntityFrameworkCore.GenericRepository as a Cake Tool #tool nuget:?package=TS.EntityFrameworkCore.GenericRepository&version=8.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Dependency
This library was created by .Net 8.0
Install
dotnet add package TS.EntityFrameworkCore.GenericRepository
UnitOfWork Implementation
public class ApplicationDbContext : IUnitOfWork
Create Repository
public selead IUserRepository : IRepository<User>
public selead UserRepository : Repository<User, ApplicationDbContext>, IUserRepository
Use
public selead UserService: IUserService
private readonly IUserRepository _userRepository;
private readonly IUnitOfWork _unitOfWork;
public UserService(IUserRepository userRepository, IUnitOfWork unitOfWork)
{
_userRepository = userRepository;
_unitOfWork = unitOfWork;
}
public async Task AddAsync(User user, CancellationToken cancellationToken)
{
await _userRepository.AddAsync(user, cancellationToken);
await _unitOfWork.SaveChangesAsync(cancellationToken);
}
public async Task<User?> GetByIdAsync(Guid id, CancellationToken cancellationToken)
{
User? user = await _userRepository.FirstOrDefaultAsync(p=> p.Id == id, cancellationToken);
return user;
}
public async Task<IList<User>> GetAllAsync(CancellationToken cancellationToken)
{
IList<User> users = await _userRepository.GetAll().ToListAsync(cancellationToken);
return users;
}
Dependency Injection
builder.Service.AddScoped<IUserRepository, UserRepository>();
builder.Services.AddScoped<IUnitOfWork>(srv => srv.GetRequiredService<ApplicationDbContext>());
Methods
This library have two services. IRepository, IUnitOfWork
public interface IRepository<TEntity>
where TEntity : class
{
IQueryable<TEntity> GetAll();
IQueryable<TEntity> GetAllWithTracking();
IQueryable<TEntity> Where(Expression<Func<TEntity, bool>> expression);
IQueryable<TEntity> WhereWithTracking(Expression<Func<TEntity, bool>> expression);
Task<TEntity> FirstOrDefaultAsync(Expression<Func<TEntity, bool>> expression, CancellationToken cancellationToken = default, bool isTrackingActive = true);
Task<TEntity> GetByExpressionAsync(Expression<Func<TEntity, bool>> expression, CancellationToken cancellationToken = default);
Task<TEntity> GetByExpressionWithTrackingAsync(Expression<Func<TEntity, bool>> expression, CancellationToken cancellationToken = default);
Task<TEntity> GetFirstAsync(CancellationToken cancellationToken = default);
Task<bool> AnyAsync(Expression<Func<TEntity, bool>> expression, CancellationToken cancellationToken = default);
bool Any(Expression<Func<TEntity, bool>> expression);
TEntity GetByExpression(Expression<Func<TEntity, bool>> expression);
TEntity GetByExpressionWithTracking(Expression<Func<TEntity, bool>> expression);
TEntity GetFirst();
Task AddAsync(TEntity entity, CancellationToken cancellationToken = default);
void Add(TEntity entity);
Task AddRangeAsync(ICollection<TEntity> entities, CancellationToken cancellationToken = default);
void Update(TEntity entity);
void UpdateRange(ICollection<TEntity> entities);
Task DeleteByIdAsync(string id);
Task DeleteByExpressionAsync(Expression<Func<TEntity, bool>> expression, CancellationToken cancellationToken = default);
void Delete(TEntity entity);
void DeleteRange(ICollection<TEntity> entities);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.EntityFrameworkCore (>= 8.0.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.