Nhibernate change from lazy=false to fetch=join many-to-many?

You can do that in 2 ways, one is by setting the fetch option in hbm file, next is you can override the default fetch strategy in Query options.

You can do that in 2 ways, one is by setting the fetch option in hbm file, next is you can override the default fetch strategy in Query options. E.g. User user = (User) session.

CreateCriteria(typeof(User)) . SetFetchMode("Permissions", FetchMode. Join) .

Add( Expression. Eq("Id", userId) ) .UniqueResult(); Refer nhibernate ref docs.

You may want to look at this question. It looks like a similar problem.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions