[nhusers] NHibernate Burrow

2009-11-05 Thread Lothan
Is NHibernate Burrow still being supported? I have a couple of projects that use it that I want to update to NHibernate 2.1 but the latest version on the download page is from August 2008. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[nhusers] Re: a big thank you!

2009-11-05 Thread Fabio Maulo
Blog-Posts for 1 and 2 ? succes-story in NHForge ? http://nhforge.org/wikis/successstories/success-stories.aspx 2009/11/5 Jason Meckley jasonmeck...@gmail.com I just wanted to say thank you for all who contribute to this awesome framework. I just completed a project which takes advantage of a

[nhusers] Re: NHibernate search with fulltext and distance calculations

2009-11-05 Thread Fabio Maulo
The beauty of OSS is when you can download it from the Issue tracking or directly from the trunk... The crazy of OSS is when you must look inside n-personal-branchs to find something useful for your need and you must push a patch in your personal branch. 2009/11/5 Wayne Douglas

[nhusers] Requirements to Host NH

2009-11-05 Thread Dmitiry Nagirnyak
Hi Guys, I want to prepare the requirements for hosting NH web application. But not very sure about it. Could you please help me with that? I don't want to limit the NH functionality (reflection optimizer, lazzy loading etc). These just must work. For that I need to provide full set of

[nhusers] warning: fail-safe cleanup

2009-11-05 Thread Robert Byrne
Im getting the following warning: WARN: fail-safe cleanup (collections) : NHibernate.Engine.Loading.CollectionLoadContextrs=NHibernate.Driver.NHybridDataReader Some googling lead me to the following thread which references the fix for Hibernate:

[nhusers] PreUpdate event listener and dynamic update

2009-11-05 Thread dmitry
My mappings have dynamic-update set to true so that only dirty properties are updated. I have a pre-update event listener that needs to update the LastModified property. I update the entity value as well as the appropriate index in the State collection inside the listener. However, the property

[nhusers] Re: PreUpdate event listener and dynamic update

2009-11-05 Thread Dmitiry Nagirnyak
Did you return true from PreUpdate? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups nhusers group. To post to this group, send email to nhusers@googlegroups.com To unsubscribe from this group, send email to

[nhusers] Re: PreUpdate event listener and dynamic update

2009-11-05 Thread dmitry
The update does not happen at all if I return true. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups nhusers group. To post to this group, send email to nhusers@googlegroups.com To unsubscribe from this group, send

[nhusers] Re: GetOrdinal(String fieldName) ArgumentNullException

2009-11-05 Thread iconologic
Richard Do you have the formula attribute set on any of the properties in the mapping file? I get the same exception and this is the case for me. From looking at the generated sql, it looks as if nhibernate ignores the formula when you use CreateSqlQuery but then tries to access the derived

[nhusers] NH SQLite handling GUIDs?

2009-11-05 Thread Dennis
Im using NH version 2.1.0.4000. I am using a SQLite (1.0.65.0) Inmemory db for integration testing. When I do a session.GetMyEntity(myGuid) it returns null even though the record exists. With the ShowSQL set, I see the following: SELECT ... FROM PolicyInfo policyinfo0_ WHERE

[nhusers] nhibernate and multithreading using CLR threadpool

2009-11-05 Thread mt
I am trying to get my head around how to use nhibernate in a multi- threaded non asp.net application. Here is what i was thinking of doing. Do you see any issues with doing the following? The code is getting the current session inside of new thread that was set up by the threadpool. Is

[nhusers] Re: GetOrdinal(String fieldName) ArgumentNullException

2009-11-05 Thread Fabio Maulo
if it is a bug the procedure is simple: failing test case attached to a new JIRA ticket. 2009/11/4 iconologic jason.nesb...@gmail.com Richard Do you have the formula attribute set on any of the properties in the mapping file? I get the same exception and this is the case for me. From