Azure Saturday 2018: Keynote by Donovan Brown

Azure Saturday 2018: Keynote by Donovan Brown

Yesterday we had the Azure Saturday 2018.

Enjoy the Keynote Enterprise transformation (and you can too) by Donovan Brown:

Azure Saturday

Azure Saturday Munich is a free community-focused Azure event dedicated to educating and engaging members of the local technical community. Azure Saturday draws upon the expertise of local Azure IT professionals, developers and solutions architects who come together to share their real world experiences, lessons learned, best practices and general knowledge with other like-minded individuals.

Read Blog Post
ASP.NET Core ModelState Validation Filter

ASP.NET Core ModelState Validation Filter

During my code review sessions I see a lot of duplicate for the ModelState validation like

1public async Task<IActionResult> AddAsync(PersonAddSubmitModel model)
2{
3    if(ModelState.IsValid)
4    {
5        return BadRequest(ModelState);
6    }
7
8    // ......
9}

But it makes no sense to use the same code in every action to validate your submit model. It can be easier!

Read Blog Post