0

我正在使用 NHibernate 在我的应用程序中进行数据库访问。我ISession的 s 没有持久性,我对此很满意,因为它使我更容易将我的应用程序分成不同的层。唯一的困难是以一种很好的方式处理延迟加载。

我有一个看起来像这样的模型类:

public class User {
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
    public virtual Country CountryOfBirth { get; set }
    public virtual Country CountryOfResidence {get; set; }
}

目前,我已经CountryOfBirth设置CountryOfResidencefetch="join". 但是,由于我的数据库中的国家列表大部分是静态的,我想缓存这些值。我将CountryOfBirth属性更改为如下所示:

    Country countryOfBirth;
    public virtual Country CountryOfBirth{
        get
        {
            if (country is INHibernateProxy)
                countryOfBirth = CountryRepository.GetById(countryOfBirth.Id);
            return countryOfBirth;
        }
        set { countryOfBirth = value; }
    }

但是,它需要我的 Model 类知道 NHibernate 正在使用它,这会破坏封装。

有没有更好的方法来实现这一目标?例如,如果 NHibernate 尝试加载代理并且会话已过期,是否有办法让 NHibernate 自动通过我的 Repository 类?

还是我应该使用不同的方法?

4

1 回答 1

2

如果您想添加缓存功能,请查看 NHibernate L2 Cache。查看本教程http://nhforge.org/blogs/nhibernate/archive/2009/02/09/quickly-setting-up-and-using-nhibernate-s-second-level-cache.aspx并搜索此主题。通过使用缓存,您不会使用任何 NH 代理、存储库等来污染您的模型。

于 2012-05-03T10:16:44.717 回答