Fluent NHibernate:一对多映射到子类,其中外键存在于抽象类中

时间:2010-11-03 00:58:16

标签: fluent-nhibernate nhibernate-mapping

我是初次使用NHibernate / Fluent NHibernate,并试图弄清楚如何将它与现有的数据库结构一起使用。如果可能的话,我希望在不改变数据库结构的情况下使其工作。

我试图映射的数据库结构类似于:

Forms
----
FormId
CompletedBy

Records
-------
RecordId
RecordTypeId
FormId

EducationRecords
----------------
RecordId
SchoolName
DateAttendedFrom
DateAttendedTo

我的实体:

public class Form
{
    public virtual int Id { get; private set; }
    public virtual string CompletedBy { get; set; }

    public virtual IList<Entities.EducationRecord> EducationRecords { get; set; }

    public Form()
    {
        this.EducationRecords = new List<EducationRecord>();
    }
}

public abstract class Record
{
    public virtual int Id { get; set; }
    public virtual int RecordTypeId { get; set; }
    public virtual Form Parent { get; set; }
}

public class EducationRecord : Record
{
    public virtual string SchoolName { get; set; }
    public virtual DateTime DateAttendedFrom { get; set; }
    public virtual DateTime DateAttendedTo { get; set; }
}

我的映射:

public class FormMap : ClassMap<Entities.Form>
{
    public FormMap()
    {
        Table("Forms");
        Id(x => x.Id, "FormId");
        Map(x => x.CompletedBy);

        HasMany(x => x.EducationRecords);
    }
}

public class RecordMap : ClassMap<Entities.Record>
{
    public RecordMap()
    {

        Table("Records");
        Id(x => x.Id, "RecordId");
        Map(x => x.RecordTypeId);
        References(x => x.Parent, "FormId");
    }
}

public class EducationRecordMap : SubclassMap<Entities.EducationRecord>
{
    public EducationRecordMap()
    {
        Table("EducationRecords");
        KeyColumn("RecordId");
        Map(x => x.SchoolName);
        Map(x => x.DateAttendedFrom);
        Map(x => x.DateAttendedTo);
    }
}

使用当前设置的方式,在尝试访问Form的EducationRecords属性时出现以下异常:

[SqlException (0x80131904): Invalid column name 'FormId'.
Invalid column name 'FormId'.]

看起来底层SQL查询正在尝试查询EducationRecords表上的“FormId”列,但该列不存在。我花了很多时间用我的地图类尝试不同的配置变种,但没有运气。

所以我的问题是:在检索教育记录时,如何告诉Fluent NHibernate使用Records表中的'FormId'列,或者这甚至可能?

<小时/> 的更新
我的问题似乎基本上与这里所说的问题相同(不幸的是,这个问题从未得到解决): Fluent NHibernate inheritance mapping problem

<小时/> 更新2:

根据建议,我对FormMap进行了以下更改:

HasMany(x => x.EducationRecords).Inverse();

但同样的问题仍然存在。

这是源错误:

Line 14: 
Line 15:     <div>
Line 16:         <% if (Model.EducationRecords.Any()) { %>
Line 17: 
Line 18:             <table>

模型属于Form。

这是堆栈跟踪:

[SqlException (0x80131904): Invalid column name 'FormId'.
Invalid column name 'FormId'.]
   System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) +2030802
   System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) +5009584
   System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning() +234
   System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) +2275
   System.Data.SqlClient.SqlDataReader.ConsumeMetaData() +33
   System.Data.SqlClient.SqlDataReader.get_MetaData() +86
   System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) +311
   System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) +987
   System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) +162
   System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) +32
   System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) +141
   System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) +12
   System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader() +12
   NHibernate.AdoNet.AbstractBatcher.ExecuteReader(IDbCommand cmd) +278
   NHibernate.Loader.Loader.GetResultSet(IDbCommand st, Boolean autoDiscoverTypes, Boolean callable, RowSelection selection, ISessionImplementor session) +264
   NHibernate.Loader.Loader.DoQuery(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies) +186
   NHibernate.Loader.Loader.DoQueryAndInitializeNonLazyCollections(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies) +70
   NHibernate.Loader.Loader.LoadCollection(ISessionImplementor session, Object id, IType type) +226

[GenericADOException: could not initialize a collection: [Sample.NHibernate.Entities.Form.EducationRecords#1][SQL: SELECT educationr0_.FormId as FormId1_, educationr0_.RecordId as RecordId1_, educationr0_.RecordId as RecordId1_0_, educationr0_1_.RecordTypeId as RecordTy2_1_0_, educationr0_1_.FormId as FormId1_0_, educationr0_.SchoolName as SchoolName2_0_, educationr0_.DateAttendedFrom as DateAtte3_2_0_, educationr0_.DateAttendedTo as DateAtte4_2_0_, educationr0_.Degree as Degree2_0_, educationr0_.DateDegreeAwarded as DateDegr6_2_0_ FROM dbo.EducationRecords educationr0_ inner join dbo.Records educationr0_1_ on educationr0_.RecordId=educationr0_1_.RecordId WHERE educationr0_.FormId=?]]
   NHibernate.Loader.Loader.LoadCollection(ISessionImplementor session, Object id, IType type) +345
   NHibernate.Loader.Collection.CollectionLoader.Initialize(Object id, ISessionImplementor session) +27
   NHibernate.Persister.Collection.AbstractCollectionPersister.Initialize(Object key, ISessionImplementor session) +29
   NHibernate.Event.Default.DefaultInitializeCollectionEventListener.OnInitializeCollection(InitializeCollectionEvent event) +349
   NHibernate.Impl.SessionImpl.InitializeCollection(IPersistentCollection collection, Boolean writing) +431
   NHibernate.Collection.AbstractPersistentCollection.Initialize(Boolean writing) +47
   NHibernate.Collection.Generic.PersistentGenericBag`1.System.Collections.Generic.IEnumerable<T>.GetEnumerator() +16
   System.Linq.Enumerable.Any(IEnumerable`1 source) +71
   ASP.views_form_index_aspx.__RenderContent2(HtmlTextWriter __w, Control parameterContainer) in c:\Dev\Sandbox\NHibernateSample\Sample.Web\Views\Form\Index.aspx:16
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +109
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +8
   System.Web.UI.Control.Render(HtmlTextWriter writer) +10
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +100
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +208
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +8
   System.Web.UI.Control.Render(HtmlTextWriter writer) +10
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +100
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +208
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +8
   System.Web.Mvc.ViewPage.Render(HtmlTextWriter writer) +55
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +100
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3060

在GenericADOException中显示的生成的SQL查询中,WHERE子句指定:

WHERE educationr0_.FormId=?

但它必须是:

WHERE educationr0_1_.FormId=?

5 个答案:

答案 0 :(得分:1)

我花了一段时间才重新审视这个问题。在发布这个问题后不久我就停止使用Fluent NHibernate。

回顾过去,我认为我试图实现的目标可能存在根本性的错误。只需将EducationRecords列表替换为Records,即可解决我的问题。如果需要,可以从中检索特定类型的记录。

我不记得为什么我原本以为我需要EducationRecords中的Forms列表。我怀疑对我来说,ORMs经验不足,或者可能存在数据库设计中没有正确表达的约束。

答案 1 :(得分:1)

解决方案非常简单。您需要为所有子类图指定,这是一个抽象 基类

public class EducationRecordMap : SubclassMap<Entities.EducationRecord>
{
   public EducationRecordMap()
   {
    Table("EducationRecords");

    Abstract(); // because Record base class is abstract

    KeyColumn("RecordId");
    Map(x => x.SchoolName);
    Map(x => x.DateAttendedFrom);
    Map(x => x.DateAttendedTo);
  }
 }

答案 2 :(得分:0)

尝试改变:

HasMany(x => x.EducationRecords);

HasMany(x => x.EducationRecords).Inverse();
通过这种方式,你告诉NH,只有这个关系中的孩子负责储蓄。

您可以在此处详细了解多余的更新: http://nhprof.com/Learn/Alerts/SuperfluousManyToOneUpdate

答案 3 :(得分:0)

尝试此映射:

public class FormMap : ClassMap<Entities.Form>
{
    public FormMap()
    {
        Table("Forms");
        Id(x => x.Id, "FormId");
        Map(x => x.CompletedBy);

        HasMany<Record>(x => x.EducationRecords).Where("form0_1_.EducationRecordId is not null");
    }
}

并使类Record不是抽象的。这适合我。也许'form0_1_'不是正确的列名。您可以在生成的SQL中找到正确的SQL。

答案 4 :(得分:0)

您应该检查生成的XML映射。也许它生成子类映射而不是join-subclass。 http://knol.google.com/k/fabio-maulo/nhibernate-chapter-8-inheritance-mapping/1nr4enxv3dpeq/11