python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Unable to resolve service for type 'BookEvent.Project.UserDomain.UoW.ICommentUnitOfWork' while attempting to activate 'CommentAppService'.)
Hi I am Getting this error BookEvent.Project.UserDomain.AppServices.ICommentAppService Lifetime: Transient ImplementationType: BookEvent.Project.UserDomain.AppServices.CommentAppService': Unable to re...

Nitin Saini
Votes: 0
Answers: 1
How to deal with Forms that are related to more than one entity(Service)?
In my application I use a unit of work and repository pattern.
I have created services to manage crud operations like this
public DepartmentService(IUnitOfWork unitOfWork, IMapper mapper):base(unitOfW...
M.Bouabdallah
Votes: 0
Answers: 1
What is the alternative to unit of work pattern when using generic repository pattern to handle transactions?
I know dbcontext is inherently a repository and unit of work pattern.
However as an abstraction suppose I implement a generic repository pattern, with unit of work pattern, then this can handle situat...
variable
Votes: 0
Answers: 1
Pattern repository with EFCore
I have class who inheritance DbContext, how do I work with it?
class ApplicationDbContext : DbContext
{
public DbSet<MyModel> Models {get;set;}
}
Like this:
class Repository<MyModel>
{...

Aarnihauta
Votes: 0
Answers: 1