9
votes
6answers
491 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 …
2
votes
1answer
42 views
Unit of Work - What is the best approach to temporary object storage on a web farm?
I need to design and implement something similar to what Martin Fowler calls the "Unit of Work" pattern. I have heard others refer to it as a "Shopping Cart" pattern, but I'm not convinced the needs …
2
votes
3answers
406 views
When do i need to flush Rhino Commons UnitOfWork?
When using Rhino Commons UnitOfWork (in a UnitOfWorkApplication for ASP-MVC), I like to use the Rhino Repository static class to save entities like this:
Repository<Car>.Save(new Car(Id = 1));
…
2
votes
1answer
343 views
UnitOfWork Implementation
Hello everybody, probably I'm too n00b to understand this, but I was reading the Gabriel Schenker http://nhforge.org/wikis/patternsandpractices/nhibernate-and-the-unit-of-work-pattern.aspx UnitOfWork …
2
votes
1answer
171 views
Unit of work question
How should I use the unit of work pattern in the following scenario:
I'm writing a winforms app.
I have one screen where the user can edit a single order.
On this screen, the user can open another …
2
votes
1answer
699 views
Appling Unit Of Work pattern
I have read in Patterns of Enterprise Application Architecture that a Unit Of Work should only be used in a single Session. So each session should have its only Unit Of Work. Can anybody tell me why I …
1
vote
1answer
55 views
How closely aligned is the Repository patten with either Unit of Work or ActiveRecord
Although I'm not doing full blown DDD, I find the repository pattern appealing and I do try to segment the repositories along aggregate-root boundaries. I'm implementing repositories on top of the …
1
vote
3answers
304 views
Why would I use the Unit of Work pattern on top of an NHibernate session?
When would I write a UoW implementation on top of what is already provided by NHibernate? Any real world examples?
1
vote
2answers
182 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
1
vote
2answers
290 views
Domain Model + LINQ to SQL sample
Hello all,
I wonder if there is an enterprise application sample, designed with Domain Model in the Business Logic layer and LINQ for the Data Mapper? I'm not so sure of how to use the UnitOfWork …
0
votes
2answers
17 views
unit of work and session per request in nhibernate and asp.net mvc
Hi There
I have been using the ncommon framework (http://code.google.com/p/ncommon/) with nhibernate and asp.net mvc. I really like the implementation of the unit of work pattern, but am having …
0
votes
0answers
96 views
Repository pattern with Linq to SQL using IoC, Dependency Injection, Unit of Work
There seems to be lots of examples on implementing Repository pattern for Linq to SQL. Most of them featuring IRepository and DI; Some have implemented Unit of Work and some not. I tried to read as …
0
votes
0answers
63 views
I’m going to write ‘Unit of Work’, please help me find out all gimmicks
Hi everybody,
I'm going to write my own DAL in C#. I decided to use 'Unit of Work' pattern (next mentioned as uow) with request as a scope and Identity map stored in HttpContext.Items.
I have right …
0
votes
2answers
121 views
What design pattern to locate my IUnitOfWork?
I've implemented a repository pattern with persistence ignorance. The repository implementation only interacts with my entity objects, IUnitOfWork and ITable<T> interfaces. The intention is that …
0
votes
1answer
69 views
Datacontext and Unit of work
i am a newbie to Object oriented programming. I have spent 8 years as a procedural programmer. Even though Linq to Sql might not be a good choice going forward, it is still a good lightweight ORM. If …
