Greetings,
I've developed a project using NHibernate. The project have to manage a little "Stock Control". So, my entities are Article, Place, Movements.
Article: represents a simple common enterprise article.
Place: represents the ubication that contains articles.
Movements: represents the the movements that an article has.
However, I need to make queries about them. The problem is if I want to retrive something as:
Article Place Stock --> So, the stock of each article in each place. So I've thunk in retrieving a list of Stock objects, but Stock class isn't mapped.
How Can I to solve it?
Thanks for all.
|