
Chapter 3: Controllers
In CA a controller takes input, validates it and convert it to the format best used for the use-cases layer (especially the interactors). This is where I did the compromises … Continue Reading Chapter 3: Controllers
Marc blogs about Tech
In CA a controller takes input, validates it and convert it to the format best used for the use-cases layer (especially the interactors). This is where I did the compromises … Continue Reading Chapter 3: Controllers
Last year I’ve read several new books about software development. One of them was the book “Clean Architecture: A Craftsman’s Guide to Software Structure and Design” by Robert C. Martin … Continue Reading My journey in Clean Architecture and Domain Driven Design
If you write an app you probably need a way to store data. If you do it using a SQL Database (eg. SQL-Server) you need a way to change your … Continue Reading Update SQL Database using EF Core and Azure DevOps
For a new app I’m writing using ASP.Net MVC Core 2.1, EF Core 2.1 and ASP.Net Identity 2.1 I had to implement the sign-out / log-out functionality. You may ask … Continue Reading Fix sign-out with ASP.Net Identity Core 2.1
This is a topic my colleague and I are discussing a lot the last few weeks because we started a little internal framework/library which should help us building small to … Continue Reading Layer-Architecture: Separation of View, Business-Logic and physical data-access
ASP.Net MVC Core introduced the new TagHelpers. The should take the C#-Magic out of the Razor views so people without C# know-how – mainly “the HTML/CSS-only Web-Designer” can work on … Continue Reading Thoughts about TagHelpers
Some time ago I’ve written a blog post on how to build a connection indicator using ASP.Net MVC, SignalR and TypeScript. I had to write one again and did an … Continue Reading SignalR Connection Indicator reloaded
I am currently working on a new little web application using the good old ASP.Net MVC 5. This application should be hosted on Azure App Service and as our company … Continue Reading Quick developer tour on Microsoft Application Insights
I’ve build a message infrastructure for the company I am working for which allow to collect tons of production data from our factory (about >4’000 db records per minute). In … Continue Reading Build a SignalR Connection Indicator with TypeScript and Knockout
At my company we had several ASP.Net MVC projects what needed to serve some files with a custom MVC Controller/Action. The general problem with this is that IIS tries hard … Continue Reading Configure IIS for passing static-file requests to ASP.Net/MVC
After some initial skepticism regarding Areas, I now use them more and more when building new Web-Applications using ASP.Net MVC. Therefore, I decided to cover some of my thoughts and … Continue Reading ASP.Net MVC Areas