I am trying to work out how to manage the following relationships
A Store has many Products
A Product is in many Stores
A Store knows how many of each Product it has
In the database I have 3 tables Stores, Products and a StoreProducts that has StoreId, ProductId and Quantity.
How would I map this in nHibernate or fluent nHibernate?