Build a command line application in .NET 6 with System.CommandLine

Reading Time: 6 minutes Purpose of Command Line programs Command-line applications, or CLIs, can be a convenient and powerful way to perform simple tasks quickly and efficiently. Some reasons why it might be interesting to develop a command-line application include: CLIs can be faster to use than graphical user interface (GUI) applications, as the user does not need to …

How-to create Web API Project with ASP.NET Core and SQLite

Reading Time: 8 minutes Nowadays it is easy to build HTTP services using ASP.NET Core Web API framework. It is popular as it reaches browsers and mobile devices and is light-weight. To store data we will use SQLite and Entity Framework Core. Entity Framework is an open-source ORM framework for .NET applications supported by Microsoft. It enables developers to work with …