C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Trainings
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
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]
George (9)
Kripanshu Kumar(5)
John Godel(3)
Raveena Attri(3)
Satya Karki(3)
Ganesan C(3)
Shilpa Tanwar(3)
Chetan Sanghani(3)
Mahesh Chand(2)
Tural Suleymani(2)
Manoj Kalla(2)
Mohammad Hasan Hosseini(2)
Sangeetha S(2)
Swesh S(2)
Sanjay Kumar(2)
Aman Gupta(2)
Ananthakrishna V(2)
Ajay Kumar(2)
Vijay Yadav(2)
Shivang (1)
Akshay Amin(1)
Gowtham Rajamanickam(1)
Micheal Xavier A (1)
Kautilya Utkarsh(1)
Deepika Sawant(1)
Saravanan Ganesan(1)
Ziggy Rafiq(1)
Ck Nitin(1)
Divyansh Gupta(1)
Neel Shah(1)
Sagar Rane(1)
Dashrath Hapani(1)
Vijay Kumari(1)
Rijwan Ansari(1)
Allam Purushotham(1)
Lokesh Varman(1)
Arumilli Yamini(1)
Emanuel Martins(1)
Jochen Bartlau(1)
Prarthana Bhat(1)
Deepak Tewatia(1)
Subarta Ray(1)
Jefferson S. Motta(1)
Rajkumar Jain(1)
Jaydeep Patil(1)
Babita (1)
Vinoth Xavier(1)
Praveen Sreeram(1)
Rahul Sharma(1)
Oleg Litvinov(1)
Harminder Singh(1)
Uday Dodiya(1)
Velladurai (1)
Adarsh Nigam(1)
Vijai Anand Ramalingam(1)
Sandip Jadhav(1)
Tahir Ansari(1)
Mohamed Azarudeen Z(1)
Vaishali Vishwakarma(1)
Sardar Mudassar Ali Khan (1)
Lokendra Singh(1)
Jitendra Mesavaniya(1)
Sreenath Kappoor(1)
Mark Pelf(1)
Madhanmohan Devarajan(1)
Resources
No resource found
Build a Daily Mood Tracker in C# Console App with JSON Storage
Aug 01, 2025.
In this beginner-friendly C# project, you will build a simple daily mood tracker using a console interface and JSON for local data storage. This project is great for understanding how to combine real-life utility with coding fundamentals.
Best Practices for Exception Handling in ASP.NET Core Web APIs
Aug 01, 2025.
Exception handling is a critical aspect of building robust, secure, and maintainable Web APIs. In ASP.NET Core, handling exceptions gracefully ensures that the API provides meaningful error information to consumers without exposing sensitive internal details or causing the application to crash.
Chapter 8: Introduction to the Document Object Model (DOM)
Jul 30, 2025.
Learn how the DOM allows JavaScript to interact with and manipulate web pages using nodes. This chapter covers element selection, modification, event handling, and dynamic content creation for interactive websites.
š§¾ Creating Custom Middleware in ASP.NET Core ā The Complete Guide with Real Examples
Jul 29, 2025.
ASP.NET Core is known for its modular pipeline, where middleware components play a critical role in handling HTTP requests and responses. Middleware can perform a variety of tasks such as request logging, authentication, routing, response modification, error handling, and more.
š Power Pages: Display Current Logged-in Userās Full Name Using Liquid template
Jul 19, 2025.
Learn how to display the full name of the currently logged-in user in Power Pages using Liquid templates. A step-by-step guide for Power Apps developers to personalize user experience.
Events and Event Handlers in Javascript
Jul 17, 2025.
Learn how JavaScript events and handlers make web pages interactive. From mouse clicks to form inputs, master event-driven programming for responsive, user-friendly websites with real-time user interaction.
How to Build HIPAA-Compliant Software: A 10-Step Developerās Guide
Jul 12, 2025.
Learn the essential 10-step playbook for developers to design, secure, and maintain HIPAA-compliant software products. From risk assessments to audit logging, bake privacy in from day one.
Designing & Retaining HIPAA Audit Logs: Best Practices for Developers
Jul 12, 2025.
Learn how to implement comprehensive HIPAA audit loggingāwhat PHI events to capture, how to store logs immutably, retention requirements, and real-time monitoring for compliance and security.
What is Node.js Architecture
Jul 09, 2025.
Node.js is a fast and lightweight runtime that executes JavaScript on the server side. Its single-threaded, event-driven, non-blocking architecture makes it ideal for real-time, scalable, and efficient web applications.
Canva for Web Design: Create Like a Pro Without Coding
Jul 02, 2025.
Design stunning websites without coding! Canva's drag-and-drop builder, templates, mobile-ready designs, and collaboration tools make it ideal for beginners, creators, and small businesses to quickly and easily build web pages.
Understanding Event Loop, Callbacks, and Promises in Node.js
Jul 02, 2025.
Learn how Node.js handles asynchronous operations using the event loop, callbacks, promises, and async/await. Understand microtasks, macrotasks, and how to write clean, non-blocking async code.
Why Node.js is Non-Blocking: Event Queue, Loop, and Emitters Explained
Jul 01, 2025.
Have you ever wondered how Node.js can handle thousands of users at once, all while running on a single thread? The secret lies in its non-blocking, event-driven architecture-powered by the event loop, event queue, and EventEmitter.
Main Features of Node.js ā Explained Simply
Jun 30, 2025.
Node.js is a fast, open-source runtime for server-side JavaScript. Its single-threaded, non-blocking, event-driven architecture makes it ideal for building scalable, high-performance, real-time applications across platforms.
Real-Time Azure Digital Twins: Building a Scalable NDJSON Solution with Event-Driven Architecture
Jun 23, 2025.
This article shows how to build a real-time system that keeps digital twins (virtual copies of physical machines) updated instantly using Microsoft Azure cloud services.
Best Practices and Code Examples for Azure Functions using C# 13
Jun 09, 2025.
Ziggy Rafiq shares best practices for structuring, testing, and deploying production-grade serverless functions using Azure and xUnit in this article.
š§ What is Event Bubbling?
Jun 09, 2025.
You're sitting inside a small room (a <button>), which is inside a bigger room (a <div>), which is inside an even bigger hall (<body>).Now, someone knocks on the innermost room's door (you click the button ). That knock doesnāt just stop there ā it echoes outward to the next room, then the next, all the way out.
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.
Why You Should Use Domain-Driven Design in Your Real Projects
May 27, 2025.
Discover why Domain-Driven Design (DDD) is essential for real-world projects. Learn how it helps tackle complex business logic, improve code structure, and align software with business goals.
Event-Driven CQRS with C# 14 and the SQL Outbox Pattern
May 15, 2025.
Learn how to implement a reliable event-driven CQRS microservice using the SQL Outbox Pattern with C# 14. Ensure strong consistency, transactional event publishing, and fail-safe asynchronous processing for scalable distributed systems.
Implementing Event-Driven Architectures with Kafka, RabbitMQ, or Azure Service Bus (Comparisons, Pros, and Cons)
May 06, 2025.
Event-driven architecture (EDA) enables scalable, decoupled, and resilient systems using message brokers like Apache Kafka, RabbitMQ, and Azure Service Bus. Each offers unique features for different use cases.
Storing Event Streams in a Database Using Cosmos DB with C#
May 03, 2025.
This article covers real-time data ingestion, NoSQL storage design, and integration with event-driven architecturesāideal for developers building scalable and responsive cloud applications with .NET and Azure.
Implementing Azure Key Vault for Secure Secret Management
May 01, 2025.
Azure Key Vault is a secure cloud service to store and manage secrets, keys, and certificates. It offers centralized control, strong encryption, RBAC access, and audit logging for enhanced application security.
Introduction to Event Driven Architecture [EDA]
Apr 15, 2025.
Event-driven architecture (EDA) is a software design pattern where decoupled components communicate via events. It enables real-time, scalable, and flexible systems, commonly used in microservices, IoT, payment processing, and real-time analytics.
Overview of RadioButtonList Control
Apr 15, 2025.
Learn how to use RadioButtonList in ASP.NET WebForms, including its layout types (Horizontal, Vertical, Flow, Table), binding data from C# List, database tables, and manually added items. Also, discover JavaScript integration and best practices.
How Event-Driven Architecture Boosts Scalability
Apr 03, 2025.
Event-driven architecture (EDA) enables scalable, decoupled systems using asynchronous event communication. It enhances flexibility and responsiveness but introduces complexity in event management and debugging.
High Performance of LoggerMessage in Microsoft.Extensions.Logging
Mar 08, 2025.
LoggerMessage in Microsoft.Extensions.Logging provides high-performance logging by reducing memory allocations and improving efficiency. Unlike traditional logging methods, it uses precompiled delegates to format log messages, making it faster.
How to use Appleās new āInvitesā App?
Mar 05, 2025.
Apple has launched Invites, an app that simplifies creating personalized event invitations on iPhones and the web. Users can design and share invites, manage RSVPs, and curate event soundtracks.
How to Use SQS as an Event Source for AWS Lambda
Mar 04, 2025.
Learn how to use Amazon SQS as an event source for AWS Lambda to build scalable, event-driven applications.
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.
Remove IIS Log Files (2-2) --- Add "Log on as a batch job" Right to a user
Feb 27, 2025.
This article is a server management.
Remove IIS Log Files (4-2) --- Make Server Allows ports for PowerShell Remoting
Feb 27, 2025.
This article will discuss to Make Server Allows ports for PowerShell Remoting
Remove IIS Log Files (4-3) --- AWS security group on the ec2 needs to Allows ports for PowerShell Remoting
Feb 27, 2025.
This article will discuss AWS security group on the ec2 needs to Allows ports for PowerShell Remoting
Domain Events & Pub/Sub Pattern: Manual Implementation vs MediatR
Feb 27, 2025.
Domain events and the publish/subscribe pattern are essential for building decoupled, scalable, and maintainable systems. Whether we're working on a microservices architecture or a modular monolith, these patterns help us manage complexity and enforce boundaries between components.
Remove IIS Log Files (4-1) --- Managing Sensitive Info in AWS
Feb 24, 2025.
This article will discuss parameter store and Secret Manger in AWS
Remove IIS Log Files (2-1) --- Handle Group User Accounts
Feb 19, 2025.
This article is a server management.
Different Type of Modern Function in JavaScript
Feb 14, 2025.
Explore JavaScript's modern functions, including arrow functions, async/await, and anonymous functions. This article covers IIFE, event handlers, and promises with practical examples for efficient coding in JavaScript.
How to Enable Logging in Amazon S3
Feb 05, 2025.
This article covers everything from configuring logging settings to tracking and storing access logs. Monitor your S3 bucket activity, improve security auditing, and streamline troubleshooting with AWS S3 logs.
Create and Convert Word to PDF in OneDrive Using Power Apps
Feb 04, 2025.
Create a Canvas App to upload a Word document to OneDrive and convert it to PDF using Power Automate. Utilize Media Control, OnSelect events, and Power Automate flow to create, convert, and store the file seamlessly.
Shared Function Use Cases in VB .NET
Jan 31, 2025.
Explore the use cases of Shared Functions in VB.NET. Learn how to implement static methods to improve code efficiency, optimize performance, and handle utility tasks.
Protect Your Secrets with Azure Key Vault
Jan 22, 2025.
Azure Key Vault securely manages sensitive information like API keys, credentials, and database connection strings. It supports encryption, programmatic access, and automatic secret rotation, and integrates with Azure's security features.
Learn about Delegates And Events
Jan 20, 2025.
Delegates and events are key concepts in C#. A delegate is a variable that holds a reference to a method, allowing flexible method calls. Events use the publisher-subscriber model, where a publisher triggers an event and subscribers handle it.
How to Create Flow Logs in AWS VPC
Jan 20, 2025.
This article covers setting up flow logs, configuring traffic types, using IAM roles, viewing logs in CloudWatch, and analyzing traffic data for improved security and troubleshooting.
Creating a MAUI .NET 9 Project [GamesCatalog] - Part 1
Jan 19, 2025.
Create a mobile app with a C# .NET backend using the IGDB API for a game catalog and reviews. Features include search screens, XAML layouts, CommunityToolkit integration, .NET 9, and a refined, user-friendly interface.
Enhancing Application Insights with Serilog and SEQ
Jan 01, 2025.
In this article, we will learn how to enhance application insights using Serilog and SEQ, two powerful tools for structured logging and real-time log analysis.
Best way of implementing Domain-driven design, Clean Architecture and CQRS
Dec 28, 2024.
Domain-Driven Design (DDD), Clean Architecture, CQRS, and software design principles emphasize building scalable, maintainable systems. Key concepts include aggregates, events, repositories, and factories, with real-world GitHub examples for practice.
Advanced Logging with Proxies in C#
Dec 24, 2024.
This article presents a lightweight, dependency-free logging mechanism in C# using the DispatchProxy class. It enables efficient method interception, conditional logging, performance optimization, and error handling without external dependencies.
Debouncing and Throttling
Dec 20, 2024.
Debouncing and throttling are techniques used to optimize event handling in web development. They help control the frequency of function calls triggered by events like scrolling or typing. Debouncing delays execution until the event settles, while throttling limits function calls to a fixed rate.
Remove IIS Log Files (2) --- Automation by Windows Task Scheduler
Dec 17, 2024.
This article is to discuss Automation by Windows Task Scheduler
Remove IIS Log Files (3) --- Deploy VBScript Automation by Pipeline
Dec 17, 2024.
This article is to discuss the deploying VBScript automation by pipeline
Remove IIS Log Files (4) --- Deploy PowerShell Automation by Pipeline
Dec 17, 2024.
This article is to discuss the automation by PowerShell pipeline
Integrating SQS with Lambda using Event Source Mapping
Dec 16, 2024.
This setup allows Lambda functions to automatically trigger in response to messages in an SQS queue, providing a serverless, scalable solution for asynchronous processing and efficient message handling in AWS.
Getting Started with React: A Simple Guide
Dec 11, 2024.
Learn the Basics of React and How to Start Building Web Applications
Real-Time Notifications in Amazon Aurora PostgreSQL
Dec 10, 2024.
In this article, we are going to learn about Implement real-time notifications (Transactional Outbox Pattern) in Amazon Aurora PostgreSQL
Transactional Outbox Pattern
Dec 07, 2024.
The Transactional Outbox Pattern ensures data consistency in distributed systems by storing events in an outbox table within the database. It simplifies reliable messaging, enabling seamless communication between microservices while avoiding the complexity of two-phase commits.
Implementing Logging in C# 9.0
Dec 04, 2024.
This article explores the fundamentals of logging in C# 9.0, showcasing the importance of logging and how to implement it using different frameworks such as Microsoft.Extensions.Logging, NLog, and Serilog. Practical code examples illustrate how to effectively monitor and troubleshoot your applications.
Learn To Use FileSystemWatcher in .NET 9
Nov 27, 2024.
This article covers the setup, key features, and practical examples for tracking events like the creation, modification, deletion, and renaming of files or folders, making your file-handling tasks seamless and efficient.
Quick Summary of Microsoft Ignite 2024 with Copilot Studio
Nov 25, 2024.
Discover key announcements, innovative AI tools, and productivity features that are transforming the Microsoft ecosystem. Explore how Copilot Studio empowers developers and businesses to achieve more effortlessly.
Amazon OpenSearch Service Setup with Kibana
Nov 15, 2024.
Amazon OpenSearch Service enables real-time search, monitoring, and analysis of business data. It integrates with AWS services like CloudWatch Logs and Lambda for log aggregation, with Kibana for data visualization.
Azure Logic App
Nov 10, 2024.
In this article, we will learn about Azure Logic Apps, which is a cloud-based service that enables users to create automated workflows and integrate applications, data, and services across the cloud and on-premises.
Mastering Basic Arithmetic Operations in Web Development
Nov 08, 2024.
Build a simple web-based calculator that performs basic arithmetic operations such as addition, subtraction, multiplication, and division. This project utilizes HTML for structure, CSS for styling, and JavaScript for interactivity.
Converting HTML to PDF or Image in C# Using wkhtmltopdf
Nov 05, 2024.
This guide explains generating PDFs and images from HTML using wkhtmltopdf in C#. With wkhtmltopdf's Webkit-based engine, convert HTML content, including complex CSS and JavaScript, into high-quality PDFs or images.
Debugging Azure DevOps Pipelines with System.Debug
Oct 26, 2024.
This article explores essential techniques for Azure DevOps pipeline error diagnosis. It discusses how to enable diagnostic logs for individual and all pipeline executions using the "Enable System Diagnostics" checkbox and the system. debug variable.
Why In ASP.NET Core logging is often implemented as a singleton
Oct 20, 2024.
In ASP.NET Core, logging is often implemented as a singleton to ensure efficient resource usage, centralized management, and thread-safe logging across the application.
Remove IIS Log Files (1) --- Manually
Oct 12, 2024.
This article will discuss a way to remove the IIS Log Files, including locate the log file directory.
Learn NLog Advanced Usage / Change NLog Configuration Per Request
Sep 23, 2024.
This article explores implementing dynamic logging in multi-tenant applications using NLog. It discusses configuring NLog to enable debug logging on a per-request basis without modifying existing configurations.
Explaning SignalR in ASP.NET Core 8
Sep 17, 2024.
Learn about setting up SignalR hubs, managing connections, and utilizing WebSocket and Server-Sent Events for efficient, scalable messaging in .NET 8 environments.
Copilot Customization: Welcome the Logged-in User with the Name
Sep 16, 2024.
In this article, we shall see how to greet the user with the name using the logged-in information using the out of the box feature. This article is intended to target the developer who are using the Microsoft Copilot Studio for the custom copilot development.
Detailed use of Action Delegate in C#
Sep 11, 2024.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It supports lambda expressions and anonymous methods, making code more concise. Unlike Func<T>, Action always returns void.
Factory Method Pattern: Simplifying Object Creation in C#
Sep 06, 2024.
The Factory Method Pattern is a creational design pattern that delegates object creation to subclasses, promoting flexibility and maintainability. It defines an interface for creating objects but lets subclasses decide which class to instantiate. This approach reduces coupling and enhances scalability in complex systems.
Integrating AngularJS with jQuery Select2 for Dropdown Changes
Sep 02, 2024.
Integrating AngularJS with jQuery Select2 enhances dropdown menus by combining AngularJSās data binding with Select2ās advanced features. This setup involves initializing Select2 with AngularJS, handling dropdown changes, and synchronizing Angular models.
Simplifying ASP.NET Core 8 Logging with Serilog and AppInsight
Sep 02, 2024.
Serilog is a powerful .NET logging library that supports structured logging, enhancing application monitoring and debugging. To integrate Serilog with ASP.NET Core and Application Insights, install essential NuGet packages, configure appsettings.json, and set up Serilog in Program.cs.
Sharing Data from Child to Parent in Angular 18
Aug 24, 2024.
In this walkthrough, you'll learn how to send data from a child component to a parent component in Angular using the @Output decorator and EventEmitter. You'll create a simple Angular project, define a child component to emit data and update the parent component to receive and display this data.
Store Java Errors in Database with Dynamic Error-Based Logging
Aug 23, 2024.
It covers setting up logging frameworks, capturing runtime errors, and ensuring data persistence for effective error management and tracking. Ideal for improving application reliability and diagnostics.
Event-Driven Microservices with .NET Core
Aug 20, 2024.
Build scalable, resilient microservices with .NET Core and MediatR by implementing event-driven architecture. This approach decouples services, enhances scalability, and simplifies maintenance. Learn to handle events, configure dependency injection, and expand your architecture.
Learn Advanced CQRS with .NET Core
Aug 20, 2024.
Dive into the advanced implementation of the Command Query Responsibility Segregation (CQRS) pattern using .NET Core and MediatR. This article explains the benefits of CQRS in modern application development and includes practical code examples in C#.
Learn Server-Sent Events in C# .NET
Aug 14, 2024.
Server-Sent Events (SSE) in C# .NET enable real-time, one-way communication from server to client over HTTP, ideal for live updates like notifications or data streaming. Unlike WebSockets, SSE is simpler, requiring only server-side implementation.
Optimizing JavaScript with Debouncing
Aug 13, 2024.
This guide delves into optimizing JavaScript performance using debouncing techniques, which help prevent excessive function calls during high-frequency events like scrolling or resizing.
Stream Conversations with Amazon Bedrock API in .NET Console App
Aug 12, 2024.
Learn how to create a .NET console application that streams conversations using the Amazon Bedrock Converse API with the Anthropic Claude 3 Sonnet model. This guide covers setting up your AWS environment, configuring Visual Studio, and using the AWS SDK to handle streaming conversations and model responses.
Detailed explanation of SQL Server Triggers and its Advantages
Aug 06, 2024.
SQL Server triggers are automated stored procedures that execute in response to specific database events such as INSERT, UPDATE, or DELETE (DML) and CREATE, ALTER, or DROP (DDL). They enforce business rules, maintain referential integrity, and log changes, ensuring data consistency and centralized logic.
CQRS Design Pattern and Its Use Case
Aug 05, 2024.
In this article, we will explore its use cases in microservices and domain-driven design, focusing on event sourcing, command and query handling, and optimized data management.
How to Create Custom Middleware in Next.js
Aug 05, 2024.
In Next.js, middleware allows you to run code before a request completes, useful for tasks like authentication, logging, and redirection. Introduced in version 12, it can be applied globally or to specific routes.
How to Create a Custom 404 Page in Next.js
Aug 05, 2024.
In Next.js, customizing a 404 page improves user experience by guiding users who land on non-existent pages. Create a 404.js component in the pages directory, style it with 404.module.css, and add navigation options like links and buttons.
Advanced Logging Techniques in ASP.NET Core 8 with Serilog
Jul 31, 2024.
Serilog is a diagnostic logging library for .NET applications. It provides a simple, flexible and powerful way to log application events, errors and other information. This article describes how we can log ASP.NET Core 8 application with Serilog
Spring Boot Logging for Production and Development Servers
Jul 30, 2024.
This guide covers configuring logging settings, integrating log management tools, and best practices for monitoring and analyzing logs to ensure smooth application performance and debugging.
How to Use async in jQuery When Calling an API Using Ajax
Jul 30, 2024.
Learn how to use async and await in jQuery to streamline API calls with Ajax. This guide covers setting up an HTML page, creating a JavaScript file for async operations, handling errors with try-catch blocks, and updating the UI with fetched data. Simplify asynchronous code and improve readability.
Handling Exceptions in ADO.NET Best Practices for Error Handling
Jul 24, 2024.
When working with ADO.NET for data access in .NET applications, effective exception handling is crucial to ensure the stability and reliability of your applications. This article will explore common exceptions in ADO.NET and provide best practices for robust error handling and logging.
Explain Adding a Loader in Next.js
Jul 24, 2024.
Adding loaders in a Next.js app enhances user experience by showing visual cues during data fetching and page transitions. Create a Loader component with CSS for styling and use it globally or locally to manage loading states. This approach improves performance and user feedback.
Understanding Middleware in ASP.NET Core
Jul 24, 2024.
Middleware in ASP.NET Core is a sequence of code components that handle HTTP requests and responses. It enables custom processing, such as authentication, logging, and error handling.
Performance Optimization in ADO.NET: Tips and Techniques
Jul 23, 2024.
Optimize ADO.NET performance by leveraging connection pooling to reduce overhead, using efficient command execution strategies such as stored procedures and batch processing, and retrieving data effectively by selecting only necessary columns and implementing paging.
Logging Patterns in ASP.NET Core 8
Jul 22, 2024.
In this article, we will explore the essential logging patterns in ASP.NET Core 8 to enhance your application's observability. Learn about basic, structured, and exception logging, along with best practices for effective log management.
After Business Rules in ServiceNow: Scenarios and Best Practices
Jul 22, 2024.
After Business Rules in ServiceNow execute after a database operation, enabling actions that depend on the successful completion of the initial operation. Common scenarios include audit logging, triggering notifications, data synchronization, and cascade updates.
Implementing CQRS and Event Sourcing with .NET Core
Jul 19, 2024.
This article explores implementing CQRS (Command Query Responsibility Segregation) and Event Sourcing with .NET Core. It covers the basics of CQRS and Event Sourcing, including commands, queries, and event storage.
How to Start a Project in C#?
Jul 18, 2024.
This article guides you through starting a C# project, including setting up Visual Studio or Visual Studio Code, creating a new project, and configuring essential features like dependency injection, configuration management, and logging.
Implementing a Audit Trail in ASP.NET Core Web API
Jul 17, 2024.
Learn how to implement a robust audit trail in an ASP.NET Core Web API using Entity Framework Core and SQL Server. This comprehensive guide covers setting up the project, defining data models like Products and AuditLogs, configuring the database context, applying migrations, and creating CRUD operations.
Logging in Python
Jul 17, 2024.
Logging in Python" explores the powerful logging module, providing essential tools for effective log management. Learn to track errors, debug code, and monitor applications with various log levels, handlers, and formatters.
Master Global Exception Handling with IExceptionHandler in .NET
Jul 16, 2024.
Global exception handling in .NET with IExceptionHandler centralizes error management, ensuring consistent responses and improved logging. Our Global Exception Handler Middleware catches exceptions globally, enhancing user experience and maintainability.
Error handling in Transact-SQL (T-SQL)
Jul 13, 2024.
Effective error handling in T-SQL (Transact-SQL) is vital for managing unexpected issues in database operations. Using TRY-CATCH blocks, RAISEERROR, and error functions like ERROR_MESSAGE and ERROR_NUMBER, developers can catch and handle errors gracefully.
JavaScript ā Events Bubbling ā Illustrated
Jul 11, 2024.
Explore the intricacies of JavaScript event handling with a detailed exploration of event bubbling. This illustrated guide delves into how events propagate through the DOM, from capturing to bubbling phases.
Dynamics 365 Customer Service: Disable the Resolve Case button
Jul 11, 2024.
This article guides you on restricting customer service associates from resolving cases with open activities or child cases in Dynamics 365. By creating a JavaScript Web Resource and customizing the Case form, you can enable or disable the "Resolve Case" button based on the status of related activities and cases.
Custom Controls in C# Windows Forms
Jul 08, 2024.
Creating custom controls in C# Windows Forms enhances user experience by providing tailored functionalities. This guide covers deriving controls, combining multiple controls into composite ones, and implementing owner-drawn controls.