我有一个使用NHibernate的WCF服务,我试图通过我的WPF连接这个WCF服务并从我的SQL数据库中获取所有记录。一些如何抛出这个异常,我对此没有任何线索。请帮我解决这个问题。
例外:
'Gateway.DataAccess.NHibernateDAO.NHibernateHelper'的类型初始值设定项引发异常。
导致:
尝试创建“Client.Modules.Metadata.ViewModel.StoriesViewModel”类型的实例时发生异常。
这是我的NHibernateHelper类
namespace Webster.Gateway.DataAccess.NHibernateDAO
{
public sealed class NHibernateHelper
{
private const string CurrentSessionKey = "nhibernate.current_session";
// An ISessionFactory is threadsafe, many threads can access it concurrently and request ISessions
private static readonly ISessionFactory sessionFactory;
// An ISession is a non-threadsafe object that represents a single unit-of-work with the database
////private static ISession currentSession;
public static ISessionFactory SessionFactory
{
get
{
return sessionFactory;
}
}
static NHibernateHelper()
{
sessionFactory = new Configuration().Configure().BuildSessionFactory();
}
}
}
答案 0 :(得分:0)
找到了罪魁祸首,它与我的应用程序无关,我只需要在IIS中更改应用程序池设置,并将身份更改为我的用户名。我在IIS中托管此WCF服务。
现在感谢很多人。