Tag

c#

9 stories
J
Joynal Abedin

How to Upload Images from a .NET Backend to Cloudflare R2 and Store the Image URL

Modern applications often need to store user-uploaded images such as profile pictures, food photos, receipts, invoices, or product images. While storing files directly on your web server works initially, it becomes difficult to manage as your application grows. A better solution is to use cloud object storage. Cloudflare R2 is a cost-effective, scalable object storage service that is compatible with Amazon S3 APIs and provides global access to uploaded files.

8
How to Upload Images from a .NET Backend to Cloudflare R2 and Store the Image URL
J
Joynal Abedin

Migrations in ASP Dot Net Core

In ASP.NET Core MVC, \"migration\" refers to the process of updating your database schema to reflect changes in your Entity Framework Core (EF Core) data model. This involves creating, applying, and managing changes to t...

5
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