我想知道什么。我坐在这里有一个解决方案我有1个超类,有2个子类,我现在使用JoinedSubClass映射它,但我得知这个方法已经过时了,并说我应该使用ClassMap和SubClassMap,但如果我这样做AutoMapping不起作用,我不希望这样。有没有解决方法呢?
这是层次结构:
public class Tag : Entity
{
public virtual string Name {get;set;}
public virtual User User {get;set;}
}
public class RespondentTag : Tag
{
public virtual IList<Respondent> Respondents {get;set;}
}
public class ArchiveTag : Tag
{
public virtual IList<Survey> Surveys {get;set;}
}
正如您可能想到的那样,我希望这是一个每个层次结构的表 - 映射与子类的列表是多对多。就像表'Tag',然后是Tag_Respondent和Tag_Archive(用于多对多关系)。
这是我目前正在使用的映射:
public class TagMap : IAutoMappingOverride<Tag>
{
public void Override(AutoMapping<Tag> mapping)
{
//This is obsolete
mapping.JoinedSubClass("RespondentTagId", RespondentTagMap.AsJoinedSubClass());
mapping.JoinedSubClass("ArchiveTagId", ArchiveTagMap.AsJoinedSubClass());
}
}
public class RespondentTagMap
{
public static Action<JoinedSubClassPart<RespondentTag>> AsJoinedSubClass()
{
return part =>
part.HasManyToMany(x => x.RespondentList)
.Cascade
.SaveUpdate()
.Inverse()
.Table("Tag_Respondent");
}
}
public class ArchiveTagMap
{
public static Action<JoinedSubClassPart<ArchiveTag>> AsJoinedSubClass()
{
return part =>
part.HasManyToMany(x => x.Surveys)
.Cascade
.SaveUpdate()
.Inverse()
.Table("Tag_Archive");
}
}
有没有人知道解决方法或解决此问题的其他解决方案? (不禁用自动化)
任何答案都将不胜感激。
提前致谢!
答案 0 :(得分:1)
如果我误解了你的目标,请原谅我,但是我会对此进行一次尝试,因为我的项目中有类似的继承(尽管我使用带有鉴别器列的每个基类表模式)。 / p>
我相信您可以通过让FNH忽略您的Tag
基类,然后覆盖RespondentTag
和ArchiveTag
对象上的映射来实现许多目标,从而完成您想要做的事情多对多的关系。因此,在FNH配置中,您需要为映射调用指定一个参数:
m.AutoMappings.Add(AutoMap.AssemblyOf<SomeObjectInMyAssembly>(new MyAutoMapConfig()) // Assuming you're using a config class
.IgnoreBase(typeof(Entity))
.IgnoreBase(typeof(Tag))
.UseOverridesFromAssemblyOf<SomeOverrideClass>());
然后你必须在你存储它们的任何程序集中设置覆盖。你会有这样的事情:
public class RespondentTagOverride : IAutoMappingOverride<RespondentTag>
{
public void Override(AutoMapping<RespondentTag> mapping)
{
mapping.HasManyToMany(x => x.RespondentList)
.Cascade
.SaveUpdate()
.Inverse()
.Table("Tag_Respondent"); // Not sure if the table call works in the override...you may have to use a convention for this
}
}
ArchiveTag
对象相同。
这与我在继承方案中的操作类似,但正如我所提到的,在我的automap配置类中,我覆盖了IsDiscriminated
方法,以指示我的对象是基于每个类的表并进行区分。 / p>