Hi, the sample scenario is this:

table Order
with
id, OrderDesc,


table Product
with id, DescProduct


table OrderDetail
with idOrder ,idProduct, quantity


objects


object Order
{
    idOrder,
    DescOrder,
    ICollection<ProductInOrder> Details
}

object ProductInOrder
{
  idProduct,
  DescProduct
  quantityAB
}

Ill try to use manytomany or join and different models but i'm not be
able to recostruct the behaviour
(distinct objects and collections and so on, productbase mapped to
product and a subclass productorder with a join, etc)

The sample is not my real problem but the situation is the same, i
want to know how i can map or rearrange domain for this situation.

-- 
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to fluent-nhibern...@googlegroups.com.
To unsubscribe from this group, send email to 
fluent-nhibernate+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en.

Reply via email to