Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3840/NHibernate.DomainModel
Modified Files:
Vetoer.hbm.xml
Log Message:
Modified Vetoer so it now binds correctly. Still have an issue with it that I
need to look at.
Index: Vetoer.hbm.xml
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/Vetoer.hbm.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Vetoer.hbm.xml 3 Jun 2004 18:55:57 -0000 1.3
--- Vetoer.hbm.xml 15 Jul 2004 19:16:12 -0000 1.4
***************
*** 12,16 ****
</id>
<property name="Name" />
! <property name="Strings" /><!-- TODO: fix that NH is not recognizing this as an array -->
</class>
</hibernate-mapping>
\ No newline at end of file
--- 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
|