我正在使用 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
设置CountryOfResidence
为fetch="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 类?
还是我应该使用不同的方法?