nHibernate更新懒惰属性时“没有持久性”

时间:2012-11-21 16:27:13

标签: nhibernate proxy lazy-loading

我正在接受

  

“MappingExecption:ProjectNameImportTypeProxy没有持久性”

在实体上,但仅在更新时

我的意思是,我创建了没有问题的实体。如果我重新加载它并再次保存它我得到异常,这意味着映射实际上是正确的。

如果删除lazy =“true”映射选项,我不会收到此错误。

这是映射:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
                   assembly="ProjectName"
                   namespace="Projects.ProjectName.Model">
    <class name="ProjectNameImportType" table="mid_ProjectNameImportTypes">
        <id name="ID" column="ID">
            <generator class="hilo"/>
        </id>

        <property name="Code" length="255" not-null="true" index="idx_ProjectNameImportType_Code"/>
        <property name="Name" length="255" not-null="true" />
        <property name="Description" length="2000" />
        <property name="FilesShare" length="2000" not-null="true" />
        <property name="ZippedAssemblies" lazy="true" type="BinaryBlob" not-null="true" />
        <property name="FileName" length="255" not-null="true" />
    </class>
</hibernate-mapping>

这是班级:

   /// <summary>
/// Represents a projectName import type
/// </summary>
[UniqueEntityKey("Code")]
public class ProjectNameImportType : ModelEntityBase
{
    /// <summary>
    /// Get and set code
    /// </summary>
    [Required]
    [StringLength(255)]
    public virtual string Code { get; set; }

    /// <summary>
    /// Get and set name
    /// </summary>
    [Required]
    [StringLength(255)]
    public virtual string Name { get; set; }

    /// <summary>
    /// Get and set description
    /// </summary>
    [StringLength(2000)]
    public virtual string Description { get; set; }

    /// <summary>
    /// Get and set files share
    /// </summary>
    [Required]
    [StringLength(2000)]
    public virtual string FilesShare { get; set; }

    /// <summary>
    /// Get and set zipped assemplies data
    /// </summary>
    [Required]
    public virtual byte[] ZippedAssemblies { get; set; }

    /// <summary>
    /// Get and set filename
    /// </summary>
    [Required]
    [StringLength(255)]
    public virtual string FileName { get; set; }
}

我做错了什么?

1 个答案:

答案 0 :(得分:4)

这种行为的原因隐藏在三个并发设置/事件的组合中:

  • 类本身被映射为lazy
  • 属性ZippedAssemblies byte [] )映射为lazy
  • 作为实例的实体是从NHibernate会话中逐出的(例如,通过显式的Evict(实体)或将其保存在请求之间的Web会话中)。

当所有这些事件一起发生时, NHibernate 无法更新这样的实体。我们拥有(在Evicting之后)不是标准实例,因为支持(很可能)大型属性({1}}

的延迟加载

有一些可能的情况如何对此进行评估,但只有一个我会建议:

  

每当您想要更新此实体时,请重新加载它(Session.Get(ID))   并使用新值更改其属性。将实体保留在NHibernate中   会话一直在进行(没有Evict()没有Session.Close())。

然后您可以在更改ZippedAssemblies时更新它。这将起作用,并可能有助于上述情况。