Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Facilities / NHibernateIntegration / Castle.Facilities.NHibernateIntegration.Tests / Common / BlogItem.hbm.xml
blob64c756a9d0a6b3de0e95fe079c98ec57b1bcea8c
1 <?xml version="1.0" encoding="utf-8" ?>\r
2 <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">\r
3         <class name="Castle.Facilities.NHibernateIntegration.Tests.BlogItem, Castle.Facilities.NHibernateIntegration.Tests" table="BLOG_ITEMS_TABLE2" dynamic-update="true">\r
4                 <id name="Id" type="Int32" column="BLOG_ITEM_ID">\r
5                         <generator class="native" />\r
6                 </id>\r
7                 <property name="Title" column="TITLE" not-null="true" />\r
8                 <property name="Text" column="TEXT" not-null="true" />\r
9                 <property name="ItemDate" column="DATE_TIME" not-null="true" />\r
10                 <many-to-one name="ParentBlog" column="BLOG_ID" not-null="true" />\r
11         </class>\r
12 </hibernate-mapping>\r