Top "Unit-of-work" questions

One of the common design patterns in enterprise software development which allows one to maintain a list of objects affected by a business transaction and coordinates the writing out of changes and the resolution of concurrency problems.

Correct disposing using Repository and Unit Work patterns with Entity Framework?

Cheers!I have some doubts about using Unit of Work with Repository. Specially a role of child context from Entity …

c# entity-framework-4 repository dispose unit-of-work
Unit of work + repository + service layer with dependency injection

I am designing a web application and a windows service and want to use the unit of work + repository layer …

asp.net-mvc design-patterns dependency-injection repository-pattern unit-of-work
Entity Framework using Repository Pattern, Unit of Work and Unity

Using a combination provided from this example and this implementation I am trying to create a solution that decouples the …

entity-framework inversion-of-control unity-container repository-pattern unit-of-work
ASP.NET Identity with Repository and Unit of Work

I'm learning Repository and Unit of Work patterns in ASP.NET MVC 5 application with Entity Framework 6. I had already read …

c# entity-framework repository-pattern asp.net-identity unit-of-work
Unit of Work with Repository Pattern MVC 5 & EF 6

I put together a sample of how I am using the Unit of Work & Repository pattern based on my …

c# asp.net-mvc entity-framework repository-pattern unit-of-work
Is Unit Of Work and Repository Patterns very useful for big projects?

I'm starting a new web project using ASP.NET Webforms + EF4. I'm trying to apply a repository pattern with a …

c# domain-driven-design repository-pattern unit-of-work
Benefit of using Unit of Work and Repository Patterns with Entity Framework

According to MSDN, DbContext is defined as: Represents a combination of the Unit-Of-Work and Repository patterns and enables you to …

.net asp.net-mvc entity-framework repository unit-of-work
Using DTO to transfer data between service layer and UI layer

I've been trying to figure this out for days but there seems to be very little info on this particular …

asp.net-mvc repository dto unit-of-work n-tier-architecture
Singleton Per Call Context (Web Request) in Unity

A few days ago, I had an issue with ASP.Net threading. I wanted to have a singleton object per …

asp.net singleton unity-container unit-of-work lifetime
Entity Framework returning old data

I have a problem with EF not returning the newest data in a 3 layered WPF application, and I suspect it …

c# entity-framework dependency-injection unity-container unit-of-work