我有一个看起来像这样的课程
public class Comment
{
[Any(typeof(int), MetaType=typeof(int),
TypeColumn="RecordTypeID",
IdColumn="RecordID",
Cascade=CascadeEnum.SaveUpdate)]
[Any.MetaValue(1, typeof(News))]
[Any.MetaValue(2, typeof(Feature))]
public IContentItem Item
{get;set;}
}
如何在新闻/功能方面创建多个?
public class News : IContentItem
{
[ManyRelationship]
public IList<Comment> Comments
{get;set;}
}
public class Feature : IContentItem
{
[ManyRelationship]
public IList<Comment> Comments
{get;set;}
}
任何人对此都有任何想法,我已经在这几天了。顺便说一句,答案不是HasManyToAny
答案 0 :(得分:1)
这篇文章完全符合你的要求:http://fabiomaulo.blogspot.com/2010/11/conform-any-to-many.html,只使用完整的NH,用ConfORM映射。
您可以生成XML并将其重构为ActiveRecord属性。或者,您可以前进到NH + ConfORM: - )