Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
2answers
8k views

Generic Repository With EF 4.1 what is the point

As i dig deeper in to the DbContext, DbSet and associated interfaces, I am wondering why you would need to implement a seperate "Generic" Repository around these implementations? It looks like ...
24
votes
3answers
4k views

Singleton Per Call Context (Web Request) in Unity

A few days ago I had this issue with ASP.Net threading. I wanted to have a singleton object per web request. I actually need this for my unit of work. I wanted to instantiate a unit of work per web ...
11
votes
7answers
729 views

Is transactional behaviour ever needed outside of databases?

I wouldn't dare do anything complex in a database without transactions. There is nearly always a simple to use in-built command. But when you start working with other persistent data you just don't ...
11
votes
4answers
12k views

Unit of Work pattern in .NET [closed]

Are there concrete examples of a simple Unit of Work pattern in C# or Visual Basic that would handle the following scenario? I'm writing a Windows Forms application in which a customer can have ...
10
votes
3answers
293 views

How to implement Unit of Work that works with EF and NHibernate

I was working on a Unit of Work implementation that works both in Entity Framework 4.1 and NHibernate. Find below the skeleton of my implementation details IUnitOfWork definition public interface ...
10
votes
3answers
3k views

Using Unit of Work design pattern / NHibernate Sessions in an MVVM WPF

I think I am stuck in the paralysis of analysis. Please help! I currently have a project that Uses NHibernate on SQLite Implements Repository and Unit of Work pattern: ...
9
votes
1answer
501 views

Need a simple example of using nhibernate + unit of work + repository pattern + service layer + ninject

I am using nhibernate + fluent nhibernate asp.net mvc 3 ninject Currently I am using nhibernate, ninject with the repository pattern and service layers. So I have this ninject public class ...
9
votes
3answers
385 views

At which line in the following code should I commit my unit of work?

I have the following code which is in a transaction. I'm not sure where/when I should be commiting my unit of work. On purpose, I've not mentioned what type of Respoistory i'm using - eg. ...
8
votes
2answers
1k views

Implementing UnitOfWork with Castle.Windsor

Simple question. How do I use UnitOfWork with Castle.Windsor, nHibernate, and ASP.NET MVC? Now for the extended details. In my quest to understand the UnitOfWork pattern, I'm having difficulty ...
8
votes
1answer
293 views

Am i using correctly Unit of Work here? (Entityi Framework 4 POCO)

I found some examples of how to create unit of work with ef4, i haven't used di/ioc and i would like to keep things simple and this an example (90% inspired) and i think it's ok but since i am looking ...
8
votes
1answer
918 views

Not sure how to use Dependency Injection + Repository Pattern + Unit Of Work Pattern with a WinForm application

(apologies for the Wall Of Text... :) ) Summary Using Dependency Injection with my Winfor application is creating a large number of Repository Context's. I'm not sure if the way i'm using this is ...
8
votes
3answers
859 views

Interaction between unit of work and repository patterns

After reading thorugh plenty of articles I am still unsure about the responsibilities of Unit of Work pattern when interacting with repositories. Repositories are responsible for loading and saving ...
8
votes
1answer
2k views

Unit of work and the repository pattern

I have a repository pattern setup using NHibernate. The base class looks like this: public interface IUnitOfWork : IDisposable { void Commit(); void Rollback(); } // generic NHibernate ...
7
votes
4answers
418 views

How should you use UnitofWork pattern on my asp.net-mvc site (using nhibernate and ninject)

i have followed the pattern on this site to hook up ninject and nhibernate to my asp.net-mvc3 site. Here is the code in my global.aspx.cs: internal class ServiceModule : NinjectModule { public ...
6
votes
2answers
315 views

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 unit of work pattern following this tutorial : ...
6
votes
2answers
3k views

Is UnitOfWork and GenericRepository Pattern redundant In EF 4.1 code first?

Wondering if I need to use the Genericrepository pattern and UnitOfWork to mock the repository.I am using MOQ.Is it now redundant since I have noticed that EF 4.1 has IDBSet. I have not figured out ...
6
votes
3answers
297 views

UnitOfWork in Action Filter seems to be caching

I have an MVC 3 site that uses IoC (Unity), and my model is generated w/ EF4 and POCOs. I am using an action filter to commit my UnitOfWork: public class UseUnitOfWorkAttribute : ...
6
votes
4answers
1k views

Implementing the Repository Pattern in ASP.NET MVC

I am still having a hard time wrapping my head around this. I want to separate my layers (dlls) like so: 1) MyProject.Web.dll - MVC Web App (Controllers, Models (Edit/View), Views) 2) ...
6
votes
2answers
265 views

What is the meaning of “Unit of Work” concept in NHibernate and other ORMs?

What is the meaning of "Unit of Work" concept in NHibernate and other ORMs?
6
votes
4answers
736 views

How to implement Unit of work in MVC: Responsibility

Who has the responsability Who has the responsibility to start and finish the Unit of work in a MVC architecture?
5
votes
1answer
243 views

Simple Data Unit of Work implementation

I'm trying to find an example implementation of the Unit Of Work pattern in Simple.Data. Does anybody have one? I'm currently using non generic repositories and have been told that implementing UoW is ...
5
votes
4answers
431 views

Java/Python communication via message broker

What is a good solution for communication via message broker that supports both (C)Python and Java/JMS applications? My particular requirements are: open source solution Available on Linux-based ...
5
votes
3answers
412 views

Practical usage of the Unit Of Work & Repository patterns

I'm building an ORM, and try to find out what are the exact responsibilities of each pattern. Let's say I want to transfer money between two accounts, using the Unit Of Work to manage the updates in a ...
5
votes
4answers
474 views

Repository + UnitOfWork pattern for entity framework

I was searching the net up and down and I didn't manage to find a suitable design for my application. I am looking for Repository+UnitOfWork pattern that will manage connections and dispose them ...
5
votes
4answers
221 views

How can Dispose() know it was called because of an exception?

I'd like to write a simple unit of work class that would behave like this: using (var unitOfWork = new UnitOfWork()) { // Call the data access module and don't worry about transactions. // Let ...
5
votes
1answer
590 views

UnitOfWork Implementation

Ive been able to implement a little cool unit of work to work with entity framework. I came up with .. public class UnitOfWork : IUnitOfWork { private Database _database; private ...
5
votes
1answer
754 views

ASP.NET MVC, Ninject, single instance per request for multiple constructors

Im trying to implement an unit of work pattern by passing an unit of work instance into my repositories. Relevant code from Global.asax. public class SiteModule : NinjectModule { public override ...
5
votes
1answer
836 views

Ways of implementing Unit of Work in ASP.NET MVC

I'm currently researching how to add the Unit of Work pattern to my existing ASP.NET MVC application that uses NHibernate. I'm seeing a lot of variety in the various implementations and I'm having ...
5
votes
2answers
1k views

Entity Framework with multiple edmx

Let's say I have in my database multiple db schema for example : HumanRessources and Inventory. In each of those schema contains multiple tables. Do you usually split your DB into multiple edmx or ...
5
votes
2answers
1k views

The unit of work pattern within a asp.net mvc application

I have been looking at this excellant blog titled "NHibernate and the Unit of Work Pattern" and have a question regarding the best place to use UnitOfWork.Start in a asp.net mvc project. My SLN is ...
5
votes
3answers
889 views

Unit of Work Design Pattern

Does anyone have any good links about a practical example of Unit of Work pattern with LINQ to SQL
4
votes
2answers
53 views

UOW and repositories in an Entity Framework asp.net application

I have just started reading up on using the repository and unit of work patterns. I am currently trying to use it with Entity Framework in an asp.net web forms application. I do however have a ...
4
votes
3answers
350 views

Repository/Unit of Work pattern - How to query a repository for objects meeting certain criteria?

I have a standard repository interface in C# which includes the following methods: IEnumerable<T> GetAll(); T GetById(int id); void Delete(T entity); void Add(T entity); At my domain layer ...
4
votes
3answers
456 views

Unit of work, rollback options

I'm trying to build a system which follows the repository and unit of work patterns to allow persistence ignorance/unit testing, etc etc. I'm looking for advice on dealing with Rollback. Ideally I ...
4
votes
2answers
336 views

Single threading a task without queuing further requests

I have a requirement for a task to be executed asynchronously while discarding any further requests until the task is finished. Synchronizing the method just queues up the tasks and doesn't skip. I ...
4
votes
3answers
598 views

EF4 - Repositories and Unit of Work

I've been searching for the 'right' way to integrate repositories and unit of work into my project, yet I keep running across different variations. Some have the repositories as members of a uow ...
4
votes
1answer
2k views

Entity Framework 4 - Where to put “ApplyCurrentValues” Logic?

I'm using the "stub technique" to update my POCO's (used in a detached context, ASP.NET MVC). This is the code i currently have in my controller (which works): [HttpPost] public ActionResult ...
4
votes
3answers
421 views

Asp.Net MVC UNitOfWork and MySQL and Sleeping Connections

I have a MVC web app that is based on the following architecture Asp.Net MVC2, Ninject, Fluent NHibernate, MySQL which uses a unit of work pattern. Every connection to MySQL generates a sleep ...
4
votes
1answer
752 views

Why are these two sql statements deadlocking? (Deadlock graph + details included)

I've got the following deadlock graph that describes two sql statements that are deadlocking each other. I'm just not sure how to analyse this problem and then fix up my sql code to prevent this from ...
4
votes
1answer
1k views

Unity framework - reusing instance

nobody loved my first question about this: http://stackoverflow.com/questions/2407636/creating-entity-framework-objects-with-unity-for-unit-of-work-repository-pattern so I've managed to rephrase it ...
3
votes
1answer
218 views

How do I rollback a transaction using Unit of Work and Repository patterns?

I have a user repository, which does all the user data access. I also have a unit of work class that manages the connection and transaction for my repositories. How do I effectively rollback a ...
3
votes
4answers
189 views

Generics problem with Unit of Work Pattern

I need some help with the design of the Unit of Work + Repository + IoC pattern. I have several interfaces defined as follows: public interface IRepository<T> { T GetEntity(int id); ...
3
votes
2answers
327 views

Exception handling in entity framework, MVC with repositoy pattern

I am using entity framework for my project with MVC as front end. And I have implemented unitof work pattern with repository pattern. I have service layer on top of repositories to handle business. My ...
3
votes
2answers
124 views

Why is it bad to implicitly commit a Unit of Work in a Dispose() method?

I wrote a UnitOfWork implementation that does not expose a public Commit() method. Instead the UnitOfWork implements IDisposable and the Commit is executed in the Dispose() method. I don't see any ...
3
votes
3answers
754 views

Entity Framework + Life Time + StructureMap + Unit Of Work + Windows Forms?

I have a windows service (or a Windows Forms) and when a timer is elapsed, my service completes some tasks. I don't want to use just one Entity Framework context as long as my app is running. I saw ...
3
votes
1answer
292 views

Unit of work and multiple object contexts

I have a question on unit of work and repository implementation using multiple object contexts. My application uses data across 3 databases. So that means I have three object contexts each ...
3
votes
0answers
266 views

What is the correct way to use Unit of Work/Repositories within the business layer?

Having built a small application using the Unit of Work/Repository pattern, I am struggling to understand how to use this properly within my business layer. My application has a a data access layer ...
3
votes
0answers
81 views

Unit of Work and returning newly created Object ID's, or custom Response objects

Unit of Work is a great pattern, and I've been incorporating it into our Repository CUD operations... the one thing I see as a drawback is the inability to return back to the calling code the ID(s) ...
3
votes
5answers
338 views

UnitOfWork (NHibernate), only one active UoW/session at a time? (need advice)

I'm using NHibernate, DI/IoC and the Unit of Work pattern. Most UoW examples I've seen make sure that there can be only one active UoW/session at the same time, for example this one and this one. ...
3
votes
2answers
219 views

Entity Framework UnitOfWork

I am using the UnitOfWork pattern with EF 4, and was just wondering where the implementation of the EFUnitOfWork should live? Should it live in the Repository Layer? I have all of my Interfaces in the ...

1 2 3 4 5