Analyzers in .net core are for informing the developers about potential issues in the code. The analyzers have been built into the C# compiler and every framework like asp.net core could have its own ...
I recently listened to the audio version of why nations fail twice and it encouraged me to order the paper version of it to have on my shelf as it’s definitely one of those books that should be ...
Regardless of what your job is, and what you are doing for life, you should be focused! No one with a distracted mind can do a great job. There are some jobs out there that force you to be more focuse...
When you are implementing many to many relations in SQL, in the case of using entity framework code fist you must use Icollection<> or Ilist<> of an entity. Imagine that you have this clas...
PagedList.Mvc is one of many good paging and sorting packages for ASP.NET MVC, in the below simple example I'm gonna implement it for content (posts) of a blog post, install the PagedList.MVC...
Domain Driven design(DDDesign) is not the same Model Driven Architecture(MDA). Although The root of both DDDesign and MDA is the same and it is Model Driven Engineering and also both of them aim to so...