<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>NHibernateProvider</title><link>http://www.codeplex.com/nhibernateprovider/Project/ProjectRss.aspx</link><description>ASP.NET 2.0 Membership&amp;#47;Role Provider using NHibernate.      </description><item><title>New Post: NHibernate V2</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=40419</link><description>&lt;div style="line-height: normal;"&gt;This discussion has been copied to a work item. Click &lt;a href="http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=8350"&gt;here&lt;/a&gt; to go to the work item and continue the discussion.&lt;/div&gt;</description><author>lvildosola</author><pubDate>Mon, 01 Dec 2008 15:45:39 GMT</pubDate><guid isPermaLink="false">New Post: NHibernate V2 20081201034539P</guid></item><item><title>Created Issue: Update NHibernateProvider to support NHibernate V2</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=8350</link><description>The current version is 2.0.1GA&amp;#160;http&amp;#58;&amp;#47;&amp;#47;sourceforge.net&amp;#47;projects&amp;#47;nhibernate&amp;#47;&lt;br /&gt;</description><author>lvildosola</author><pubDate>Mon, 01 Dec 2008 15:45:38 GMT</pubDate><guid isPermaLink="false">Created Issue: Update NHibernateProvider to support NHibernate V2 20081201034538P</guid></item><item><title>New Post: NHibernate V2</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=40419</link><description>&lt;div style="line-height: normal;"&gt;I have been out of touch with some of these projects. I apologize for that. I did not have any plans to perform the port. However, I will see what I can do to spend a few hours to see what the effort would be. Frankly, since I have not used NHibernate for a long time, I have lost track of what changes have been made. So, I would have to get back into it to make the transition. If you go through the effort, please share it and I would be happy to make the necessary updates. If you prefer, I would be happy to give you access to make the changes and check them in. I can also review the changes if you prefer before updating the project. It's up to you.
&lt;/div&gt;</description><author>lvildosola</author><pubDate>Mon, 01 Dec 2008 15:44:22 GMT</pubDate><guid isPermaLink="false">New Post: NHibernate V2 20081201034422P</guid></item><item><title>New Post: NHibernate V2</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=40419</link><description>&lt;div style="line-height: normal;"&gt;Any chance of a updating this to the latest release of NHibernate?&lt;br&gt;
The current version is 2.0.1GA &lt;a href="http://sourceforge.net/projects/nhibernate/"&gt;http://sourceforge.net/projects/nhibernate/&lt;/a&gt;
&lt;/div&gt;</description><author>fishern</author><pubDate>Fri, 21 Nov 2008 02:07:01 GMT</pubDate><guid isPermaLink="false">New Post: NHibernate V2 20081121020701A</guid></item><item><title>New Post: User creation problem using Nhibernate membership provider and Oracle10g</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=39556</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;Thanks a lot! thank you very much.&lt;br&gt;Yes,Password is a reserved word for Oracle.I just renamed(alter table membershipuser rename column Password to &amp;quot;Password&amp;quot;) the Password column within a quote as  &amp;quot;Password&amp;quot;.And everything is running fine.Thank you again.&lt;br&gt;&lt;/div&gt;</description><author>mdsamim</author><pubDate>Wed, 12 Nov 2008 05:06:30 GMT</pubDate><guid isPermaLink="false">New Post: User creation problem using Nhibernate membership provider and Oracle10g 20081112050630A</guid></item><item><title>New Post: User creation problem using Nhibernate membership provider and Oracle10g</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=39556</link><description>&lt;div style="line-height: normal;"&gt;I believe the Password column has quotes in the mapping file because for some databases &amp;quot;Password&amp;quot; is a reserved word.&amp;nbsp; So the quotes need to stay.&amp;nbsp; The problem here is that Oracle interprets a double-quoted identifier as a case-sensitive identifier, but the column has been created as PASSWORD, so Password and PASSWORD do not match.&lt;br&gt;
&lt;br&gt;
Modify the database create script like so...:&lt;br&gt;
&lt;blockquote&gt;create table MEMBERSHIPUSER (&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;ID NUMBER(38,0) not null,&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;NAME VARCHAR2(255) not null,&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;LOWEREDNAME VARCHAR2(255) not null,&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;DESCRIPTION VARCHAR2(255) null,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;Password&amp;quot; VARCHAR2(128) not null,&lt;br&gt;
...&lt;br&gt;
&lt;/blockquote&gt;Now the column names should match.&lt;br&gt;
&lt;/div&gt;</description><author>dschilling</author><pubDate>Tue, 11 Nov 2008 13:38:16 GMT</pubDate><guid isPermaLink="false">New Post: User creation problem using Nhibernate membership provider and Oracle10g 20081111013816P</guid></item><item><title>New Post: User creation problem using Nhibernate membership provider and Oracle10g</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=39556</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;
Hi EverybodY&lt;br&gt;
&lt;br&gt;
I tried to implement the asp.net user and role management feature using nhibernatemembership provider and Oracle10g,there is a problem &lt;br&gt;
in user creation.&lt;br&gt;
The problem is as follow....&lt;br&gt;
&lt;br&gt;
NHibernateProvider: unable to get user; operation failed with error &amp;quot;could not execute query&lt;br&gt;
[ select user0_.Id as Id1_, user0_.Name as Name1_, user0_.LoweredName as LoweredN3_1_, user0_.Description as Descript4_1_, user0_.&amp;quot;Password&amp;quot; as Password5_1_, user0_.PasswordFormat as Password6_1_, user0_.PasswordSalt as Password7_1_, user0_.Email as Email1_, user0_.LoweredEmail as LoweredE9_1_, user0_.PasswordQuestion as Passwor10_1_, user0_.PasswordAnswer as Passwor11_1_, user0_.Comments as Comments1_, user0_.IsApproved as IsApproved1_, user0_.IsLockedOut as IsLocke14_1_, user0_.CreationDate as Creatio15_1_, user0_.LastActivityDate as LastAct16_1_, user0_.LastLoginDate as LastLog17_1_, user0_.LastLockedOutDate as LastLoc18_1_, user0_.LastPasswordChangeDate as LastPas19_1_, user0_.FailedPwdAttemptCnt as FailedP20_1_, user0_.FailedPwdAttemptWndStart as FailedP21_1_, user0_.FailedPwdAnsAttemptCnt as FailedP22_1_, user0_.FailedPwdAnsAttemptWndStart as FailedP23_1_ from MembershipUser user0_ where (user0_.LoweredName=? ) ]&lt;br&gt;
Positional parameters:&amp;nbsp;&amp;nbsp; 0 sdfd&lt;br&gt;
[SQL: select user0_.Id as Id1_, user0_.Name as Name1_, user0_.LoweredName as LoweredN3_1_, user0_.Description as Descript4_1_, user0_.&amp;quot;Password&amp;quot; as Password5_1_, user0_.PasswordFormat as Password6_1_, user0_.PasswordSalt as Password7_1_, user0_.Email as Email1_, user0_.LoweredEmail as LoweredE9_1_, user0_.PasswordQuestion as Passwor10_1_, user0_.PasswordAnswer as Passwor11_1_, user0_.Comments as Comments1_, user0_.IsApproved as IsApproved1_, user0_.IsLockedOut as IsLocke14_1_, user0_.CreationDate as Creatio15_1_, user0_.LastActivityDate as LastAct16_1_, user0_.LastLoginDate as LastLog17_1_, user0_.LastLockedOutDate as LastLoc18_1_, user0_.LastPasswordChangeDate as LastPas19_1_, user0_.FailedPwdAttemptCnt as FailedP20_1_, user0_.FailedPwdAttemptWndStart as FailedP21_1_, user0_.FailedPwdAnsAttemptCnt as FailedP22_1_, user0_.FailedPwdAnsAttemptWndStart as FailedP23_1_ from MembershipUser user0_ where (user0_.LoweredName=? )]&amp;quot;.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;i&amp;gt;Base Exception Message&amp;lt;/i&amp;gt;: &amp;quot;ORA-00904: &amp;quot;USER0_&amp;quot;.&amp;quot;Password&amp;quot;: invalid identifier.&lt;br&gt;
&lt;br&gt;
Here in the QUERY the password field has been taken in double quotes(&amp;quot;) as user0_.&amp;quot;Password&amp;quot;&amp;nbsp; which is wrong.It should be as user0_.Password.&lt;br&gt;
I have tried to remove the &amp;quot;Password&amp;quot; field from the &amp;quot;User.hbm.xml&amp;quot; and &amp;quot;User.cs&amp;quot;.But still the same problem arises.&lt;br&gt;
&lt;br&gt;
Can any body please help me!&lt;br&gt;
Thanks in advance....&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;/div&gt;</description><author>mdsamim</author><pubDate>Mon, 10 Nov 2008 05:38:48 GMT</pubDate><guid isPermaLink="false">New Post: User creation problem using Nhibernate membership provider and Oracle10g 20081110053848A</guid></item><item><title>New Post: Multiple project that use nhibernate</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=37174</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
I already have a web application that use nhibernate with a class library named Model that hold my HBM mapping files.&lt;br&gt;
In my web config&amp;nbsp;I have&amp;nbsp;&amp;lt;mapping assembly=&amp;quot;Model&amp;quot;/&amp;gt;.&lt;br&gt;
&lt;br&gt;
Now&amp;nbsp;I want to use&amp;nbsp;NHibernateProvider. This dll&amp;nbsp;have all the&amp;nbsp;mapping files embedded in is&amp;nbsp;assembly and to use it we need to add&amp;nbsp;this tag in the web.config&lt;br&gt;
&amp;lt;mapping assembly=&amp;quot;NHibernateProvider&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;
How can I make two assemblies that use&amp;nbsp;NHibernate mappings files in two distinct place to coexist ?&lt;br&gt;
&lt;br&gt;
Thank you !
&lt;/div&gt;</description><author>eric65</author><pubDate>Tue, 07 Oct 2008 02:56:24 GMT</pubDate><guid isPermaLink="false">New Post: Multiple project that use nhibernate 20081007025624A</guid></item><item><title>Created Issue: NHibernate 2.0.0 Beta 1 - No overload for method 'DeepCopy' takes '1' arguments</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=7342</link><description>Hi Guys,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m trying to get NHibernateProvider to work with NHibernate 2.0.0 Beta 1, and the only problem there seems to be is is that the NHibernateUtils.Boolean.DeepCopy method now requires 3 parameters, as used in OneZeroType.cs line 111.&lt;br /&gt;&lt;br /&gt;The methods signature is now.&lt;br /&gt;&lt;br /&gt;NHibernateUtils.Boolean.DeepCopy&amp;#40;Object value, EntityMode entityMode, ISessionFactoryImplementor factory&amp;#41;&lt;br /&gt;&lt;br /&gt;Does anybody know what I need to set the other parameters to&amp;#63;&lt;br /&gt;&lt;br /&gt;Many thanks&lt;br /&gt;&lt;br /&gt;Matt&lt;br /&gt;</description><author>Gradiation</author><pubDate>Tue, 19 Aug 2008 09:55:39 GMT</pubDate><guid isPermaLink="false">Created Issue: NHibernate 2.0.0 Beta 1 - No overload for method 'DeepCopy' takes '1' arguments 20080819095539A</guid></item><item><title>New Post: Windows Authentification and NHibernateProvider role provide</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=29191</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I apologize for taking so long to respond. I have been away from these projects for a while and I hope to get back into them as time permits.&lt;br&gt;
&lt;br&gt;
I hope that you already got an answer to your question. If not, let me see if I can help you.&lt;br&gt;
&lt;br&gt;
The NHibernateProvider is based on the fact that all relationships are maintained in the database. That is, the mapping of application, user, and role are in the database. This is only required for the RoleProvider to find the corresponding role assignment given a &amp;quot;user name&amp;quot; (whatever that is). Authentication is done independently using the MembershipProvider model, but it is not required to use the NHibernameProvider Membership Provider, you can use Windows Authentication for this.&lt;br&gt;
&lt;br&gt;
In order to get the two to work together you have to&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Comment out the MembershipProvider reference in your Web.config,&lt;/li&gt;
    &lt;li&gt;Configure your web app to use Windows Authentication, and&lt;/li&gt;
    &lt;li&gt;Configure the user names in the database.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When using Windows Authentication the user names are those corresponding to the NT user name. For example, domain\first.last. If you configure such user names and map them to your roles, it will all come together. The link between authentication and authorization is therefore done via the NT user name.&lt;/p&gt;
&lt;/div&gt;</description><author>lvildosola</author><pubDate>Mon, 14 Jul 2008 17:35:02 GMT</pubDate><guid isPermaLink="false">New Post: Windows Authentification and NHibernateProvider role provide 20080714053502P</guid></item><item><title>NEW POST: Windows Authentification and NHibernateProvider role provide</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=29191</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
I want to use windows authentification to login the users accessing my application. &lt;span style="font-size:13px;font-family:arial"&gt; (avoiding them having to manually login).&lt;span&gt;  &lt;/span&gt;However, because the roles I want to define are specific to my application, I do not want to define or store them within your network’s Windows Active Directory.  &lt;/span&gt;&lt;span style="font-size:10pt;line-height:115%;font-family:'arial','sans-serif'"&gt;Instead, I want to define and store these roles within a database. &lt;span&gt; &lt;/span&gt;I want to map Windows user accounts stored within Active Directory to these roles, and grant/deny access within the application based on them.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
Basically, I want to do something similar to this Recipe: Implementing Role Based Security with ASP.NET using Windows Authentication and SQL Server &lt;br&gt;
&lt;a href="http://weblogs.asp.net/scottgu/archive/2006/07/23/Recipe_3A00_-Implementing-Role-Based-Security-with-ASP.NET-using-Windows-Authentication-and-SQL-Server.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2006/07/23/Recipe_3A00_-Implementing-Role-Based-Security-with-ASP.NET-using-Windows-Authentication-and-SQL-Server.aspx&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
but I want to use NHibernateProvider instead of SQL Server provider.  So my question will be : it is possible to do that?  I am getting a error when I am adding a role (probably because the user is not in the membershipuser table).&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
&lt;br&gt;
David Gauthier
&lt;/div&gt;</description><author>gauthierd</author><pubDate>Fri, 06 Jun 2008 15:49:12 GMT</pubDate><guid isPermaLink="false">NEW POST: Windows Authentification and NHibernateProvider role provide 20080606034912P</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;I&amp;#39;ve realized this integration could be paired up with the other issue at http&amp;#58;&amp;#47;&amp;#47;www.codeplex.com&amp;#47;nhibernateprovider&amp;#47;WorkItem&amp;#47;View.aspx&amp;#63;WorkItemId&amp;#61;5562. Lets close this work item out and merge it into that other one regarding the custom session factory.&lt;/p&gt;</description><author>pcting</author><pubDate>Fri, 14 Mar 2008 21:07:52 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080314090752P</guid></item><item><title>COMMENTED FEATURE: Add ability to provide custom session factory object</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5562</link><description>&amp;#47;&amp;#47; This message is addressed to the product developer &amp;#47;&amp;#47;&lt;br /&gt; &lt;br /&gt;Hi,&lt;br /&gt; &lt;br /&gt;I find this job extreemly useful for everybody. However, I have faced an integration problelms. It is difficult to integrate it with other technologies based on NH due to configuration. It&amp;#39;s easy to drop these constraints allowing the user to provide own session factory object. I have prepared an HTTP module implementation that allows such modification&amp;#58;&lt;br /&gt; &lt;br /&gt;using System&amp;#59;&lt;br /&gt;using System.Collections.Generic&amp;#59;&lt;br /&gt;using System.Text&amp;#59;&lt;br /&gt;using System.Web&amp;#59;&lt;br /&gt;using NHibernateProvider.Helper&amp;#59;&lt;br /&gt; &lt;br /&gt;namespace NHibernateProvider&lt;br /&gt;&amp;#123;&lt;br /&gt;  public class NHibernateProviderModule &amp;#58; IHttpModule&lt;br /&gt;  &amp;#123;&lt;br /&gt;    &amp;#35;region IHttpModule Members&lt;br /&gt; &lt;br /&gt;    public void Dispose&amp;#40;&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;      &amp;#47;&amp;#47; ...&lt;br /&gt;    &amp;#125;&lt;br /&gt; &lt;br /&gt;    public void Init&amp;#40;HttpApplication context&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;      context.BeginRequest &amp;#43;&amp;#61; new EventHandler&amp;#40;OnBeginRequest&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt; &lt;br /&gt;    protected virtual void OnBeginRequest&amp;#40;object sender, EventArgs e&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;      NHibernateHelper.Initialize&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt; &lt;br /&gt;    &amp;#35;endregion&lt;br /&gt;  &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt; &lt;br /&gt;This module requires to provide following methods in the NHibernateHelper class _instead_ of the static constructor&amp;#58;&lt;br /&gt; &lt;br /&gt;        public static void Initialize&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;          sessionFactory &amp;#61; new Configuration&amp;#40;&amp;#41;.Configure&amp;#40;&amp;#41;.BuildSessionFactory&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;        public static void Initialize&amp;#40;ISessionFactory extSessionFactory&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;          sessionFactory &amp;#61; extSessionFactory&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt; &lt;br /&gt;and to drop readonly constraint on the sessionFactory member.&lt;br /&gt; &lt;br /&gt;These modification allow the user to derive from the module and overload OnBeginRequest method where custom session factory can be injected. Actualy I would like to use this mechanism for integration with Spring.Net. So, the question is whether it is possible to put it to the base code of NHibernateProvider.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;I&amp;#39;ve also had the need for this feature so I went ahead and altered the code. I removed the NHibernateHelper and NHibernateProviderEntityHelper classes and replaced them with Spring.NET&amp;#39;s HibernateDaoSupport version of them to be able to do DI for spring.net through IoC. Attached is a zip of the binaries and a diff patch. I haven&amp;#39;t tested it fully, but I am using it in my code right now&amp;#59; it does seem to work well.&lt;/p&gt;&lt;p&gt;So although this isn&amp;#39;t a &amp;#34;custom&amp;#34; session factory, this implementation will help tot pave the way to developing a totally customizable session factory. Using my code changes with the current trunk code, we could figure out what a custom session factory would resemble.&lt;/p&gt;</description><author>pcting</author><pubDate>Fri, 14 Mar 2008 21:06:06 GMT</pubDate><guid isPermaLink="false">COMMENTED FEATURE: Add ability to provide custom session factory object 20080314090606P</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;Attached is spring-integration.patch. This is my generated patch from the current code in the repository. I used the TF to SVN bridge to grab the code and it read &amp;#34;last commit revision&amp;#58; 936&amp;#34; and &amp;#34;revision &amp;#47; author&amp;#58; 10259&amp;#34;.&lt;/p&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:46:16 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080312084616A</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;I also had to alter the domain model classes to be public.&lt;/p&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:37:03 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080312083703A</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;NHibernateProviderEntityHelperDao.cs&lt;/p&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:35:21 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080312083521A</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;NHibernateHelperDao.cs&lt;/p&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:35:00 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080312083500A</guid></item><item><title>COMMENTED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;Comments: ** Comment from web user: pcting ** &lt;p&gt;Here&amp;#39;s another file&amp;#58; IProviderEntityHelperDao.cs&lt;/p&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:34:28 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Spring.NET Integration 20080312083428A</guid></item><item><title>CREATED ISSUE: Spring.NET Integration</title><link>http://www.codeplex.com/nhibernateprovider/WorkItem/View.aspx?WorkItemId=5706</link><description>It would be really great if this library played well with Spring.NET found at http&amp;#58;&amp;#47;&amp;#47;www.springframework.net&amp;#47;. This is a .NET adaptation of java&amp;#39;s Spring library. This library is also integrated with NHibernate. NHibernateProvider currently doesn&amp;#39;t play well with Spring.NET. The only thing I see that needs to change are the NHibernateHelper and NHibernateProviderEntityHelper classes. Attached are my changes. &lt;br /&gt;&lt;br /&gt;I changed all the NHibernateHelper and NHibernateProviderEntityHelper calls to utilize my new classes. With these changes, you should be able to use Spring.NET&amp;#39;s dependency injection to configure the helper classes.&lt;br /&gt;</description><author>pcting</author><pubDate>Wed, 12 Mar 2008 08:33:21 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Spring.NET Integration 20080312083321A</guid></item><item><title>NEW POST: User hbm.xml, boolean/UserType</title><link>http://www.codeplex.com/nhibernateprovider/Thread/View.aspx?ThreadId=22648</link><description>&lt;div class="wikidoc"&gt;
Thanks for your feedback. The original implementation was done when NHibernate did not handle this nicely. It may no longer be required. However, for backward compatibility the user type will be kept. I'll make sure that it is mentioned as a comment in the sample code that this may not be required. Can you please tell me which version of the Oracle drivers you are using and which version of NHibernate?&lt;br /&gt;
&lt;/div&gt;</description><author>lvildosola</author><pubDate>Tue, 04 Mar 2008 01:40:12 GMT</pubDate><guid isPermaLink="false">NEW POST: User hbm.xml, boolean/UserType 20080304014012A</guid></item></channel></rss>