Giveable.Giveable を使用して Giveable のサブクラスを受け入れようとしていますが、Giveable は抽象基本クラスであるため、実際にはマップされていません。TPT の代わりに Table per Hierarchy を使用しています。
他のユーザーを支援し、NHibernate のより現実的な例を提供するためのクラスを含めています。すべてのコードを許してください。
例外: 表 Giveaway からの関連付けは、マップされていないクラスを参照しています: Giveable
AutoMap.AssemblyOf<Giveaway>(cfg).UseOverridesFromAssemblyOf<UserMappingOverride>()
.Conventions.Add(
PrimaryKey.Name.Is(x => "ID"),
DefaultLazy.Always(),
DefaultCascade.Delete(),
DynamicInsert.AlwaysTrue(),
DynamicUpdate.AlwaysTrue(),
OptimisticLock.Is(x => x.Dirty()),
ForeignKey.EndsWith("ID")))).ExposeConfiguration(BuildSchema)
public abstract class Giveable
{
ISet<Giveaway> giveaways;
public Giveable() : base()
{
giveaways = new HashedSet<Giveaway>();
}
public virtual ISet<Giveaway> Giveaways
{
get { return giveaways; }
set { giveaways = value; }
}
public virtual int ID { get; set; }
public override bool Equals(object obj)
{
if (obj == null)
{
return false;
}
var toCompareWith = obj as Giveable;
return toCompareWith != null && ((ID == toCompareWith.ID));
}
public override int GetHashCode()
{
int toReturn = base.GetHashCode();
toReturn ^= ID.GetHashCode();
return toReturn;
}
}
public class Giveaway
{
ISet<Entry> entries;
public Giveaway() : base()
{
entries = new HashedSet<Entry>();
CreatedDate = DateTime.UtcNow;
}
public virtual DateTime CreatedDate { get; private set; }
public virtual DateTime? EndDate { get; set; }
public virtual ISet<Entry> Entries
{
get { return entries; }
set { entries = value; }
}
public virtual Giveable Giveable { get; set; }
public virtual int ID {get;set;}
public override bool Equals(object obj)
{
if (obj == null)
{
return false;
}
var toCompareWith = obj as Giveaway;
return toCompareWith != null && ((ID == toCompareWith.ID));
}
public override int GetHashCode()
{
int toReturn = base.GetHashCode();
toReturn ^= ID.GetHashCode();
return toReturn;
}
}
public class GiveableMappingOverride : IAutoMappingOverride<Giveable>
{
public void Override(AutoMapping<Giveable> mapping)
{
mapping.DiscriminateSubClassesOnColumn("GiveableType");
mapping.Map(x => x.Name).Length(200).Not.Nullable();
mapping.Map(x => x.ImageName).Length(200).Nullable();
mapping.Map(x => x.ReleaseDate).Not.Nullable();
mapping.HasMany(x => x.Giveaways)
.Fetch.Select()
.AsSet()
.Inverse()
.LazyLoad();
}
}
public class GiveawayMappingOverride : IAutoMappingOverride<Giveaway>
{
public void Override(AutoMapping<Giveaway> mapping)
{
mapping.Map(x => x.ThingID).Length(20).Nullable();
mapping.Map(x => x.Text).Length(2000).Not.Nullable();
mapping.Map(x => x.CreatedDate).Not.Nullable();
mapping.Map(x => x.Platform).Not.Nullable();
mapping.Map(x => x.Type).Not.Nullable();
mapping.HasMany(x => x.Entries);
mapping.References(x => x.Giveable).Not.Nullable();
mapping.References(x => x.User).Not.Nullable();
mapping.References(x => x.Winner);
}
}