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)
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
How do I add data from a string field to the model as a property?
I am separating a string field I have below by splitting it.
String : D837D323-40A0-1EDD-F365-A55C43725DE0|SPECODE,10A4F529-CDFB-7553-0D05-7C9A36A721F8|SPECODE2,BCAA7E77-DF1D-3135-AD4C-823CEC02ED56|SP...

kozyalcin
Votes: 0
Answers: 1
Does The Unit Of Work Make Sense with Clean Architecture(DDD) Or Just The Repository Is Enough?
I want to ask if it make sense to use the unit of work with repositories on a project following the domain driven design philosophy and clean architecture or it doesn't make more sense and the generic...

Muhamad Eissa
Votes: 0
Answers: 1
Confusing behaviour when handling exceptions in combination with using
Question
I am currently implementing a UOW pattern and have come upon a weird behaviour for exception handling, which is hindering my progress.
My UOW structure looks the following:
public abstract cl...
Dilan Boskan
Votes: 0
Answers: 1