NHibernate-检索数据库条目后执行步骤

本文关键字:执行 检索 数据库 NHibernate- | 更新日期: 2023-09-27 17:59:42

我有一个类,它附加了一些元数据。例如:

public class Parameter<T> : IParameter
{
    public string Id { get; set; }
    public T Value { get; set; }
    public List<IParameter> Metadata { get; set; }
}

我有另一个类,它包含一个IList<IParameter>

public class Bar
{
    public IList<IParameter> Parameters { get; set; }
}

我有一个IUserType,它可以将某些类型存储为JSON(例如List<IParameter>)。我计划使用这个存储Bar.Parameters,所以列值看起来像:

[
    {
        "id": "letter",
        "value": "a",
        "metadata": [
            "options": [ "a", "b", "c" ]
        ]
    },
    {
        "id": "cat.name",
        "value": "Mittens",
        "metadata": [
            "display_name": "Name"
        ]
    }
]

但是,我没有必要存储元数据,因为它在其他地方定义,并且可以使用Parameter.Id进行检索。相反,我想存储一个根据其值映射的id数组:

[
    "letter": "a",
    "cat.name": "Mittens"
]

我知道如何以这种方式编写Parameters列,但我不确定如何在检索到元数据后让Bar检索元数据。

理想的情况是类似于WCF中的OnDeserialized属性。这让我可以在Bar上定义一个方法,该方法在反序列化后被调用:

public class Bar
{
    public string Type { get; set; }
    public IList<IParameter> Parameters { get; set; }
    [OnDeserialized]
    private void OnDeserialized(StreamingContext ctx)
    {
        // Extremely simplified example of how the Foo metadata may
        // be retrieved.
        foreach(var parameter in Parameters)
        {
            parameter.Metadata = BarMetadataStore.GetMetadata(Type, parameter.Id);
        }
    }
}

我希望避免手动调用Bar上的函数来检索元数据,因为我真正的Bar是大型类层次结构的一部分。当我检索所属类时,NHibernate会自动检索Bar作为联接的一部分。

同样重要的是,Bar可以执行"反序列化"步骤,因为其他类使用Parameter<T>类,并且可以从与Bar不同的位置填充元数据。

我曾考虑使用IUserType来加载NullSafeGet中的元数据,但GetMetadata依赖于Bar的另一个属性,我不知道如何在所有必要的地方获得该值。

简而言之:在NHibernate/FluentHibernate中有类似[OnDeserialized]的东西吗?

NHibernate-检索数据库条目后执行步骤

我认为事件侦听器(更具体地说,IPostLoadEventListener)就是您想要的。