Category

C#

9 stories
J
Joynal Abedin

Authorization in Dot NET Core 7.0 API - Part-2

Authorization refers to the process that determines what a user is able to do. For example, an administrative user is allowed to create a document library, add documents, edit documents, and delete them. In its most basi...

8
J
Joynal Abedin

Searching & Filtering data in ASP.NET Core 7.0

Now i will implement searching api method. If user given text matched with database value then api will reture these array types of values. Step_01: namespace RootCRUDAPI.Interfaces.Manager { public interface ICoffeeM...

5
J
Joynal Abedin

Get data list from database server in Get API

Step_01: First of all, i need to create DbContext file. Then we will create Controller from where we will fetch data; namespace RootCRUDAPI.Data { public class CoffeeDbContext: DbContext { public CoffeeDbContext(Db...

5
J
Joynal Abedin

How does the Routing work in ASP.NET Core Web API?- Part-1

Routing in ASP.NET Core Web API application is the process of mapping the incoming HTTP Request (URL) to a particular resource i.e. controller action method.  For the Routing Concept in ASP.NET Core Web API, we generall...

5
How does the Routing work in ASP.NET Core Web API?- Part-1