Click here to Skip to main content
15,881,812 members
Articles / NHibernate

Object Relational Mapping (ORM) using NHibernate - Part 7 of 8 Completing the Ecommerce Example

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
15 May 2013CPOL7 min read 28.1K   2.6K   17  
A full series of 8 part articles to show One-To-One, Many-To-One, Many-To-Many associations mapping using NHibernate, Using Collections With NHibernate, Inheritance Relationships Using NHibernate, Lazy Initializations/Fetches Using NHibernate.
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="ECommerceSystem" namespace="ECommerceSystem.Domain">
  <class name="OrderShipment" table="ORDERSHIPMENT" >
    
    <composite-id name ="OrderShipmentId" class ="CompositeKey">
      <key-property name ="class1Key" column ="PAYMENTAPPROVEDORDERID" type ="long" access="field"></key-property>
      <key-property name ="class2Key" column ="SHIPPINGID" type ="long" access="field"></key-property>
    </composite-id>
    
    <many-to-one class="PaymentApprovedOrder" name="CurrentPaidOrder" column="PAYMENTAPPROVEDORDERID" insert="false" update="false"></many-to-one>
    
    <many-to-one class="Shipping" name="CurrentShipping" column="SHIPPINGID" insert="false" update="false"></many-to-one>
    
    <list name ="ShipmentItems" table ="SHIPMENTITEMS" cascade="save-update">
      <key not-null="true">
        <column name ="PAYMENTAPPROVEDORDERID" />
        <column name ="SHIPPINGID" />
      </key>
      <list-index column="POSITION" />
      <one-to-many class ="ShipmentItem"/>
    </list>
    
  </class>
</hibernate-mapping>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
Software Developer developing in c#.net.

Comments and Discussions