About 21,200 results
Open links in new tab
  1. Repository Design Pattern in ASP.NET Core MVC using EF Core

    Implementing the Repository Design Pattern in an ASP.NET Core MVC application using Entity Framework Core is a great way to abstract the data access layer code from the rest of your application code, which makes your code more maintainable and testable.

  2. Implementing the Repository and Unit of Work Patterns in an …

    Jun 30, 2022 · Implementing these patterns can help insulate your application from changes in the data store and can facilitate automated unit testing or test-driven development (TDD). In this tutorial you'll implement a repository class for each entity type.

  3. Repository Pattern C# | Medium

    Jan 29, 2024 · Repository Pattern C# ultimate guide: Entity Framework Core, Clean Architecture, DTOs, Dependency Injection, Microservices

  4. Repository Design Pattern in C# - Dot Net Tutorials

    In this article, I will discuss the Repository Design Pattern in C# with an Example from the context of Entity Framework and ASP.NET MVC application. Please read our previous article discussing Dependency Injection Design Patterns in C# with Real-Time Examples.

  5. Repository Pattern in ASP.NET Core - Ultimate Guide

    Jun 28, 2020 · We learnt all about Repository Pattern in ASP.NET Core Application, Generic Repositories, Unit Of Work , a cleaner way to access data with layered projects, and other Use Case Scenarios. This covers nearly everything that you would need to know to become a Pro at Repository Pattern in ASP.NET Core.

  6. Designing the infrastructure persistence layer - .NET

    Feb 20, 2023 · Data persistence components provide access to the data hosted within the boundaries of a microservice (that is, a microservice's database). They contain the actual implementation of components such as repositories and Unit of Work classes, like custom Entity Framework (EF) DbContext objects.

  7. CRUD using the Repository Pattern in MVC - C# Corner

    May 9, 2024 · In this article, we will implement a "One-per business model" approach to design a repository in which there is a repository class for each entity type. For the Book entity type, we'll create a repository interface and a repository class.

  8. Repository Pattern In ASP.NET Core - C# Corner

    Aug 23, 2024 · This article introduces how to implement repository pattern in the ASP.NET Core, using Entity Framework Core. The repository pattern implements in a separate class library project. We will use the "Code First" development approach and create a …

  9. Using the Repository Pattern with the Entity Framework

    Mar 10, 2018 · Through this article, we are going to see how to use the Repository Pattern with the Entity Framework in an ASP.NET MVC application. The Repository Pattern, as well as the Unit of...

  10. Repository Pattern with Dependency Injection — MVC EF Code …

    Jul 9, 2018 · We are going to discuss the one of the most widely used a pattern called Repository Pattern. By using the repository pattern an application can have a clear separation between...

Refresh