Resources  
  • Creating a "Pooled" Dependency Injection Lifetime in C# 13May 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 PatternMay 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 SolutionMay 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 9Apr 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# 14Apr 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 MonitorApr 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 FilesApr 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 AppsApr 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 SystemApr 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 ComponentsApr 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 APIMar 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 ServiceMar 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 VersioningMar 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 ApplicationsMar 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 FiltersMar 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 CoreMar 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 APIMar 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 NetsMar 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 AspireMar 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 IndiaMar 24, 2025. GDG Partners with HackIndia to expand its reach to student developers across India.
  • How to Dependency Inject in Blazor ApplicationsMar 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 RestartsMar 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 APIMar 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 AppsMar 17, 2025. Integrating .NET Aspire with Dapr for Cloud-Native Apps
  • The Object Oriented ProgrammingMar 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 SamplesMar 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 PythonMar 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 VaultMar 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 GridViewMar 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 RegressionMar 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 ApplicationsMar 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 CoreMar 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 ApplicationsMar 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.NETFeb 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 OnlineFeb 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 9Feb 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 LocksFeb 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 1Feb 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.NETFeb 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 CoreFeb 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 CoreFeb 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 PracticesFeb 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 ServersFeb 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 ToolFeb 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 SecurelyFeb 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 TipsFeb 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 DifferencesFeb 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 ComparisonFeb 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 MVCFeb 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 EfficientlyFeb 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 ApplicationsJan 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 6Jan 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 CodeJan 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 9Jan 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 WebSocketsJan 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 PackageJan 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 ThemesJan 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 APIJan 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 HelpJan 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 APIJan 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 CoreJan 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 MVCJan 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 MVCJan 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 2025Jan 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 HiringDec 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 ApiDec 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 APIDec 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 APIDec 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 8Dec 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 CoreDec 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.
  • Token Caching in .NET 8 with Microsoft Entra IDDec 07, 2024. Learn how to optimize .NET 8 web apps with token caching using Microsoft Entra ID. Discover in-memory and distributed caching strategies to boost performance, reduce latency, and improve scalability in authentication processes.
  • ASP.NET Core CRUD using Dapper, .NET 8 using SQL ServerDec 05, 2024. Learn to build a CRUD (Create, Retrieve, Update, Delete) application in ASP.NET Core MVC using .NET 8 and Dapper ORM. This guide covers creating models, repositories, controllers, and Razor views with SQL Server integration.
  • Customized Authentication Filters in ASP.MVC Core 6Dec 04, 2024. Custom authentication filters in ASP.NET Core 6 allow you to implement personalized authentication logic. You can create custom attributes, middleware, or policy-based authorization to manage user access based on roles, claims, or tokens.
  • Scaffolding in C# 9.0: Building Fast & Efficient Code StructuresDec 03, 2024. Scaffolding in C# 9.0 streamlines application development by automating code generation for controllers, views, and models. It enhances productivity with simplified syntax, improved performance, and customization options.
  • CRUD Operations with ASP.NET Core API and EF CoreNov 29, 2024. This article provides step-by-step instructions for building a RESTful API, integrating EF Core for database management, and performing essential data operations seamlessly.
  • OpenAPI Document Generation in .NET 9 APIsNov 27, 2024. Explore Open API support in .NET 9 for seamless API documentation and integration. With Microsoft.AspNetCore.OpenApi, easily generates OpenAPI documents for APIs, customizes endpoints, adds authorization headers, and supports multiple servers.
  • Options Pattern In ASP.NET CoreNov 25, 2024. The Options pattern in ASP.NET Core simplifies configuration management with strongly-typed settings. Using classes aligned to appsettings.json, it ensures type safety, dependency injection, and validation.
  • Bulk Import of ID Card Data from Excel in ASP.NET MVC C#Nov 22, 2024. This guide covers the process of parsing Excel files, extracting data, and inserting it into a database, ensuring smooth data handling and optimization for large datasets in a seamless, automated process.
  • Integrating Demo Registration with External APIs in ASP.NET MVC C#Nov 22, 2024. We delve into the implementation of integrating an external API for vehicle registration within an ASP.NET MVC application. The method, Addadminvehicle, serves as a bridge between the web application and the BureauID API, which is responsible for handling vehicle fastag registrations.
  • Limit Concurrent Execution in Asynchronous MethodsNov 22, 2024. In this article, we will learn how to finely control how many concurrent executions we will allow of our async methods, without blocking, using a semaphore.
  • Introduction To Minimal API using ASP.NET Core 8Nov 21, 2024. Minimal API in .NET Core 6.0 simplifies the process of creating HTTP APIs by reducing code verbosity and dependencies. It is ideal for microservices, offering advantages like lightweight routing, improved performance, and accelerated development.
  • Webgrid and Gridview in ASP.NET Core and .NET Core ExplainedNov 21, 2024. Learn dynamic paging and sorting in .NET Core using JavaScript and jQuery. Modify URLs with query strings for seamless server interaction, leveraging Bootstrap for responsive design and intuitive user experience.
  • What's New in ASP.NET Core 9?Nov 15, 2024. C# 13 enhances developer productivity with features like flexible params collections, scoped locks, and partial properties, allowing for streamlined coding, improved performance, and robust thread safety.
  • .NET 9 is Out NowNov 15, 2024. This article explains in detail the latest release of .NET. The latest .NET ecosystem updates improve performance, security, and productivity across C# 13, ASP.NET Core, EF Core, .NET Runtime, Libraries, SDK, and .NET MAUI, advancing developer capabilities significantly.
  • Loading Nested JSON File Data in Dropdown ASP.NETNov 14, 2024. Learn how to load and bind nested JSON data to a dropdown in ASP.NET, covering both client-side and server-side techniques for dynamic data binding and efficient JSON parsing in web applications.
  • Deploying ASP.NET Core 9 Application on IISNov 14, 2024. Learn how to publish ASP.NET Core 9 applications on IIS. This guide covers key steps such as setting the correct target framework, configuring IIS settings, handling common errors like 503, and using the app_offline.htm file for maintenance mode.
  • Fededim.Extensions.Configuration.Protected.DataProtectionAPI: The Ultimate Integration between ASP.NET Configuration and Data Protection APINov 05, 2024. Fededim.Extensions.Configuration.Protected is an improved ConfigurationBuilder which allows partial or full encryption of configuration values stored inside any possible ConfigurationSource and fully integrated in the ASP.NET Core architecture.
  • Dependency Injection & EF Migrations in ASP.NET MVC with AutofacOct 30, 2024. This article demonstrates how to implement Dependency Injection (DI) using Autofac in an ASP.NET MVC application and integrate Entity Framework for database operations, including migrations.