Hi,
I have a pretty simple data model.
Article (ID, name, body, date) Category (ID, name, count)
Article_Category (articleID, categoryID)
Comment (ID, articleID, name, body, date)
How would I go about laying out my nhibernate mapping?
Also, when I create a new article, it will only have the article and the ID of the category to associate it to. How would it persist to the database in this scenerio?