ASP.NET Core MVC Login and Registration using Identity

Login and Registration using Identity

In this article, we will learn how to create a login and registration using identity in asp.net core. ASP.NET Core Identity provides a framework for managing and storing user accounts in ASP.NET Core apps.  Identity is flexible enough to sync with SQL Server databases, so we’ll store login information there. Entity Framework will store user data, … Read more

How to Create a Rest API using Laravel Passport with Swagger?

In this article, we will explore step-by-step guide on how to create a Laravel API with Swagger documentation. This powerful combination allows for secure authentication with Laravel Passport and smooth API documentation using Swagger. Before diving into the implementation, ensure you have the following prerequisites: Create Laravel Project 1. Start by creating a new Laravel … Read more

How to Create Local GIT Server on Windows

If you’ve been wondering if you can create a Local GIT Server on Windows like GitHub, Bitbucket, or even DevOps Azure, well I was too. This is the hard part of being a developer that is learning through the help of online resources. You need to devote a lot of time to research just to … Read more

Query DataTable using LINQ

This tutorial will show you how to Query DataTable using LINQ in C#. LINQ is an acronym for Language Integrated Query, which is descriptive for its use and what it does. The Language Integrated part means that LINQ is part of programming language syntax. LINQ can be very useful for querying for different type of data sources. … Read more