Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/blocklune/aspnetcoredemo-mynewapp
- Owner: BlockLune
- Created: 2024-07-08T03:44:29.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T04:39:53.000Z (6 months ago)
- Last Synced: 2024-07-08T05:27:12.879Z (6 months ago)
- Topics: asp-net-core, beginner, csharp, microsoft
- Language: C#
- Homepage: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oWunQnm3WnZxJrseIw2zSAk
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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