c# dotnet core Timezone List
Generate EntityFramework CodeFirst Model from SQLServer
Generate EntityFramework Entity Class from SQL Server Table
.Net Core 6 – register environment appsettings.json files
The problem A .net core application comes with a framework that creates an appsettings.{env}.json file that can store environment specific settings. Generally settings in appsettings.json […]
Nuget and .NetCore versions – tips and tricks
The problem I have had some issues recently upgrading to .Net Core 6.0. In doing so I decided that I should stick to only Microsoft […]
The certificate chain was issued by an authority that is not trusted – FIXED
The Issue When moving from EntityFramework v6.0 to v7.0 you may get the following exception. The fix The fix is very simple. Just add the […]
Mock IOptions in unit test
The Issue You wish to unit test using the microsoft options Interface, but how do you inject your configuration class into your test framework? The […]
.net Core Automapper Dependency Injection from child libraries
The Problem I have recently built a set of .net core libraries that leverage automapper to help transform between my database entities and my contracts/models […]