Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Gramli committed Jan 13, 2024
1 parent b31f57a commit 03c6393
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,7 @@ To ensure that our REST API works as expected for end users we write **System te
- injects bussines handlers directly into endpoints map methods
- **Minimal Hosting Model**
- you are able to create single clean start point of the API
#### Cons
- **Complex Query Parameters (ASP.NET Core 6.0)**
- **ASP.NET Core 6.0** does not support complex query parameters, you have to write [Custom Binding](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/minimal-apis?view=aspnetcore-6.0#custom-binding), anyway **ASP.NET Core 7.0** contains binding support using **[AsParameters]** attribute.
- **Endpoints Grouping (ASP.NET Core 6.0)**
- **ASP.NET Core 6.0** does not support endpoint grouping, it means that you have to create repetitive code when map endpoints. Anyway **ASP.NET Core 7.0** already support it: [route groups](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/minimal-apis?view=aspnetcore-7.0#route-groups).

### Benefits of Clean Architecture
- **UI/Framework/Database Independent**
- easily change framework/database without touching internal layers
Expand Down

0 comments on commit 03c6393

Please sign in to comment.