Skip to content

Tag: C#


Categories:

Setting up Identity Framework for a .Net Web API

Post date:
Author:
Tags:

Introduction Here’s a quick guide on setting up Identity Framework with a .Net API. We’ll assume that you’ve already set up your API and are now looking to incorporate Identity Framework to manage user authentication and authorization efficiently. Additionally, we’ll be using Entity Framework for data access. For those that just want to see the […]

Categories:

Creating a Basic Inventory Tracker with ASP.NET MVC

Post date:
Author:
Tags:

Introduction In this tutorial, we’ll walk through the process of creating a basic inventory tracker using ASP.NET MVC. This project will serve as a simple yet functional inventory management system, allowing users to add, edit, and delete items from their inventory. For naming purposes, I’ll call this app “YourGroceryStore” but you can name it whatever […]

Categories:

SQLite with ASP.NET Web API: A Lightweight Database Solution

Post date:
Author:
Tags:

Getting Started In the past couple months, I’ve been working on a personal project using ASP.Net Web Api project. Considering the project’s modest scale, I opted to use SQLite over the more common relational databases such as MySQL or PostgreSQL. Project Setup and Tools Here’s my project setup and tools: ASP.Net 7.0 Web API Project […]