良好/简单的 asp.net mvc 应用程序与流畅的 nhibernate
我在哪里可以找到一个好的/简单的 asp.net mvc 应用程序与流畅的 nhibernate?任何建议..
Where can i find a good/simple asp.net mvc application with fluent nhibernate? Any suggestion..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我写了一个 示例 ASP.NET MVC 应用程序,它使用 FluentNHibernate 以及其他开源框架。 源代码位于
根据评论部分的要求,我尝试总结使用 ASP.NET MVC 设置 FluentNhibernate 的重要部分:
首先定义模型:
然后是允许您访问模型的存储库:
然后实现此存储库:
到目前为止没有FluentNHibernate 特定部分。现在让我们定义映射:
以及一个使用 SQLite 的 Spring.NET 会话工厂,但您可以根据需要进行调整:
接下来我们定义一个控制器:
一旦我们完成所有这些,我们需要将各个部分连接在一起。当我们使用 Spring.NET 时,我们需要提供一个自定义控制器工厂:
接下来是 web.config:
最后是 springContext.xml:
I wrote a sample ASP.NET MVC application which uses FluentNHibernate among other open source frameworks. The source code is available on github.
As requested in the comments section I've tried to summarize the important parts of setting FluentNhibernate with ASP.NET MVC:
Start by defining your model:
Then the repository that will allow you to access the model:
Then implement this repository:
So far no FluentNHibernate specific parts. Let's define the mapping now:
And a Spring.NET session factory which uses SQLite but you could adapt as necessary:
Next we define a controller:
Once we have all this in place we need to plumb the pieces together. As we are using Spring.NET we need to provide a custom controller factory:
Next comes web.config:
And finally the springContext.xml:
Orchard cms项目使用Fluent nhibernate。
http://orchard.codeplex.com/
The orchard cms project uses fluent nhibernate.
http://orchard.codeplex.com/