使用流畅的 nhibernate 表继承删除对象时出现异常
本文关键字:对象 删除 异常 继承 nhibernate | 更新日期: 2023-09-27 18:37:02
使用流利的 nhibernate 表继承删除对象时出现异常。
我无法弄清楚我的应用程序结构和映射有什么不正确的地方,以及为什么当我使用表继承时它要寻找多对多映射表?
添加和更新工作正常。
我没有明确设置任何映射,我使用的是默认的流畅 nhibernate 映射。
除了处理我的级联的覆盖,如下所示:
public class CascadeAll : IHasOneConvention, IHasManyConvention, IReferenceConvention
{
public void Apply(IOneToOneInstance instance)
{
instance.Cascade.All();
}
public void Apply(IOneToManyCollectionInstance instance)
{
instance.Cascade.All();
}
public void Apply(IManyToOneInstance instance)
{
instance.Cascade.All();
}
}
例外情况是:
Invalid object name 'BlogPageToPage'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'BlogPageToPage'.
我的数据库看起来像这样。
Page
Id (Guid)
Name
etc.
BlogPage
Page_Id (Guid, exact same as parent page)
etc.
类:
public class Page : EntityBase
{
public Page()
{
BlogPages = new List<BlogPage>();
}
public virtual IList<BlogPage> BlogPages { get; set; }
}
public class BlogPage : Page
{
public BlogPage()
{
}
public virtual IList<Post> Posts { get; set; }
}
我的删除如下所示:
public bool Delete(T model)
{
Session.Delete(model);
return true;
}
感谢您的输入。
"BlogPageToPage" 与您的任何数据库、表或列名称都不匹配...你能找到你提到"BlogPageToPage"对象的地方吗?
我当然是个白痴。
它寻找该表的原因是因为我将 BlogPages 作为父级 Page 对象上的列表。
因此,当我尝试删除它时,它只是认为那里应该有另一个表来匹配该关联。
违规行:
public virtual IList<BlogPage> BlogPages { get; set; }