Tagged Questions
The unitofworkapplication tag has no wiki summary.
5
votes
2answers
249 views
NHibernate Session Management Advice
I need some advice on NHibernate Session Management for a C# WinForms application.
I am currently porting an application to use NHibernate. I am also employing a UnitOfWork pattern as described in ...
3
votes
2answers
487 views
NHibernate Unit Of Work - Multiple Sessions (WinForms)
I am struggling with the learning curve for NHibernate.
We are currently porting our C# Winforms application to use NHibernate and are employing the Unit Of Work (UnitOfWork) as detailed by Gabriel ...
2
votes
3answers
308 views
ASP.NET MVC - Using UnitOfWork
I'm currently working on a web app which consist of 6 layers:
Web (reference to ViewModels and Controllers)
ViewModels
Controllers
Services (reference to Data and Entities)
Data (reference to ...
2
votes
1answer
240 views
Unit of Work pattern and persistence
I have been reading about Unit of Work pattern but I am confused about how the UoW actually persists data.
When we commit the changes, UoW should iterate through the list of Added, Updated and ...
1
vote
5answers
447 views
unit of work pattern and history
In this page:
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/transactions.html
I have read that: "A unit of work is a design pattern described by Martin Fowler"
Did Martin Fowler ...
1
vote
2answers
279 views
How to create a static UnitOfWork for entity framework 4?
Considering this class
public class XQueries
{
public IQueryable Query1()
{
using (XEntities context = new XEntities())
{
return something;
}
}
...
1
vote
1answer
779 views
Rhino UnitOfWorkApplication + Castle Automatic Transaction Management application does not flush automatically on request end
I'm building ASP.Net MVC aplication based on UnitOfWorkApplication and I'd like to use Castle ATM facility. At the moment I've problem with flushing the session on request end. My service class (which ...
0
votes
0answers
108 views
How To Setup Rhino Commons Nhibernate for a Multiple DataBase Connection?
I want to setup a multible Databases using NHibernate Rhino Commons library, i stooped at the point where Windsor is trying to initialize MultipleNHibernateUnitOfWorkFacility Facility but it cant ...
0
votes
1answer
187 views
Update parent table from child in Asp.net and fluent nhibernate
I'm trying to update the data in the parent table that is referenced in the child table from the child's view in Asp.net.
I mapped the tables using Fluent Nhibernate.
In the child table, the ...
0
votes
2answers
1k views
Using Repository and Unit of Work patterns with Entity Framework 4.0 and MVC 2
I'm following this article Using Repository and Unit of Work patterns with Entity Framework 4.0.
I'm tying to implement the Repository and Unit of work pattern, using Asp.Net MVC 2 and Entity ...
0
votes
1answer
406 views
Is it possible to use Rhino.Commons.HttpModules.UnitOfWorkApplication in ASP.NET 3.5 (not MVC)?
I tried to find tutorials/articles on using UnitOfWorkApplication in ASP.NET (not MVC). But all information I can find is about how to use it in ASP.NET MVC.
Does it mean that it is not possible to ...