Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (8)
Shafaet Hossain(8)
Dashrath Hapani(6)
John Godel(5)
Satya Karki(5)
Ayush Gupta(4)
Divyansh Gupta(4)
Mark Pelf(4)
Ziggy Rafiq(4)
Anup Hosur(4)
Manoj Kalla(4)
Rijwan Ansari(3)
Vinoth Xavier(3)
Micheal Xavier A (2)
Mahesh Chand(2)
Nitin Pandit(2)
Ajay Kumar(2)
Geo J Thachankary(2)
Lisa Fusco(2)
Kirtesh Shah(2)
Jayraj Chhaya(2)
Naimish Makwana(1)
Velladurai (1)
Niraj Parmar(1)
Bhawna Vishwakarma (1)
Sarthak Varshney(1)
Nagi A(1)
Afsar Uddin(1)
Jitendra Mesavaniya(1)
Sagar Rane(1)
Allen Oneill(1)
Rikam Palkar(1)
Maria Joshua Roy(1)
Vipul Malhotra(1)
Sangeetha S(1)
Mohammad Hasan Hosseini(1)
Pravinkumar Birajdar(1)
Ishika Tiwari(1)
Ashish Bhatnagar(1)
Harsh Sharma(1)
Jignesh Kumar(1)
Ganesan C(1)
Praveen Raveendran Pillai(1)
Resources
No resource found
Modern CQRS and Messaging in .NET with Wolverine
Jun 30, 2025.
Learn how to use Wolverine, a powerful .NET message bus library, to handle commands, publish events, and schedule background tasks in a simple console app with zero boilerplate and full CQRS support.
Mastering Connection Pooling with Dapper in ASP.NET Core Web API
Jun 27, 2025.
In modern web development, one of the key challenges when working with databases is efficiently managing database connections.
Service Lifetimes in ASP.NET Core: Transient vs Scoped vs Singleton
Jun 25, 2025.
Learn the differences between Transient, Scoped, and Singleton service lifetimes in ASP.NET Core with real-world examples
Understanding the .NET Ecosystem
Jun 24, 2025.
Explore the .NET ecosystem — from C#, ASP.NET Core, and Entity Framework to ML.NET and .NET MAUI — with clear explanations and real-world examples.
Can I build AI or machine learning apps in C# like I can in Python?
Jun 21, 2025.
Can you build AI or machine learning apps using C# like you can in Python? Absolutely! While Python leads in AI development due to its rich ecosystem, C# offers powerful tools like ML.NET, ONNX Runtime, and Azure Cognitive Services for building and deploying AI solutions in .NET applications. This guide explains how to use C# for AI, where it shines, and when Python might still be the better choice.
Health Checks in .NET 8 Web API: A Comprehensive Guide
Jun 18, 2025.
Ensure your ASP.NET Web API’s reliability with .NET 8 health checks—monitor SQL Server, external APIs, and network connectivity using JSON-formatted diagnostics for proactive monitoring, easier debugging, and improved application resilience.
How to use Ngrok in ASP.NET Core
Jun 18, 2025.
When building modern web applications, developers often face a common challenge: testing locally developed webhooks, APIs, or third-party integrations that require a publicly accessible URL.
Vehicle Count Visualization Using ApexCharts in ASP.NET MVC
Jun 10, 2025.
In this snippet, we are working on visualizing vehicle category counts (B and C) using a donut chart powered by ApexCharts.
GitHub Copilot Agent Looks Promising (June 2025)
Jun 10, 2025.
A hands-on review of GitHub Copilot Agent in a real-world ASP.NET 8 project with 123k+ SLOC. Covers AI code reviews, method generation, tool limitations, and major improvements over past versions.
Multi-Tenant SaaS Applications in ASP.NET Core
Jun 10, 2025.
As Software-as-a-Service (SaaS) continues to dominate the tech landscape, building applications that serve multiple customers (tenants) efficiently from a single codebase becomes essential.
Building Background Tasks in ASP.NET Core
Jun 09, 2025.
In modern ASP.NET Core applications, especially those involving microservices, background processing is a key requirement. Whether it’s sending emails, processing Kafka messages, running cron-like jobs, or handling long-running workflows, background services are essential.
Testing with Moq for Clean and Reliable Code in ASP.NET Core with C# 13 and xUnit
Jun 08, 2025.
With this tutorial, you will learn how to use C# 13, xUnit, and Moq to test your APIs in ASP.NET Core using best practices. The guide was written by Ziggy Rafiq.
Best Practices for Structuring Large ASP.NET Projects: A Simple Guide
Jun 07, 2025.
A beginner-friendly guide to organizing large ASP.NET projects using clean architecture, feature-based folders, and practical tips for maintainability and scalability.
Getting Started with Machine Learning in .NET
Jun 05, 2025.
Learn how to build a simple ML.NET app in .NET using Visual Studio. From loading CSV data to training a regression model and making predictions, this guide covers the basics of integrating ML into your projects.
Calling REST APIs in Blazor Server: A Beginner's Guide with Example
Jun 04, 2025.
In this article, we will learn how to call REST APIs in a Blazor Server application using HttpClient. We’ll walk through how to send GET, POST, PUT, and DELETE requests, and handle JSON responses using strongly-typed models.Whether you're building a dashboard, e-commerce site, or internal tool, REST API integration is a must-have skill for Blazor developers.
Logging in ASP.NET Core Web API Using MongoDB
Jun 03, 2025.
Logging is one of the most important parts of building a real-world application. It helps you track errors, monitor behavior, and understand what your app is doing behind the scenes.
Building a Clean ASP.NET Core API with C# 13, EF Core, and DDD
Jun 02, 2025.
The guide is written by Ziggy Rafiq and follows real-world architecture and testing best practices to provide a clean, scalable REST API using ASP.NET Core, C# 13, EF Core, and MS SQL.
Mastering API Development in .NET
Jun 02, 2025.
This article provides a practical guide for .NET developers to build clean, scalable, and maintainable APIs using ASP.NET Core.
Creating a "Pooled" Dependency Injection Lifetime in C# 13
May 19, 2025.
Discover how Ziggy Rafiq demonstrates how to set up a custom "pooled" dependency injection lifetime in C# 13 using ObjectPool<t> with best practices, DI registration, and high-performance service examples.</t>
.NET Aspire Integrations (SQL Server Integration in Aspire Applications)
May 14, 2025.
In this chapter, you'll learn how to integrate SQL Server into your .NET Aspire applications with minimal configuration and maximum flexibility.
C# Data Science With C# 14 Features (Comprehensive Guide)
May 10, 2025.
C# 14, with features like ML.NET, Microsoft.Data.Analysis, and Azure integration, is now a powerful tool for data science, offering secure, high-performance solutions for machine learning, data analytics, and large datasets.
Improved CRUD operations for GridView with Redshift in ASP.NET Core MVC (Utilizing C# 14 Features)
May 08, 2025.
Learn how to enable CRUD operations in an ASP.NET Core MVC application using Amazon Redshift and C# 14 features. This guide covers setup, connection, SQL commands, data manipulation, security, and best practices.
Build a CRUD App in .NET 8 MVC Using Dapper and Repository Pattern
May 06, 2025.
Learn to build a CRUD app in .NET 8 MVC using Dapper for lightweight data access and the Repository Pattern for clean code architecture.
Advanced C# Database Tricks into a Practical Solution
May 02, 2025.
This project demonstrates an advanced C# database architecture combining EF Core, Dapper, and ADO.NET to achieve optimal performance, flexibility, and maintainability—complete with clean architecture, logging, and benchmarks.
Akka.NET is the Best Choice for Reactive Systems in C# .NET 9
Apr 26, 2025.
Build responsive and resilient applications using Akka.NET in .NET 9. Leverage the actor model to create scalable, fault-tolerant, message-driven systems with ease—ideal for real-time services, microservices, and high-throughput apps.
Building a User Subscription Module in ASP.NET MVC with C# 14
Apr 25, 2025.
Learn how to build a complete User Subscription Module in ASP.NET MVC using C# 14 features, with registration, plans, payment logic, and access control for scalable, modern subscription-based web apps.
Observability in ASP.NET Core with OpenTelemetry & Azure Monitor
Apr 16, 2025.
Learn how to implement OpenTelemetry in ASP.NET Core for robust observability using metrics, logs, and traces—integrated with Azure Monitor for real-time insights, alerts, dashboards, and advanced telemetry patterns.
How to Publish ASP.NET Core MVC Project.NET 8 with View Files
Apr 14, 2025.
ASP.NET Core MVC .NET 8 publish cshtml file, publish view in asp.net core mvc, publishing CSHTML file in .NET 8 MVC project.
Docker Deployment for ASP.NET Core API & Blazor Apps
Apr 10, 2025.
Learn to Dockerize ASP.NET Core APIs and Blazor apps with real-world examples, Compose setups, and pro tips to avoid pitfalls.
GitHub Copilot (Gen-AI) is Helpful, But Not Great (March 2025)
Apr 05, 2025.
GitHub Copilot Pro boosts productivity in ASP.NET 8/C# by suggesting code via AI, helping with repetitive tasks. While not perfect, it’s useful with training, prompt engineering, and context setup.
Automating News Publication with .NET: A Deep Dive into the AI News Automation System
Apr 04, 2025.
AI News Automation is a .NET 8 solution that auto-discovers, summarizes, and publishes trending news using AI, HTML parsing, and scheduling for real-time, scalable, and intelligent content delivery.
Overview of Razor Views, Razor Pages and Razor Components
Apr 02, 2025.
Explore the differences between Razor Views, Razor Pages, and Razor Components in ASP.NET Core. Learn how Razor Views work in MVC, how Razor Pages simplify page-based development, and how Razor Components power Blazor applications.
Mastering Eager Loading in ASP.NET Core Web API
Mar 31, 2025.
Eager Loading in ASP.NET Core Web API is a technique using Entity Framework Core to load related data (like child entities) alongside the main entity in a single query. It helps improve performance by reducing database round-trip use.Include() and .ThenInclude(). Ideal for situations where related data is always needed.
Deploying ASP.NET Core Apps To Azure Kubernetes Service
Mar 28, 2025.
Deploying ASP.NET Core apps to Azure Kubernetes Service (AKS) enables scalable, containerized applications in the cloud.
Advanced APIs with ASP.NET Core: Middleware, EF Core, and Versioning
Mar 28, 2025.
Learn how to build advanced APIs with ASP.NET Core using middleware, Entity Framework Core (EF Core), and API versioning. This guide covers request handling, database management with EF Core, and implementing versioning strategies for scalable and maintainable APIs.
Understanding CORS Errors in .NET Applications
Mar 28, 2025.
CORS (Cross-Origin Resource Sharing) errors occur when a web application tries to access resources from a different domain, violating the same-origin policy.
ASP.NET Core Localization with Automated Translations via Result Filters
Mar 28, 2025.
Enhance ASP.NET Core localization by leveraging automated translations via result filters. This approach enables dynamic content translation in API responses, improving multilingual support.
Implement idempotent APIs in ASP.NET Core
Mar 27, 2025.
Idempotent APIs ensure repeated requests yield the same outcome, preventing duplicate operations. This article explores idempotency in HTTP methods, real-world examples, and implementation techniques for robust and reliable web services.
Lazy Loading in ASP.NET Core Web API
Mar 26, 2025.
Learn how to implement Lazy Loading in ASP.NET Core Web API using Entity Framework Core. This complete guide covers configuration, models, DTOs, controllers, and best practices with a working example.
The Role of Government in an AI World: Policy, Regulation, and Social Safety Nets
Mar 25, 2025.
Governments must adapt policies to manage AI’s rapid evolution, balancing innovation with societal concerns. Investing in re-skilling, ethical AI regulations, and inclusive economic policies is key to ensuring AI benefits everyone.
Understanding Resiliency in .NET Aspire
Mar 26, 2025.
Resiliency in .NET Aspire is key to building fault-tolerant applications. Using Polly, developers can implement retries, circuit breakers, timeouts, and fallback policies to handle transient failures.
Google Developer Group, CSharp & HackIndia: Expand Web3 & AI Student Developer Reach in India
Mar 24, 2025.
GDG Partners with HackIndia to expand its reach to student developers across India.
How to Dependency Inject in Blazor Applications
Mar 24, 2025.
Dependency Injection (DI) is a design pattern that enhances code maintainability and testability by injecting dependencies into components rather than creating them internally. Blazor, being part of the ASP.NET Core ecosystem, has built-in support for DI.
ASP.NET Session State: Storing Data Beyond IIS Restarts
Mar 20, 2025.
?To maintain ASP.NET sessions after an IIS restart, configure the session state to use SQL Server, State Server, or a distributed cache like Redis instead of the default in-memory storage.
Explicit Loading in ASP.NET Core Web API
Mar 18, 2025.
Explicit Loading in ASP.NET Core Web API is a technique used to manually retrieve related data from the database when needed, using LoadAsync() on navigation properties. Unlike eager loading (Include()) or lazy loading, explicit loading provides better control over database queries, improving performance and efficiency. It is useful when related data is conditionally required.
Integrating .NET Aspire with Dapr for Cloud-Native Apps
Mar 17, 2025.
Integrating .NET Aspire with Dapr for Cloud-Native Apps
The Object Oriented Programming
Mar 17, 2025.
The Object Oriented Programming (OOP)  improves the scalability and reusability of the code. This comprise of class and objects.
.NET Middleware with Practical Applications and Full Code Samples
Mar 17, 2025.
Middleware is an essential component of the ASP.NET request pipeline. It allows developers to run code during both the request and response lifecycle. This article, explains what middleware is, how it works, and provide real-world practical use cases with complete code examples.
Understanding Context Manager in Python
Mar 15, 2025.
?Python's context managers, implemented via the statement, ensure efficient resource management by automating setup and teardown operations, such as opening and closing files, even when exceptions occur.
Protecting Sensitive Data in ASP.NET Core 9 with Azure Key Vault
Mar 10, 2025.
This article describes what is Azure key vault and manage the secrets using it. Additionally, it demonstrates how to implement it in ASP.NET Core 9 application.
Working with Dataset Data in ASP.NET GridView
Mar 08, 2025.
This article covers data binding, displaying records, sorting, paging, and editing in GridView. Understand how to fetch data from a database, manipulate it using DataTables, and present it efficiently using ASP.NET GridView for a seamless user experience.
Predicting User Behavior in .NET 9 with ML.NET and SDCA Logistic Regression
Mar 07, 2025.
This article covers data preparation, model training, and evaluation to help you build predictive analytics solutions. Enhance decision-making with AI-powered insights and integrate machine learning into your .NET applications.
Optimizing Performance in Blazor Server Applications
Mar 04, 2025.
Optimizing Blazor Server applications involves minimizing network traffic by reducing unnecessary component re-renders and implementing partial rendering. Efficient SignalR management and state management are crucial, alongside optimizing database queries and memory usage. Enhancing UI rendering, utilizing background processing, and employing profiling tools further boost performance.
Why Use Blazor?
Mar 04, 2025.
Blazor is a powerful framework for building modern web applications using C# and .NET instead of JavaScript. It provides several advantages that make it a compelling choice for developers, especially those already working within the .NET ecosystem.
API Documentation with Scalar in ASP .NET Core
Mar 03, 2025.
This article covers setting up Scalar, integrating it with your .NET 9 project, and generating interactive API documentation. Improve API usability with clear schemas, request/response details, and testing tools, making development more efficient.
Chain of Responsibility Using Delegate Chaining in .NET
Mar 02, 2025.
The Chain of Responsibility (CoR) pattern enables flexible processing pipelines, used in ASP.NET Core middleware, HttpClient handlers, and validation pipelines like FluentValidation. It supports dynamic rules, async execution, and extensibility.
Harnessing ML.NET for Sentiment Analysis in .NET 9 Applications
Mar 01, 2025.
Learn how to build a Sentiment Analysis API using ML.NET and .NET 9. This guide covers setting up an ASP.NET Core Web API, training a model, and integrating machine learning for text sentiment prediction.
Real-Time Anomaly Detection in Server Logs with .NET 9 and ML.NET
Feb 28, 2025.
This article explores machine learning techniques to identify unusual patterns, detect errors, and enhance system monitoring. Improve server performance and security with AI-driven log analysis in .NET applications.
Azure Front Door for Disaster Recovery: Keeping Azure Web Apps Always Online
Feb 27, 2025.
This article provides the disaster recovery plan for the App services hosted in the Azure that can be implemented after the deprecation of of platform-enabled disaster recovery for Azure App Service. There are different way of handling this however in this article we will focus on Azure Front Door.
AI And .NET: Building Intelligent Apps with .NET 9
Feb 26, 2025.
Discover how .NET 9 empowers developers to build AI-driven applications with ease. Explore ML.NET, Azure AI, and deep learning integrations to create intelligent web and desktop apps.
Data Consistency in ASP.NET Core Microservices with Locks
Feb 24, 2025.
This article explores how to use distributed locks to manage concurrent operations, prevent race conditions, and maintain data integrity across microservices efficiently.
Getting Started with EF Core: Part 1
Feb 24, 2025.
Entity Framework Core (EF Core) is a powerful ORM for .NET applications, simplifying database interactions. In this comprehensive guide (Part 1), we’ll cover the basics, including setup, configuration, and the code-first approach.
Scheduling Background Jobs in ASP.NET Core Using Quartz.NET
Feb 22, 2025.
Quartz.NET is a powerful and flexible job scheduling library that seamlessly integrates with ASP.NET Core. It enables developers to automate background tasks, schedule recurring jobs, and manage workflows efficiently. This article explains what is Quartz.NET and how to impkemnt it to schedule a background job.
10 Essential Development Tips for ASP.NET Core
Feb 17, 2025.
Discover 10 essential development tips for ASP.NET Core that will help you build efficient, scalable, and maintainable web applications.
Security Best Practices in ASP.NET Core
Feb 14, 2025.
Secure your ASP.NET Core app with HTTPS, JWT, OAuth2, and API keys. Prevent SQL injection, XSS, and CSRF attacks. Use encryption, logging, monitoring, and secure file uploads. Keep dependencies updated for continuous security.
Building RESTful APIs with ASP.NET Core: Best Practices
Feb 14, 2025.
This article covers the best practices for API design, security, performance optimization, and error handling to help you create robust web services. Perfect for developers looking to master API development in .NET Core.
Guide to Handling Web.Config Encryption Across Multiple Servers
Feb 07, 2025.
Learn how to encrypt web.config sections in ASP.NET, export and import RSA encryption keys across multiple servers, and ensure secure decryption. Follow best practices for secure key transfer, compliance, and automation in deployments.
Encrypt and Decrypt Web.config Using aspnet_regiis.exe Tool
Feb 07, 2025.
Learn how to use the **aspnet_regiis.exe** tool to encrypt and decrypt **Web.config** sections in .NET applications. This article covers prerequisites, command execution, and practical examples for securing configuration settings.
Encrypt Web Config Sections Using aspnet_regiis.exe Securely
Feb 07, 2025.
Learn how to encrypt and decrypt **Web.config** sections using **aspnet_regiis.exe** for enhanced security in ASP.NET applications. This guide covers encryption commands, best practices, and considerations for secure configuration management.
How to Add Swagger in .NET 9?
Feb 06, 2025.
Swagger is an essential tool for documenting and testing APIs. In .NET 9. In .NET 9, Swagger integration requires manual setup by adding the Swashbuckle.AspNetCore NuGet package and configuring it in Program.cs and launchSettings.json to document and test APIs.
Mitigate OWASP A02 2021-Cryptographic Failures Web Security Tips
Feb 04, 2025.
ADO.NET offers low-level access to databases using SQL commands, while EF is an Object-Relational Mapping (ORM) tool that simplifies database operations by mapping objects to database tables, offering higher-level abstractions.
ADO.NET vs Entity Framework: Understanding the Differences
Feb 03, 2025.
This article compares ADO.NET and Entity Framework (EF), two popular data access technologies in .NET. It explores their differences in performance, data manipulation, and development approaches like code-first vs database-first, helping developers choose the right tool for their application needs.
Blazor vs Traditional ASP.NET (MVC/WebForms): A Comparison
Feb 03, 2025.
Blazor is a web framework by Microsoft that enables building interactive web apps using C# and .NET. It supports Blazor Server (server-side) and Blazor WebAssembly (client-side) for modern, real-time, and offline web development.
Integrating Stripe Payment Gateway in ASP.NET Core MVC
Feb 03, 2025.
Learn how to integrate Stripe Payment Gateway into an ASP.NET Core MVC application, enabling secure online payments with Stripe Checkout. The solution covers API setup, payment session creation, and handling successful or canceled payments.
ASP.NET MVC: Download Large File Efficiently
Feb 02, 2025.
This article explores efficient ways to handle large file downloads in ASP.NET MVC, covering FileStreamResult, chunked streaming, async streaming, IIS configuration, and Content-Disposition for improved performance and browser compatibility.
Design Patterns for Scalable ASP.NET MVC Applications
Jan 31, 2025.
Discover key design patterns like Repository, Unit of Work, Dependency Injection, Factory, Singleton, and Command to enhance the scalability, maintainability, and testability of your ASP.NET MVC applications.
Dynamic Menus in Layout Page Using Sessions in ASP.NET Core 6
Jan 31, 2025.
Store dynamic menu data in session and display it across multiple pages using the layout page in ASP.NET Core 6.
Compare ASP.NET SOAP Services vs Core APIs with Code
Jan 27, 2025.
Discover the key differences between ASP.NET SOAP Web Services (ASMX) and ASP.NET Core SOAP APIs in this detailed guide by Ziggy Rafiq. Get code examples, best practices, and insights for both modern and legacy systems.
How to Convert a DataTable to a List of Objects in C#
Jan 27, 2025.
In many scenarios, you may need to convert this DataTable into a list of custom objects for easier manipulation and readability. In this article, we’ll go through a simple yet effective way to convert a DataTable to a list of any object type using C#.
Building a Real-Time Chat Application with SignalR in Blazor .Net 9
Jan 26, 2025.
In this article, we'll explore how to create a real-time chat application using SignalR and Blazor Server. SignalR is a library for ASP.NET developers that simplifies adding real-time web functionality to applications. With SignalR, we can enable server-client communication in real-time, which is perfect for a chat app.
Building a Real-Time Chat Application with ASP.NET Core and WebSockets
Jan 26, 2025.
This article covers setting up WebSocket connections, handling bi-directional communication, and implementing live messaging. Perfect for developers looking to enhance their skills in real-time app development.
The Java.NET Package
Jan 25, 2025.
The Java.NET package provides classes for implementing networking functionality in Java. It supports TCP, UDP, and HTTP protocols, enabling tasks like creating sockets, managing URLs, sending/receiving data, and handling network connections.
ASP.NET 8 – Using Bootstrap 5 Themes
Jan 20, 2025.
This article covers selecting and installing themes, configuring settings in appsettings.json, passing theme data to views, and managing UI consistency across different themes for a professional web app look.
Global Exception Handling in ASP.NET Core Web API
Jan 14, 2025.
Learn how to implement Global Exception Handling in Asp.Net Core WebAPI using Custom Middleware. Handle errors efficiently with ExceptionMiddleware, register it in program.cs, and see how to manage exceptions in your application seamlessly.
SQL Server – Query Performance – Database Maintenance can Help
Jan 14, 2025.
To improve query performance in an ASP.NET MVC application using SQL Server, periodic database maintenance steps like updating statistics and defragmenting indexes are essential. This includes manual or automatic execution for optimal results.
Basic Authentication in Asp.NET Core Web API
Jan 11, 2025.
This article explains implementing Basic Authentication in ASP.NET Core WebAPI using .NET Core 8. It covers authentication concepts, step-by-step implementation, and demonstrates a practical example with code and diagrams.
API Versioning In ASP.NET Core
Jan 06, 2025.
This article covers versioning strategies, best practices, and configuration methods, ensuring backward compatibility and smooth upgrades for your RESTful APIs. Perfect for developers of all levels.
Understanding Connected Disconnected Scenarios in EF Core MVC
Jan 06, 2025.
This article explains the connected and disconnected scenarios in Entity Framework Core for ASP.NET Core MVC applications. It covers how EF Core handles data in these scenarios, including change tracking, entity states, and managing database contexts.
Optimize Relationships Migrations Performance in ASP.NET Core MVC
Jan 06, 2025.
This article covers Entity Framework Core, query optimization, caching strategies, lazy and eager loading, and best practices to enhance your MVC application's efficiency.
What is Factory Method Design Pattern?
Jan 06, 2025.
Learn how to build an AI-powered birthday party planner using Copilot Studio and Microsoft OpenAI. Streamline theme selection, product management, and logistics with intelligent automation for efficient and creative event planning.
10 Key Resolutions to Master .NET Development in 2025
Jan 05, 2025.
Discover the top 10 resolutions to elevate your .NET development skills in 2025. From mastering .NET 8 features and C# updates to exploring ASP.NET Core, Blazor, and microservices, this guide helps you stay ahead.
CSharp.com Unveils Real-World Web3 Skills Credentialing and Certifications to Empower Developers and Simplify Hiring
Dec 31, 2024.
CSharp.com unveils real-world Web3 skills credentialing and certifications to empower software developers and streamline the hiring process for employers.
What is .NET Aspire?
Dec 30, 2024.
.NET Aspire enhances application development with modern practices, cross-platform support, scalability, and cloud-native capabilities. Leverage powerful tools, rich libraries, and community support to build high-performance solutions.
What is MapGroup in Minimal API?
Dec 30, 2024.
Learn about MapGroup in Minimal API, a feature in ASP.NET Core that allows developers to group related API endpoints together for better organization and cleaner code.
Implement JWT Token in Net Core Api
Dec 28, 2024.
This article covers the step-by-step process to secure your API using JWT for token-based authentication, ensuring secure communication and proper authorization. Perfect for developers looking to enhance API security.
Implement Basic, Custom and Multiple Health Checks in .NET Web API
Dec 16, 2024.
In this article, we are going to learn about Implement Basic, Custom and Multiple Health Checks in .NET Web API. This article explains Health Check implementation in .NET Web API, covering basics, customizations, multiple checks, and practical code examples for monitoring application and dependency health effectively.
Implementing Localization in ASP.NET Core Web API
Dec 16, 2024.
Learn How to implement localization in ASP.NET Core Web API enables developers to create multilingual applications by supporting various languages and cultures.
Connection String in ASP.NET Core MVC .NET 8
Dec 13, 2024.
Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless database connectivity.
Introduction To Minimal API in ASP.NET Core
Dec 12, 2024.
Minimal APIs in ASP.NET Core are a streamlined approach to building web APIs designed to be lean and efficient. ASP.NET Core Minimal APIs simplify web API development with concise syntax, reduced boilerplate, and flexibility. Features include lambda-based routing, HTTP handling, and route grouping for efficient organization.
Session in ASP.NET Core MVC .NET 8
Dec 10, 2024.
This article covers enabling sessions in .NET 8 ASP.NET Core MVC, storing/retrieving session values, managing session keys, and implementing session handling with step-by-step examples and code walkthroughs.