背景:http ://docs.orchardproject.net/Documentation/Creating-1-n-and-nn-relations
这是我的Track Part的模型:
public class TrackPartRecord : ContentPartRecord
{
public virtual IList<TrackInformationRecord> Tracks { get; set; }
}
public class TrackPart : ContentPart<TrackPartRecord>
{
public IList<TrackInformationRecord> Tracks
{
get { return Record.Tracks; }
}
}
public class TrackInformationRecord
{
public virtual int Id { get; set; }
public virtual int TrackPartId { get; set; }
public virtual string Title { get; set; }
public virtual string Description { get; set; }
public virtual bool IsDeleted { get; set; }
public virtual IList<SessionInformationRecord> Sessions { get; set; }
}
public class SessionInformationRecord
{
public virtual int Id { get; set; }
public virtual int TrackId { get; set; }
public virtual string Title { get; set; }
public virtual string Description { get; set; }
public virtual DateTime Timeslot { get; set; }
public virtual bool HasEvaluation { get; set; }
public virtual bool IsDeleted { get; set; }
}
这是我创建 3 个表(2 个信息记录和 1 个部分记录)的迁移:
// Creating table TrackInformationRecord
SchemaBuilder.CreateTable("TrackInformationRecord", table => table
.Column("Id", DbType.Int32, column => column.PrimaryKey().Identity())
.Column("TrackPartId", DbType.Int32)
.Column("Title", DbType.String)
.Column("Description", DbType.String)
.Column("IsDeleted", DbType.Boolean)
);
// Creating table TrackPartRecord
SchemaBuilder.CreateTable("TrackPartRecord", table => table
.ContentPartRecord()
);
ContentDefinitionManager.AlterPartDefinition("TrackPart", builder => builder.Attachable());
// Creating table SessionInformationRecord
SchemaBuilder.CreateTable("SessionInformationRecord", table => table
.Column("Id", DbType.Int32, column => column.PrimaryKey().Identity())
.Column("TrackId", DbType.Int32)
.Column("Title", DbType.String)
.Column("Description", DbType.String)
.Column("Timeslot", DbType.DateTime)
.Column("HasEvaluation", DbType.Boolean)
.Column("IsDeleted", DbType.Boolean)
);
内容项附加了跟踪部分(形成 1-n 关系),跟踪记录具有会话记录列表。
当您添加曲目时,问题就开始了。添加的第一个轨道被添加。第一次更新后(添加第一首曲目,还没有会话),我不再能够更新内容项上的任何内容。当我浏览代码时,我没有收到任何错误或任何异常(可能它们在 Orchard 中埋得太深,以至于没有任何直接明显的东西被抛出)。
当我直接进入数据库并删除与内容项相关的跟踪记录时,我能够再次更新所有内容。
我检查了日志,发现了这个:
2013-08-14 14:15:00,882 [30] NHibernate.AdoNet.AbstractBatcher - Could not execute command: UPDATE Ignite_EventsAgenda_SessionInformationRecord SET TrackInformationRecord_id = null WHERE TrackInformationRecord_id = @p0
System.Data.SqlServerCe.SqlCeException (0x80004005): The column name is not valid. [ Node name (if any) = ,Column name = TrackInformationRecord_id ]
at System.Data.SqlServerCe.SqlCeCommand.ProcessResults(Int32 hr)
at System.Data.SqlServerCe.SqlCeCommand.CompileQueryPlan()
at System.Data.SqlServerCe.SqlCeCommand.ExecuteCommand(CommandBehavior behavior, String method, ResultSetOptions options)
at System.Data.SqlServerCe.SqlCeCommand.ExecuteNonQuery()
at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd)
2013-08-14 14:15:00,888 [30] NHibernate.Util.ADOExceptionReporter - System.Data.SqlServerCe.SqlCeException (0x80004005): The column name is not valid. [ Node name (if any) = ,Column name = TrackInformationRecord_id ]
at System.Data.SqlServerCe.SqlCeCommand.ProcessResults(Int32 hr)
at System.Data.SqlServerCe.SqlCeCommand.CompileQueryPlan()
at System.Data.SqlServerCe.SqlCeCommand.ExecuteCommand(CommandBehavior behavior, String method, ResultSetOptions options)
at System.Data.SqlServerCe.SqlCeCommand.ExecuteNonQuery()
at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd)
at NHibernate.Persister.Collection.AbstractCollectionPersister.Remove(Object id, ISessionImplementor session)
2013-08-14 14:15:00,891 [30] NHibernate.Util.ADOExceptionReporter - The column name is not valid. [ Node name (if any) = ,Column name = TrackInformationRecord_id ]
2013-08-14 14:15:00,894 [30] NHibernate.Event.Default.AbstractFlushingEventListener - Could not synchronize database state with session
NHibernate.Exceptions.GenericADOException: could not delete collection: [Ignite.EventsAgenda.Models.TrackInformationRecord.Sessions#1][SQL: UPDATE Ignite_EventsAgenda_SessionInformationRecord SET TrackInformationRecord_id = null WHERE TrackInformationRecord_id = @p0] ---> System.Data.SqlServerCe.SqlCeException: The column name is not valid. [ Node name (if any) = ,Column name = TrackInformationRecord_id ]
首先,我不知道为什么会出现“列名无效”的问题。
其次,我没有得到这一行: UPDATE Ignite_EventsAgenda_SessionInformationRecord SET TrackInformationRecord_id = null WHERE TrackInformationRecord_id = @p0
它从哪里获得列名 TrackInformationRecord_id?
任何帮助或建议将不胜感激。