How to generate PostgreSQL UUID with EF Core
How to guide to enable EF Core to auto generate UUID/GUID for postgreSQL databases
How to guide to enable EF Core to auto generate UUID/GUID for postgreSQL databases
developing software and working with a build or integration server, there are certain conventions that one should follow when making updates to the shared codebase
The singleton pattern is a design pattern that restricts the instantiation of a class to one object.
The Prototype Design Pattern is one of the Creational Design Patterns defined by the Gang Of Four (GOF) published their book Design Patterns: Elements of… Read More »The Prototype Design Pattern C# .net core
Starting a new projects is always difficult. In my experience, you’re always faced with the same questions. What technology stack do I use ? How… Read More »Starting a new project with Orchard Core
We take a look at using AWS Comprehend to start developing a Custom Name Entity Recognition utility to re-use in our software projects
Builder Pattern is useful for encapsulating and abstracting the creation of objects. It is distinct from the more common Factory Pattern because the Builder Pattern contains methods of customising the creation of an object.
How to create and use Serverless Framework Environment variables in AWS .net core lambdas
walk-through on how to implement full-blown Dependency Injection, Configuration and even make use of IHost functionality in your AWS Lambda projects.
I’ve previously discussed how to develop a .net core AWS Lambda with the serverless framework to provide an abstraction over the underlying operating system and… Read More »Simple Dependency Injection In AWS Lambda .net core
.Net Core console applications are by far the most popular applications most developers will routinely develop in order to implement some kind of automation-based task.… Read More »Making API calls with HttpClientFactory in Console applications
Step by step guide on how to Configure an AWS Lightsail Ubuntu server to deploy an ASP.net core website
Cookies are stale. These days there are better solutions for user authentication, which solve the headaches cookies cause with mobile and single-page applications.
Check out how to make use of JWT token authentication in .net core.
Serverless framework is a cloud provider agnostic toolkit designed to aid operations around building, managing and deploying serverless components for either full-blown serverless architectures or disparate functions as a service.
Learn how to use the Abstract Factory .NET Design Pattern C# in order to help improve and enhance your code for greater testability.
Factory Pattern creates objects, in this post we will implement the factory design pattern in a C# application. Using the Factory pattern, we develop an abstraction that isolates the logic for determining which type of class to create.
Clean code and the practices are about eliminating or at least attempting to reduce complexity. Although clean code solutions may seem elegant and efficient, they are not always easy and are often the direct result of combating complexity!
An opinionated overview and insight into the unit testing capabilities in .net core
Details on how to reverse engineer a MySql database using EF Core and resolve exceptions generated.
a high-level view of how the Simple Factory Pattern works in C# and .net core.