Companies Home Search Profile

Clean Architecture in .NET 8 Core MVC with real time project

Focused View

Tarun Kumar Saini

5:41:21

450 View
  • 1. What is Clean Architecture.mp4
    03:28
  • 2. Core Component.mp4
    10:32
  • 3. Design Layers For Clean Architecture.mp4
    04:57
  • 4. Concert Booking Project.mp4
    03:49
  • 1. Project Entities.mp4
    04:31
  • 2. Concert Entity.mp4
    01:50
  • 3. Ticket and Booking Entity.mp4
    01:26
  • 1. Relationship between Venue, Artist and Concert.mp4
    04:01
  • 2. Relationship between Ticket and Booking.mp4
    05:48
  • 1. Model Validaton - Apply with all entities.mp4
    05:21
  • 1. Create Entityframework Core based Context Class.mp4
    07:06
  • 1. Create ConnectionString in Web Project.mp4
    02:56
  • 2. Register Connection String in Web Project.mp4
    03:27
  • 1. Generic Repository Interface.mp4
    06:48
  • 2. Artist Interface.mp4
    01:46
  • 3. Venue Interface.mp4
    01:07
  • 4. Concert Interface.mp4
    01:13
  • 5. Booking and Ticket Interface.mp4
    01:59
  • 6. Unit of work and Data Seeding Interface.mp4
    02:09
  • 1. Generic Repository Implementation.mp4
    12:28
  • 2. Artist Repository.mp4
    02:22
  • 3. Concert and Venue Repository.mp4
    04:59
  • 4. Booking and Ticket Repository.mp4
    02:02
  • 5. Unit of Work Repository.mp4
    03:45
  • 1. Configure Identity Part-1.mp4
    09:58
  • 1. First Migration.mp4
    04:01
  • 1. Create Empty Controller for project.mp4
    03:07
  • 1. Interface and Implementation for Venue Service.mp4
    12:59
  • 2. Interface and Implementation for Artist Service.mp4
    05:45
  • 3. Interface and Implementation for Concert Service.mp4
    08:58
  • 4. Interface and Implementation for Booking Service.mp4
    05:13
  • 5. Interface and Implementation for Ticket Service.mp4
    07:42
  • 1. Utility Interface.mp4
    02:58
  • 2. Utility Interfaces Implementations.mp4
    12:20
  • 1. Venue Controller with Views.mp4
    17:47
  • 2. Artist Controller Index and Create.mp4
    12:29
  • 3. Artist Controller Edit and Delete Method.mp4
    11:55
  • 4. Concert Controller Part-1.mp4
    10:53
  • 5. Concert Controller Part-2.mp4
    10:07
  • 6. Concert Controller Part-3.mp4
    13:37
  • 7. Concert Controller Part-4.mp4
    07:41
  • 1. Add Bootswatch theme.mp4
    09:34
  • 1. Add Default Admin for Project.mp4
    06:23
  • 2. Call Seeding Service in Program file.mp4
    04:40
  • 3. Apply Access Rights in Navigation.mp4
    03:57
  • 4. Apply Access Rights at controller level.mp4
    00:59
  • 1. Bug Fixing.mp4
    03:48
  • 2. Add Concert Data Feeding.mp4
    02:29
  • 1. Home page Design using Card.mp4
    10:44
  • 2. Details Action method with Views.mp4
    08:43
  • 3. Available Tickets with Views.mp4
    09:01
  • 4. Book Tickets.mp4
    06:49
  • 5. Fix Exception.mp4
    04:19
  • 6.1 ConcertBooking.zip
  • 6. Generate User Ticket.mp4
    12:35
  • Description


    Build Concert Booking application using .NET Core MVC, Entity Framework Core and ASP.NET Core Identity with Clean Archit

    What You'll Learn?


    • Clean Architecture based scratch project : Concert Booking Application
    • Four Layers like Domain, Application, Infrastructure and UI Layer.
    • Repository Pattern with Unit of Work
    • Identity with Razor Pages
    • one role in the application that is Admin and rest of user like a Authenticated User
    • Proper Authentication and Authorization
    • Data Seeding , Role and User Seeding
    • Data Access layer known as infrastructure layer. Repository done using generic and unit of work
    • Application layer with extra utility services

    Who is this for?


  • Beginner to advanced user learn from it
  • What You Need to Know?


  • Before start this course must to know about ASP. NET CORE MVC
  • Approx 6 month experienced in .NET MVC
  • More details


    Description

    This Course Include the following key points.  First of all it include clean architecture layers like domain layer , Infrastructure layer, Application layer and UI layer. This is a Beginner to the Advance level course on ASP.NET Core using Clean Architecture that will take you from basics all the way to advance mode. any one can learn concept of clean architecute and related topics but must to know the basics of ASP.NET CORE MVC.


    Building a concert booking application using ASP.NET Core with Clean Architecture involves structuring a solution that is maintainable, scalable, and decoupled. This approach not only leverages the robust features of ASP.NET Core but also implements Clean Architecture principles, ensuring that the application's business logic remains central and unaffected by external changes like database integrations or web frameworks. Here, we'll explore the key components of this architecture and their roles within an ASP.NET Core application designed for concert booking.


    Overview of Clean Architecture

    Clean Architecture, advocated by Robert C. Martin, focuses on the separation of concerns by dividing the software into layers with strict boundaries. The main goal is to achieve a system where the business rules (domain) are at the core and all other dependencies (like UI, database, and external services) are externalized. This decoupling ensures that changes in external layers like the database or UI frameworks have minimal impact on the core logic.


    Core Components of the System

    Domain Entities: These are the core business models representing concepts such as Concert, Venue, User, and Booking. They contain only business data and behavior which are critical to the business domain.


    Application Interfaces: This layer contains interfaces that define operations which can be performed from the outside world, such as IBookingService or IConcertRepository. These interfaces help in achieving Dependency Inversion, a key principle of Clean Architecture, which stipulates that higher-level modules should not depend on lower-level modules but should depend on abstractions.


    Application Services: Implements the interfaces defined previously. This layer acts as a coordinator between the Domain and Infrastructure, handling business logic implementations and transforming domain data for delivery to external layers (like API endpoints or MVC Controllers).


    Infrastructure: This layer implements persistence logic and any other operations on external services (e.g., sending emails). For a concert booking system, it would typically implement the IConcertRepository with Entity Framework Core, handle database migrations, and manage SQL or NoSQL database connections.


    Presentation Layer: In the case of an ASP.NET Core application, this could be an MVC project, a Razor Pages web app, or even a REST API. This layer is only concerned with user interaction, and it utilizes Application Services to handle business operations.


    Implementing Clean Architecture in ASP.NET Core

    Setting Up the Solution

    Start by creating an ASP.NET Core Web Application. Organize the solution into projects based on responsibilities:


    Domain: Class library for business models and interfaces.

    Application: Class library for application logic, DTOs (Data Transfer Objects), and interfaces implementation.

    Infrastructure: Class library for database operations, file system interactions, etc.

    Web: The entry point of the application, which could be an API or an MVC project.

    Dependency Injection (DI)

    ASP.NET Core comes with built-in support for dependency injection. Use this feature to wire up interfaces from Application to their implementations in Infrastructure. For example, in the Startup.cs file, configure services like


    Who this course is for:

    • Beginner to advanced user learn from it

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Tarun Kumar Saini
    Tarun Kumar Saini
    Instructor's Courses
    I am a passionate and creative software engineer with a strong focus on simplicity and thorough details. I have been programming since high school and I have been involved with multiple web using .netI have a Bachelor of Computer Engineering. I also have many years of experience with .NET C# and .NET MVC. I enjoy teaching along with my full-time job.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 54
    • duration 5:41:21
    • Release Date 2024/06/23