Minimal API CRUD in .NET 10 step by step

Minimal API CRUD in .NET 10 Step by Step In this article, we will build a complete CRUD (Create, Read, Update, Delete) application using Minimal APIs in .NET 10. Minimal APIs allow you to create lightweight and fast web APIs with less code and better performance. …

Read more

New Features in .NET 10

New Features in .NET 10 .NET 10 is the latest Long-Term Support (LTS) release from Microsoft. It focuses on performance, modern development practices, and improved developer productivity. With .NET 10, developers can build faster, more scalable, and cloud-ready app…

Read more

Generating and Refreshing JWT Token in ASP.NET API

Generating and Refreshing JWT Token in ASP.NET API (Advanced) In this advanced guide, we will implement a production-ready JWT authentication system in ASP.NET API with Refresh Tokens, database validation, and proper security practices. Click here for complete cod…

Read more

Saving picture to Database in c#

Saving image to Database in c# saving picture to database is simple task. For saving images in database we have to convert image to byte array. And for reading we will reverse this process i-e we will convert back byte arrary to image. lets start by creating new …

Read more

SqlQuery in EF Core (EntityFrameworkCore) without DbSet

Executing SqlQuery in Entity Framework Core without DbSet Create asp.core MVC api project Add the required packages to project Add DbContext Class Add Extension methods Add Interface (IDepartmentService) to project Add Class (DepartmentService) and…

Read more

Creating SQL CLR Assembly in C#

Create CLR Assembly in C# SQL CLR SQL CLR or SQLCLR (SQL Common Language Runtime) is technology for hosting of the Microsoft .NET common language runtime engine within SQL Server. The SQLCLR allows managed code to be hosted by, and run in, the Microsoft …

Read more