问题是我的MVC应用程序与我的数据库连接良好但是当我查询它时它没有返回任何内容(" var model"是空的)并且我不知道问题是什么。我使用SharpLite模板已经实现了自动化并使用NHibernate连接到我的数据库,我已经实现了#34;用户"实体在" MyProject.Domain"。这是我的用户控制器中的代码:
private readonly IRepository<User> _repository;
public UserController(IRepository<User> repository)
{
_repository = repository;
}
public ActionResult Index()
{
var model = _repository.GetAll();
return View(model);
}
这是来自NHibernate初始化程序的代码:
public static Configuration Initialize()
{
var configuration = new Configuration();
configuration
.Proxy(p => p.ProxyFactoryFactory<DefaultProxyFactoryFactory>())
.DataBaseIntegration(db => {
db.ConnectionStringName = "MyProjectConnectionString";
db.Dialect<PostgreSQL82Dialect>();
})
.AddAssembly(typeof(ActionConfirmation<>).Assembly)
.CurrentSessionContext<LazySessionContext>();
var mapper = new ConventionModelMapper();
mapper.WithConventions(configuration);
return configuration;
}
答案 0 :(得分:0)
您需要查看发送到数据库的语句以及结果。 尝试以下方法之一:
我目前还没有足够的知识来确定错误。
答案 1 :(得分:0)
验证您的User
实体是否继承Entity