Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blocklune/aspnetcoredemo-mynewapp

See [Back-end Web Development with .NET for Beginners](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oWunQnm3WnZxJrseIw2zSAk)
https://github.com/blocklune/aspnetcoredemo-mynewapp

asp-net-core beginner csharp microsoft

Last synced: 24 days ago
JSON representation

See [Back-end Web Development with .NET for Beginners](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oWunQnm3WnZxJrseIw2zSAk)

Awesome Lists containing this project

README

        

# MyNewApp

See [Back-end Web Development with .NET for Beginners](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oWunQnm3WnZxJrseIw2zSAk)

## Pt 3

CRUD Patterns: Create, Read, Update, Delete

## Pt 5

Middlewares are a piece of code that can run before and after each request is processed and they run on all requests in a nested order. They are a super powerful way for us to execute common functionality on each request. For example, logging some information whenever a request is received or response is processed.

How to direct HTTP requests with a given shape to the appropriate handlers is actually implemented as a middleware called the endpoint routing middleware.

## Pt 6

Endpoint filter

Add some validation for example.

Run after the endpoint routing middleware but before the actual handler logic.

## Pt 7

Dependency Injection