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.

Configuring Ninject with Asp.Net MVC & Web Api

i have setup my project with Ninject IoC. My project has regular Asp.Net MVC controllers and Web Api controllers. …

asp.net asp.net-mvc dependency-injection ninject repository-pattern
How to implement Unit Of Work pattern with Dapper?

Currently, I am trying to use Dapper ORM with Unit Of Work + Repository Pattern. I want to use Unit of …

repository-pattern dapper unit-of-work
Best Repository Pattern for ASP.NET MVC

I recently learned ASP.NET MVC (I love it). I'm working with a company that uses dependency injection to load …

c# asp.net-mvc repository repository-pattern
Repository pattern and mapping between domain models and Entity Framework

My repositories deal with and provide persistence for a rich domain model. I do not want to expose the anemic, …

.net entity-framework domain-driven-design repository-pattern onion-architecture
Difference between a Factory, Provider and a Service?

What is the difference between the terms Factory, Provider and Service? Just getting into NHibernate and its Repository pattern (POCO …

oop design-patterns repository-pattern
Unit of Work + Repository Pattern: The Fall of the Business Transaction Concept

Combining Unit of Work and Repository Pattern is something used fairly widely nowadays. As Martin Fowler says a purpose of …

c# java architecture repository-pattern unit-of-work
Updating records using a Repository Pattern with Entity Framework 6

I'm writing a simple blog application and trying to establish CRUD operations in my generic repository pattern but I'm getting …

c# asp.net-mvc-5 entity-framework-6 asp.net-identity repository-pattern
Why use Repository Pattern or please explain it to me?

I am learning repository pattern and was reading Repository Pattern with Entity Framework 4.1 and Code First and Generic Repository Pattern …

c# entity-framework repository-pattern
DDD - the rule that Entities can't access Repositories directly

In Domain Driven Design, there seems to be lots of agreement that Entities should not access Repositories directly. Did this …

oop domain-driven-design repository-pattern s#arp-architecture
Entity Framework 6 Code First - Is Repository Implementation a Good One?

I am about to implement an Entity Framework 6 design with a repository and unit of work. There are so many …

entity-framework repository-pattern unit-of-work