使用subsonic 2.1(存储库模式)时如何实现unitofwork模式?
我正在为 asp.net mvc 应用程序使用 subsonic 存储库模式(2.1)。在我的应用程序中,有许多存储库,如 CategoryRepository、Blogrepository 等。在每个存储库中,我调用 subsonic 的 DB.Select().From( )...ExecuteReader()
然后从这些读取器加载域对象。
在控制器操作中,我从这些存储库进行多次调用,例如
List<IBlog> blogs=_blogRepository.GetHottestBlogs();
List<ICategory> categories=_categoryRepository.GetAll();
我是否必须为此实现任何工作单元模式?我的疑问是亚音速如何执行每个操作 DB.Update/Insert/Select 。是一个 TransactionScope 足以进行批量更新,还是我必须使用
SharedDbConnectionScope
才能获得更好的性能?
I am using subsonic repository pattern(2.1) for asp.net mvc application.In my application,there are many repositories like categoryRepository,Blogrepository etc.Inside each of this repository i am calling subsonic's DB.Select().From()...ExecuteReader()
and then loading domain objects from those reader.
In the controller action i make multiple calls from these repositories for e.g.
List<IBlog> blogs=_blogRepository.GetHottestBlogs();
List<ICategory> categories=_categoryRepository.GetAll();
do i have to implement any unitofwork pattern for this ?.My doubt is that how subsonic performs each operation DB.Update/Insert/Select .Is a TransactionScope
is enough for batch update or do i have to use SharedDbConnectionScope
to get better performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SubSonic,您必须结合 TransactionScope 和 SharedDbConnectionScope。
否则,每个命令都将使用它自己的专用连接,该连接在执行后被释放,这将导致隐式提交(至少对于 MySQL 和 Sql Server 我认为是这样)。
SharedDbConnectionScope 内的每个 SubSonic 查询都将共享相同的连接,因此您可以使用 TransactioScope。
并且您必须在 TransactionScope 之前使用 SharedDbConnectionScope,否则某些提供程序将无法检测到您正在执行事务。
With SubSonic you have to combine TransactionScope and SharedDbConnectionScope.
Otherwise every command will use it's own dedicated connection which is disposed after execution, which will lead to an implicit commit (at least for MySQL and Sql Server I think).
Every SubSonic query within a SharedDbConnectionScope will share the same connection, so you can use the TransactioScope.
And you have to use the SharedDbConnectionScope before the TransactionScope, otherwise some providers won't detect that you are executing a Transaction.