Top "Repository-pattern" questions

The repository pattern provides a way to provide isolation between the data access layer of your application with the business layer.

Repository / IQueryable / Query Object

I am building a repository and I've seen in many places 2 reasons not to expose IQueryable outside the repository. 1) The …

c# repository-pattern iqueryable objectquery
Repository pattern - how to correctly handle JOINs and complex queries?

I have a problem with Repository pattern - how to perform JOIN operations between several repositories. In this project, we …

asp.net-mvc entity-framework design-patterns domain-driven-design repository-pattern
Need a simple example of using nhibernate + unit of work + repository pattern + service layer + ninject

I am using nhibernate + fluent nhibernate asp.net mvc 3 ninject Currently I am using nhibernate, ninject with the repository pattern …

.net nhibernate repository-pattern unit-of-work ninject-2
Ruby on Rails with Repository Pattern?

After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a …

ruby-on-rails ruby unit-testing repository-pattern separation-of-concerns