Skip to content

Dotnet

dotnet

How to use Azure Blob Storage

A walk-through guide exploring how to utilize another commonly required aspect for enterprise software application and the ability to store documents, images and various other data files, using Azure Blob Storage.

dotnet

How to do Entity Validation with EF Core

Data validation in API’s is crucial task yet is often overlooked, with Entity Framework Core entity data validation is made easier and it can also be expanded upon to provide robust solutions

dotnet

What is this Directory.Build.props file all about?

With introduction of MsBuild we can now manage all these property settings and more in a single file that we can place in the Root of our solution directory along our solution file and it will be applied to all projects defined in the solution automatically.

dotnet core

How to use the Strategy Pattern in C#

The strategy design pattern splits the behavior (there are many behaviors) of a class from the class itself. This has some advantages, but the main draw back is that a client must understand how the Strategies differ.

State Management using Dapr

Statement management can be a key aspect of any application design. It tends to cover a broad range data storage capabilities in your application, which may include accessing files on the file system or accessing a database of some description, with the purpose of manipulating the state of an object.

In this article we’ll explore how to create a simple state management microservice using dapr