Blog

ASP.NET Core Configuration – Reloading, Binding, InjectingIntroduction In the last post, we talked about ASP.NET Core Configuration in general. We will see how is it set[…]Read More ASP.NET Core ConfigurationIntroduction ASP.NET Core configuration differs greatly from standard ASP.NET. Instead of web.config or any other way to set up the[…]Read More nameof expression is amazing! Say NO to magic strings!The nameof expression This is one of many goodnesses that came with C# 6.0. Back in July 2015. I have[…]Read More Google Analytics Tag Helper ComponentIntroduction In the last post, we talked about Tag Helper Components and how we can use them to modify existing[…]Read More ASP.NET Core MVC – Tag Helper ComponentsTag Helper Components – Introduction We already talked about Tag Helpers in several posts before. This time we will be[…]Read More EntityFramework Core – Add an implementation of IDesignTimeDbContextFactoryProblem Your DbContext in a separate project – class library project. You are trying to add new migration and update[…]Read More ASP.NET Core – Best practices (tips and tricks) – an opinionated approach – Part 2 Introduction In the last post, we talked about tips and tricks, different strategies and approaches to make your code and[…]Read More ASP.NET Core – Best practices (tips and tricks) – an opinionated approach – Part 1Introduction – ASP.NET Core Best Practices This post is about ASP.NET Core best practices post. We will talk about some[…]Read More ASP.NET Core – ConfigureServices vs ConfigureIntroduction We already talked about Configuration method inside of Startup when we talked about requests and middleware. In this post,[…]Read More ASP.NET Core SignalR – Simple chatIntroduction In the last post, we briefly mentioned what SignalR is all about and talked about the history of the[…]Read More