ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
CategoryDateTitleContent Summary
2
Introduction01-05-2023Getting Started with ASP.NET Core
This beginner's guide walks you through the initial steps of setting up an ASP.NET Core project. It covers installing necessary software and creating a new project from scratch.
3
Authentication01-15-2023Implementing OAuth in ASP.NET Core
This article provides a detailed walkthrough on how to set up OAuth-based authentication in your ASP.NET Core application. It covers configuration, setup, and linking with OAuth providers like Google and Facebook.
4
Web API01-25-2023Building RESTful APIs with ASP.NET Core
This piece demonstrates the fundamentals of creating a RESTful API using ASP.NET Core. Topics include routing, handling HTTP methods, and response formatting.
5
Database02-05-2023Entity Framework Core: A Primer
This is an introduction to using Entity Framework Core in ASP.NET Core applications. It covers basics like code-first migrations, CRUD operations, and database relationships.
6
Performance02-15-2023Improving ASP.NET Core Performance
This article offers a collection of tips and tricks for optimizing the performance of your ASP.NET Core application. Topics include response caching, data optimization, and utilizing asynchronous programming.
7
Front-end02-28-2023Integrating React with ASP.NET Core
Learn how to seamlessly integrate a React frontend with an ASP.NET Core backend. The article covers the setup, data exchange between frontend and backend, and deployment.
8
Testing03-10-2023Unit Testing in ASP.NET Core
This guide focuses on setting up and running unit tests in an ASP.NET Core project. It covers frameworks like xUnit, mocking dependencies, and automated testing practices.
9
Deployment03-20-2023Deploying ASP.NET Core on Azure
This is a step-by-step guide that helps you deploy an ASP.NET Core application to Azure. It covers Azure setup, database migration, and various deployment strategies.
10
SignalR04-01-2023Real-time Apps with ASP.NET Core SignalR
This article offers an overview of building real-time applications using SignalR in ASP.NET Core. Topics include setting up SignalR, client-server communication, and real-time updates.
11
Security04-15-2023Secure Your ASP.NET Core App with HTTPS
Learn how to secure your ASP.NET Core application by implementing HTTPS. The guide covers generating SSL certificates, configuration, and enforcing HTTPS.
12
Middleware05-05-2023Custom Middleware in ASP.NET Core
This article shows how to write and integrate custom middleware components into your ASP.NET Core application. It covers the middleware pipeline, configuration, and best practices.
13
Containers05-20-2023Dockerizing your ASP.NET Core Application
A beginner’s guide that takes you through the steps of containerizing ASP.NET Core applications using Docker. It covers Docker installation, creating Dockerfiles, and deploying containers.
14
Blazor06-05-2023Introduction to Blazor in ASP.NET Core
This introductory article delves into building interactive web UIs with Blazor and ASP.NET Core. Topics include Blazor components, data binding, and routing.
15
API Versioning06-20-2023API Versioning in ASP.NET Core
This guide covers best practices for versioning APIs in an ASP.NET Core application. It includes strategies like URL versioning, header versioning, and maintaining backward compatibility.
16
Razor Pages07-05-2023Working with Razor Pages in ASP.NET Core
This tutorial covers the fundamentals of working with Razor Pages. It discusses how Razor Pages differ from MVC in ASP.NET Core and walks through building a simple Razor Pages application.
17
Background Services
07-20-2023Implementing Background Services in ASP.NET Core
Learn how to implement background services for long-running tasks in ASP.NET Core. This guide covers setup, different types of services, and how to run them in the background.
18
Caching08-05-2023Caching Strategies in ASP.NET Core
This article provides an overview of various caching strategies, including in-memory caching, distributed caching, and response caching, and how to implement them in ASP.NET Core.
19
Localization08-20-2023Localizing ASP.NET Core Applications
This guide teaches you how to add multiple languages and regional differences to your ASP.NET Core application. It covers resource files, localization middleware, and UI considerations.
20
Logging09-01-2023Logging and Monitoring in ASP.NET Core
This article discusses how to set up logging and monitoring features to keep track of the health and performance of your ASP.NET Core application. It covers third-party services and native ASP.NET Core features.
21
Advanced Topics
09-15-2023Advanced Dependency Injection in ASP.NET Core
This article is a deep dive into more advanced scenarios of using Dependency Injection in ASP.NET Core. It covers custom service lifetimes, factory patterns, and more advanced DI techniques.
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100