Mô tả

Overview

Creating a modular, testable, and maintainable application in .NET Core requires a solid foundation. Setting up an application architecture requires foresight and much consideration, as early decisions will impact how easily the application is extended and maintained.

In the long run, though, applications need to be maintained and, in this case, extended. Between its design and the way the code was written, neither is possible, so the application needs to be redesigned and future-proofed.

Why SOLID Architecture?

When we talk about SOLID architecture, what we refer to isn’t a straightforward task. Decisions made early in the process can have a large impact later on, and maintainability and testability play an important role. Adopting these practices can also contribute to avoiding code smells, refactoring code, and facilitating more efficient agile development.

SOLID stands for:

  • S - Single-Responsibility Principle

  • O - Open-closed Principle

  • L - Liskov Substitution Principle

  • I - Interface Segregation Principle

  • D - Dependency Inversion Principle

In this course, you explore foundational architectural principles which help with the creation of maintainable code. You will discover how to set up a real-world application architecture with ASP.NET Core. Then, you’ll learn how to plug in different, common blocks such as email and authentication and have a foundation to plug-in other third-party services as needed.

Everything in this course is .NET 6 / .NET 7 compatible.

When you finish this course, you’ll have the skills and knowledge to create a testable and maintainable ASP.NET Core application to architect real-world enterprise .NET Core apps.

N.B. - The project in this course is based on the deliverables in Complete ASP.NET Core and Entity Framework Development. While it is not mandatory to do this course, much of the existing code will be reused from this course's content.

Build A Strong Foundation in .NET Clean Architecture:

  • Learn Clean or Onion Architecture and Best Practices

  • Learn Command Query Responsibility Segregation (CQRS)

  • Implement Mediatr Pattern

  • Add Email Service using SendGrid

  • Efficient Exception Handling and Routing

  • Implementing Unit Testing

  • Moq and Shouldy

  • Global Error Handling with Custom Middleware and Exceptions

  • Adding Validation Using Fluent Validation

  • Build a .NET Core API and Blazor UI Application

  • Implement JWT(JSON Web Token)  Authentication

Content and Overview

To take this course, you must have some knowledge of .NET Core development and C#.

This is a huge course. Over 10 hours of premium content, but smartly broken up to highlight related activities based on each module in the application being built. We will also look at troubleshooting and debugging errors as we go along; implementing best practices; writing efficient logic, and understanding why developers do things the way they do. Your knowledge will grow, step by step, throughout the course, and you will be challenged to be the best you can be.

We don't do things the perfect way the first time; that is different from the reality of writing code. We make mistakes and point them out and fix them around them. By doing this, we develop proficiency in using debugging tools and techniques. By the time you have finished the course, you will have moved around in Visual Studio and examined logic and syntax errors so much that it will be second nature for you when working in the .NET environment. This will put your newly learned skills into practical use and impress your boss and coworkers.

The course is complete with working files hosted on GitHub, including some files to make it easier for you to replicate the demonstrated code. You will be able to work alongside the author as you work through each lecture and will receive a verifiable certificate of completion upon finishing the course.

Clicking the Take This Course button could be the best step you could take towards quickly increasing your income and marketability! Also, remember that if you don't think the course is worth what you spent, you have a full 30 days to get a no questions asked refund!


It's time to take action!

See you in the course!


Bạn sẽ học được gì

Implement SOLID Principles

ASP .NET Core Blazor and API Development

Advanced Tools - MediatR, Automapper, Fluent API and Validation

Custom Exceptions and Global Error Handling

Custom .NET Core Middleware

Using NSwag and NSwag Studio

Use Swagger for API Documentation

Implement CQRS Pattern

Use Identity and JWT To Secure Application API

Build API Client Secure Application

Moq and Shouldly Frameworks

Unit Testing

Yêu cầu

  • At least three months of C# Development
  • A Computer
  • Internet
  • A Willingness to Learn

Nội dung khoá học

13 sections

Introduction

2 lectures
Introduction
01:55
IMPORTANT - .NET 8 Update
00:26

Preliminary Concepts

6 lectures
Review of S.O.L.I.D Principles
05:07
Single Responsibility Principle
01:40
DRY Principle
01:31
Dependency Inversion
02:15
Understanding Clean Architecture
10:53
What We Will Be Building
04:04

Setup Clean Architecture Solution

4 lectures
Development Environment
00:59
Get Latest Visual Studio
03:19
Setting Up Solution
01:56
Overview of Solution Parts
01:33

Setting up the Application Core

17 lectures
Section Overview
00:23
Create the Domain Project
07:44
Create Application Core Project
08:45
Understanding CQRS, Mediator and Automapper
08:07
IMPORTANT: Automapper now easier to use!
00:10
Add Automapper and MediatR
06:54
*IMPORTANT* - Fix MediatR Registration Error
00:10
Setup Features Folder Structure (Vertical Slice Architecture)
05:12
Creating CQRS Query Request and Handler - Part 1
11:14
Creating CQRS Query Request and Handler - Part 2
06:50
Creating CQRS Command Request and Handler - Part 1
06:42
Creating CQRS Command Request and Handler - Part 2
06:29
Adding Custom Exceptions
06:07
Adding FluentValidation
16:41
*IMPORTANT* - Validation Rule Correction
00:14
Section Review
01:15
Section Source Code
00:01

Setting up Infrastructure Projects

11 lectures
Section Overview
01:13
Create the Persistence Project
01:54
Add Entity Framework and Database Context
13:51
Add Repository Implementations
16:52
EF Core - No Tracking
02:30
Completing Repositories
10:59
Create Infrastructure Project
01:40
Add Third-Party Email Service
11:03
Add Logging and Wrapper
11:40
Section Review
00:43
Section Source Code
00:01

Creating the API project

11 lectures
Section Overview
00:35
Create API Project
02:30
Configuring the API Project
09:40
Scaffolding Database
04:39
Implementing Controller with MediatR - Part 1
11:19
Implementing Controller with MediatR - Part 2
11:26
Complete Leave Allocation Feature
22:43
Complete Leave Request Feature - Part 1
19:05
Global Error Handling
14:55
Section Review
00:51
Section Source Code
00:01

Unit and Integration Testing

7 lectures
Section Overview
00:54
Creating Application Unit Project
04:21
Unit Testing the Application Code - Setup Mocks
11:44
Unit Testing the Application Code - Testing Handlers
12:02
Integration Testing - Entity Framework
11:19
Section Review
01:44
Section Source Code
00:01

Adding the UI

6 lectures
Section Overview
01:07
Creating UI Project - Blazor WebAssembly
08:48
Using NSwag and NSwagStudio to Consume API
10:46
Configure App for API
05:50
Setup Leave Type Management Service
16:53
Setup Leave Type Management UI
16:02

Securing API and UI

7 lectures
Add Security using Identity
23:14
IMPORTANT - Identity Core Package Change
00:07
Add Json Web Token (JWT) Authentication to API
21:43
Add Authentication Services to Blazor
22:02
Add UI Changes for Security
18:44
Section Review
01:29
Section Source Code
00:01

Complete Application Features

7 lectures
Setup Leave Allocation Management
15:21
Setup Leave Request Management - Part 1 - Employee Request
26:44
Setup Leave Request Management - Part 2 - Admin View
19:58
Setup Leave Request Management - Part 3 - Approval
09:55
Setup Leave Request Management - Part 3 - Cancel Request
15:39
Section Review
04:47
Section Source Code
00:01

Value Added Features

4 lectures
Add Third-Party Logging (SeriLog)
14:15
Improve Data Auditing
03:23
Add Notifications
05:26
Section Source Code
00:01

Conclusion

1 lectures
Conclusion
03:59

Bonus Section

1 lectures
Bonus Lecture
00:07

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.