帮助nHibernate设计/映射

时间:2009-07-18 20:47:00

标签: nhibernate nhibernate-mapping

我有一个非常简单的数据模型。

文章(身份证,姓名,正文,日期) 类别(ID,名称,计数)

Article_Category(articleID,categoryID)

评论(ID,文章ID,姓名,正文,日期)

我如何设置我的nhibernate映射?

此外,当我创建一篇新文章时,它只会将文章和类别的ID关联到其中。它将如何在此场景中持续存储到数据库中?

1 个答案:

答案 0 :(得分:1)

对于文章和类别示例,您需要检查多对多映射和加载与获取。

多对多(文档中6.1到6.3):

http://www.nhforge.org/doc/nh/en/index.html#collections-mapping

http://www.nhforge.org/doc/nh/en/index.html#collections-ofvalues

加载(文档中的9.2):

http://www.nhforge.org/doc/nh/en/index.html#manipulatingdata-loading

对于评论,这听起来像一个简单的一对多会起作用,而对第6章的好读也会有所帮助。