如何在 ASP.NET MVC 中使用 Active Record 的示例

发布于 2024-09-24 00:12:17 字数 439 浏览 6 评论 0原文

我正在寻找使用 NHibernate 和 MVC.net 的最佳方法。

我已经浏览过 http://www.codeproject.com/KB/architecture/NHibernateArchitecture。 aspx

有人指出了Castle项目Active record的使用。

我的目标是消除我的域内对任何 nhibernate 依赖项的需求。 我想要一个快速、简单且可通过 NHibernate 持久保存的域模型。

我可以提供一个简单的示例和一些解释吗?从中我可以学习使用 castle 项目在 MVC.net 中构建一个简单的应用程序。

谢谢

I am looking for the best approach to using NHibernate and MVC.net.

I have gone through http://www.codeproject.com/KB/architecture/NHibernateArchitecture.aspx

Someone has pointed to the use of Castle project Active record.

My aim is to eliminate the need for any nhibernate dependencies within my domain.
I want a quick and easy domain model that is persistable with NHibernate.

Can I have a simple example and and some explanations please from which I can learn to use the castle project to build a simple application in MVC.net.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

完美的未来在梦里 2024-10-01 00:12:17
  1. 使用 NHibernate 和 asp.net mvc 没有“最佳”方法。 NHibernate 是一个非常灵活的工具,您可以根据项目的需要以不同的方式使用它。
  2. Castle ActiveRecord 不会删除您域中对 NHibernate 的任何依赖项。事实上,它将引入更多依赖项,因为您需要使用一些属性来标记您的类。
  3. 有关使用 Castle ActiveRecord 的示例项目,请参阅此问题
  1. There is no "best" approach to using NHibernate and asp.net mvc. NHibernate is a very flexible tool, you can use it in quite different ways depending on your project's needs.
  2. Castle ActiveRecord will not remove any dependencies on NHibernate in your domain. In fact, it will introduce more dependencies, as you'll need to mark your classes with some attributes.
  3. About sample projects using Castle ActiveRecord, see this question.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文