Tagged Questions
The isession tag has no wiki summary.
7
votes
1answer
2k views
Removing objects from NHibernate second level cache
I just started thinking about using the NHibernate second level cache in one of my apps. I would probably use the NHibernate.Caches.SysCache.SysCacheProvider which relies on ASP.net cache.
Enabling ...
4
votes
4answers
505 views
How to pass unit of work container into constructor of repository using dependency injection
I'm trying to work out how to complete my implementation of the Repository pattern in an ASP.NET web application.
At the moment, I have a repository interface per domain class defining methods for ...
4
votes
5answers
416 views
Create an instance of ISession per ViewModel
here is my problem: I'm building a desktop application, with the following tools:
Caliburn
Ninject
NHibernate
All my view models and repositories are instanciated with Ninject. My repositories all ...
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
1answer
170 views
Where can I find documentation for NHibernate ISession.Persist()?
NHibernate's ISession exposes a method Persist() with two overloads. I cannot find documentation on this method anywhere. It's not even mentioned in the NHibernate reference material on ...
3
votes
3answers
484 views
How to dispose NHibernate ISession in an ASP.NET MVC App
I have NHibernate hooked up in my asp.net mvc app.
Everything works fine, if I DON'T dispose the ISession. I have read however that you should dispose, but when I do, I get random "Session is closed" ...
2
votes
6answers
154 views
NHibernate ISession.Save() - Why is this persisting my entities immediately?
I am creating a large number of entities with NHibernate, attaching them to my ISession, and then using a transaction to commit my changes to the database. Code sample is below:
ISession _context = ...
1
vote
3answers
222 views
How to get NHibernate ISession to cache entity not retrieved by primary key
My 'user' entity is almost always retrieved by username, rather than by its integer surrogate key. Because the username is not the primary key, this means that the ISession won't cache it and ...
1
vote
1answer
432 views
EF4 ObjectContext vs NHibernate Session
I'm trying to learn some NHibernate after diving into EF4. Is the equivalent of the EF4 ObjectContext (or DbContext) the NHibernate Session?
Specifically, in EF4, you derive from ObjectContext (or ...
1
vote
1answer
344 views
Lazy initializing ISession using WebSessionContext/CurrentSessionContext
I'm starting a new project with NHibernate 3 and I'm trying to use the CurrentSessionContext API with WebSessionContext to manage my ISession object.
In previous projects I always managed that ...
1
vote
1answer
192 views
Within ActiveRecordMediator, should use Execute or CreateSession?
Suppose I'm going to do something that needs access to NHibernate's ISession. For example running a Sql query via ISQLQuery or running a LINQ-to-NHibernate via session.Linq<MyType>(). I know ...
1
vote
2answers
65 views
About NHibernate's ISession
In this question, the user asks the better way to close sessions because he was having some errors.
The most voted answer is Ayende's answer that says:
You should always use session.Dispose(); ...
1
vote
2answers
122 views
ISession per Request (Only when necessary)
I'm developing an application (asp.net mvc) and I'm using ISession per request (in globa.asax I use Bind and Unbind in Begin_Request event and End_Request event). Everything works fine but sometimes ...
1
vote
2answers
381 views
Nhibernate in asp,net ISession help
We're using nhibernate in and asp.net MVC application.
We are implementing the Session per Request pattern, via a httpModule.
It looks pretty straight forward, but when we run with NHibernate ...
1
vote
3answers
395 views
NHibernate not persisting collections
I have a rather strange error with NHibernate. I am was having error with ISession been shared by across threads and got this resolved by supplying my own ADO.NET connection like:
...
0
votes
0answers
29 views
NHibernate used as caching strategy?
Is it bad practice to use a long living ISession (with auto release mode) to create readonly repositories with caching? ... or should we use IStatelessSession and another strategy for caching?
0
votes
1answer
52 views
should we use our own Unit of work on top of Nhibernate ISession
I just start learning castle windsor. Have a quesiton about if I should add another unit of work on top of Nhibernate ISession.
I found this on windsor tutorial.
...
0
votes
2answers
106 views
Stumped: Custom NHibernate Session management gives “Specified cast is not valid” exception (C#)
I am trying to implement some proper NHibernate session management in my console application, but running into some very weird problems. One moment everything seems to be working fine, but randomly, ...
0
votes
1answer
40 views
NHibernate 3, HttpModule and Errors
BACKGROUND:
Creating the start of a web app with NH3 using HttpModule to manage the creation/commit/rollback of the transaction and session.
In a scenario where an error occurs, i would like to ...
0
votes
1answer
150 views
How to create session with SQL Server in fluent hibernate
I'm getting exception while creating connection with SQL Server.
ISession factory is shown below from which I'm getting exception:
private static ISessionFactory CreateSessionFactory()
{
return ...
0
votes
1answer
163 views
NHibernate 2.1.2 connection open upon factory.OpenSession()?
When I open a session with
var session = factory.OpenSession();
and check session.Connection.State it is Open. The "Connection" is of type SqlConnection.
This means that by creating the session the ...
0
votes
0answers
80 views
NHibernate in multi-tier statefull applications
Currently I use Onion architecture with domain driven design, IoC, MVP etc... The app is just talking directly to database, but I am worried about scaling to client - server architecture later ...
0
votes
0answers
294 views
fluent nhibernate session closing before request ends in asp.net mvc 3 with custom membership provider
I'm using mvc 3 with fluent nhibernate. I have got a peculiar problem with sessions!
I am using structure map to register and inject dependencies as below:
ObjectFactory.Initialize(x =>
...
0
votes
1answer
122 views
nhibernate one isession same idbconnection
I have some code doing 2 times session.Get(id) on the same ISession. I can see that the ISession creates 2 idbconnections. I guess this is because of some kind of configuration. I would like it to do ...
0
votes
2answers
70 views
nhibernate lazyload creates new isession
Can I prevent nhibernate creating new ISessions when lazy loading? How?
Correction: I mean new IDbConnections. I have implemented my own DriverConnectionProvider and I see it gets called due to lazy ...
0
votes
2answers
123 views
ActiveRecordBase.FindAll() does not allow first level cache?
NHibernate's first level cache is available when one use same session. ActiveRecordBase.FindAll() each time creates a new ISession. So such a following can not profit from first level cache:
void ...
0
votes
4answers
244 views
NHibernate is loading same object multiple times - please help!
I've just been reading the trace for one of my ASP.NET pages and I've noticed that the page user is being loaded from the database each time the user is required. Since each ISession is supposed to ...
0
votes
2answers
88 views
How to Queue The Add Operation in NHibernate?
Is there some way to queue the "Add" operation in NHibernate, just like Linq to SQL and Entity Framework does?
I want to add an entity to the repository, but I don't want to save it to the database ...
0
votes
1answer
226 views
IsessionFactory Issue
I am getting the classic "object reference not set to an instance of a object" error on this line
HttpContext.Items["ISession"] = Configure.GetSessionFactory().OpenSession();
My configure.cs file ...
0
votes
1answer
186 views
Is SessionScope exact equivalent of ISession?
Is Castle ActiveRecord's SessionScope exact equivalent of NHibernate's ISession? If yes, why Castle ActiveRecord has provided a duplicate feature? If no, what are their differences?
0
votes
1answer
103 views
Service Layer: 1 Instance Per Application or Per View Model? (Or: giving each view model its own data context)
I'm building C#/.Net 3.5 app using three layers: UI (view/view models), service, and data access/persistence.
Service Layer:
Each service layer instance is associated with a unique persistence ...
-1
votes
2answers
444 views
How to get the NHibernate ISession that is HttpContextScoped by StructureMap
I'm somewhat new to the MVC framework and in accordance with the following post:
NHibernate with StructureMap I am not sure how to actually get the HttpContextScoped ISession in my controller?
I'm ...
-1
votes
1answer
136 views
Nhibernate Session and ASP.NET
Using NhibernateProfiler we have determined that we are creating an ISession for every http request. However the ISessions never close. We can see in the log where localSession.Close() fires. ...