Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1669/src/NHibernate.DomainModel
Modified Files:
Vetoer.hbm.xml
Log Message:
Fixed http://jira.nhibernate.org:8080/browse/NH-82 - a <property> that was
mapping a class property of System.String[] was not mapping to
SerializableType like h2.0.3.
Index: Vetoer.hbm.xml
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Vetoer.hbm.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Vetoer.hbm.xml 15 Jul 2004 19:16:12 -0000 1.4
--- Vetoer.hbm.xml 28 Aug 2004 04:57:15 -0000 1.5
***************
*** 12,20 ****
</id>
<property name="Name" />
! <property name="Strings" type="System.String[]"/>
! <!--
! TODO: fix that NH is not recognizing this as an serializable object and that I have to add
! type="System.String[]" to the property
! -->
</class>
</hibernate-mapping>
\ No newline at end of file
--- 12,16 ----
</id>
<property name="Name" />
! <property name="Strings" />
</class>
</hibernate-mapping>
\ No newline at end of file
|