Of course, here they are:

=============
Country
=============

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="***"
namespace="***">
  <class name="Country" table="`Country`">
    <id name="Id">
      <column name="`Id`" />
      <generator class="identity" />
    </id>
        ...
    <property name="Name">
      <column name="`Name`" not-null="true" sql-type="nvarchar(max)" /
>
    </property>
  </class>
</hibernate-mapping>

=============
Site
=============

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="***"
namespace="***">
  <class name="Site" table="`Site`">
    <id name="Id">
      <column name="`Id`" />
      <generator class="identity" />
    </id>
        ...
    <many-to-one name="Country" class="***.Country, ***" foreign-
key="Fk_Site_CountryId">
      <column name="`CountryId`" />
    </many-to-one>
    <many-to-one name="Parent" class="***.Site, ***" foreign-
key="Fk_Site_ParentId">
      <column name="`ParentId`" />
    </many-to-one>
        ...
        </class>
</hibernate-mapping>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to