You've put it off for long enough now...
Read more here:
https://www.devleader.ca/2023/11/13/how-to-build-an-asp-net-core-web-api-a-practical-beginners-tutorial/
https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview6/aspnetcore.md - #dotNET 10 is looking awesome. Here's what's new in #ASPnet 10 preview 6.
Are you using Testcontainers in your tests?
Read more here:
https://www.devleader.ca/2024/02/20/testcontainers-in-asp-net-core-a-simplified-beginners-guide/
A Mistake I Made with ASP.NET Core Middleware
I once added some logging middleware… at the wrong place in the pipeline.
Result? I missed all the early failures.
Lesson: Order matters in ASP.NET Core middleware.
Put logging and error handling before your app-specific stuff.
Learned that one the hard way.
https://dev.to/damikun/integrate-webhook-under-net-c-backend-4f7 - #WebHooks in #ASPnet. Nice article https://github.com/damikun. I love that it's part of a larger #monitoring in #dotNET workshop.
How can we use NUnit to test ASP.NET Core?
Read more here:
https://www.devleader.ca/2024/02/16/nunit-in-asp-net-core-what-you-need-to-get-started/
How can we use xUnit to test ASP.NET Core?
Read more here:
https://www.devleader.ca/2024/02/13/xunit-in-asp-net-core-what-you-need-to-know-to-start/
Unit testing user interfaces makes some people uncomfortable.
Read more here:
https://www.devleader.ca/2023/10/30/blazor-unit-testing-tutorial-how-to-master-practical-examples/
So, why did you skip out on those Blazor unit tests?
Read more here:
https://www.devleader.ca/2023/10/26/blazor-unit-testing-with-bunit-how-to-get-started-for-beginners/
Why should we bother unit testing in Blazor?
Read more here:
https://www.devleader.ca/2023/10/18/blazor-unit-testing-best-practices-how-to-master-them-for-development-success/
What's the WebApplicationFactory used for in ASP NET?
Read more here:
https://www.devleader.ca/2024/02/09/webapplicationfactory-in-asp-net-core-practical-tips-for-c-developers/