From: <fab...@us...> - 2009-10-18 14:36:42
|
Revision: 4775 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4775&view=rev Author: fabiomaulo Date: 2009-10-18 14:36:34 +0000 (Sun, 18 Oct 2009) Log Message: ----------- Forgotten meta regeneration fixing NH-1255 (r4766) Modified Paths: -------------- branches/2.1.x/nhibernate/src/NHibernate/Cfg/MappingSchema/Hbm.generated.cs Modified: branches/2.1.x/nhibernate/src/NHibernate/Cfg/MappingSchema/Hbm.generated.cs =================================================================== --- branches/2.1.x/nhibernate/src/NHibernate/Cfg/MappingSchema/Hbm.generated.cs 2009-10-18 13:39:50 UTC (rev 4774) +++ branches/2.1.x/nhibernate/src/NHibernate/Cfg/MappingSchema/Hbm.generated.cs 2009-10-18 14:36:34 UTC (rev 4775) @@ -1967,6 +1967,15 @@ /// <remarks/> [System.Xml.Serialization.XmlIgnoreAttribute()] public bool lazySpecified; + + /// <remarks/> + [System.Xml.Serialization.XmlAttributeAttribute("not-found")] + [System.ComponentModel.DefaultValueAttribute(HbmNotFoundMode.Exception)] + public HbmNotFoundMode notfound; + + public HbmKeyManyToOne() { + this.notfound = HbmNotFoundMode.Exception; + } } /// <remarks/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |