Skip to content

Software Development

Nuxt3

How to use Layouts in Nuxt 3

In Nuxt 3, layouts are a way to define a common structure for the pages of your application, In this detailed walk-through guide we explore how to create, define and use layouts in Nuxt 3

Nuxt3

How to use modules in nuxt 3

adding modules and gradually introduce more of the key features of Nuxt 3 that will help you to build more complex apps and features.

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.