Skip to main content
Tag

asp.net core

All blogs tagged with asp.net core

6
Articles
597
Total Views

Showing 6 of 6 articles

03
May
2026
Integrating OpenAI GPT-4 API in ASP.NET Core: Chat, Completions, and Streaming
88 views

In this tutorial, readers will learn how to effectively integrate the OpenAI GPT-4 API into an ASP.NET Core application, covering chat functionality, text completions, and streaming responses. This integration is essential for creating intelligent applications that can understand and generate human-like text, enhancing user interaction and automating content generation. Familiarity with ASP.NET Core and basic concepts of APIs will be beneficial for following along.

28
Apr
2026
CWE-327: Replacing Weak Cryptography in ASP.NET Core with SHA-256 and AES
77 views

This post delves into the critical importance of replacing weak cryptographic algorithms such as MD5 and SHA-1 with stronger alternatives like SHA-256 and AES in ASP.NET Core applications. Understanding these concepts is vital for securing sensitive data and maintaining compliance with modern security standards. Readers should be familiar with basic cryptography principles and ASP.NET Core framework fundamentals.

12
Apr
2026
Implementing Asynchronous Data Access with Dapper in ASP.NET Core
98 views

In this tutorial, readers will learn how to implement asynchronous data access using Dapper in ASP.NET Core applications. Understanding asynchronous programming is crucial for building responsive and scalable web applications, especially when dealing with database operations. Familiarity with C#, ASP.NET Core, and basic SQL is recommended to follow along effectively.

12
Apr
2026
Dapper vs Entity Framework in ASP.NET Core: Choosing the Right Data Access Strategy
112 views

This post provides an in-depth comparison between Dapper and Entity Framework in ASP.NET Core, exploring their strengths and weaknesses in data access strategies. Understanding these frameworks is crucial for developers aiming to optimize performance and maintainability in their applications. Familiarity with C#, ASP.NET Core, and basic database concepts is recommended for following along.

09
Apr
2026
Securing Dapper Queries in ASP.NET Core Against SQL Injection
134 views

This post delves into securing Dapper queries in ASP.NET Core applications against SQL Injection vulnerabilities, a critical concern for any application interacting with databases. Understanding the methods and best practices for preventing SQL Injection is essential for maintaining the integrity and security of your data. Prior knowledge of C#, ASP.NET Core, and Dapper is recommended to fully grasp the concepts discussed.

Translate Page