Related resources for ddl
  • Explaining IAuthorizationFilter in .NET Core10/27/2024 12:10:00 PM. In this article, we delve into the IAuthorizationFilter interface in .NET Core, exploring its role in implementing authorization logic for web applications. We cover how to create custom filters, mana
  • ASP.NET Core Middleware10/22/2024 11:57:39 AM. ASP.NET Core Middleware plays a crucial role in the request processing pipeline of web applications. It allows developers to add custom functionalities, such as authentication, logging, and error hand
  • Learn NLog Advanced Usage10/19/2024 3:10:53 PM. 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 conf
  • Customizing HTTP Headers with Middleware in ASP.NET Core10/12/2024 4:26:09 AM. In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific API
  • Filters in ASP.NET MVC10/11/2024 12:26:53 PM. In this article you will learn about Filters in ASP.NET MVC 5.0. ASP.NET MVC Filters are used to inject extra logic at the different levels of MVC Framework request processing. Filters provide a way f
  • Implement Rate Limiting in REST API in .NET 89/13/2024 9:02:49 AM. Rate limiting is a technique used to control the number of API requests a client can make within a set timeframe, helping to prevent server abuse, protect resources, and ensure fair usage. This articl
  • Middleware in ASP.NET Core8/23/2024 5:00:15 AM. This content explains sharing data between Angular components via a service. It covers steps such as service creation, data sharing via click, and retrieval using data services.
  • Learn About Pipeline in .NET 8.08/21/2024 4:47:55 AM. Learn how to configure and optimize the .NET 8.0 pipeline for improved performance in ASP.NET Core applications. Dive into new features and enhancements in the latest .NET release.
  • Create a Custom Middleware Component in ASP.NET Core8/14/2024 5:55:04 AM. This guide covers defining, implementing, and integrating middleware, allowing you to intercept and manipulate HTTP requests and responses effectively for custom functionality and performance improvem
  • Cross-Origin Resource Sharing (CORS) in .NET 88/6/2024 5:14:40 AM. Learn how to configure Cross-Origin Resource Sharing (CORS) in .NET 8 to control access to your APIs from different domains. Understand key concepts like Same-Origin Policy, preflight requests, and CO
  • How to Create Custom Middleware in Next.js8/5/2024 4:57:05 AM. 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 spe
  • ASP.NET Core 2.0 Razor Pages8/2/2024 5:11:42 AM. To use Razor Pages in ASP.NET Core 2.0, start by creating an empty project and configuring services and middleware in Startup.cs. Define a service and domain model, input/output models, and create CRU
  • Overview Of Identity In ASP.NET Core 2.08/2/2024 4:55:35 AM. It is a membership system that allows us to add login functionality to our application. User may create account and login using credential or can use external login provider such as Google, Microsoft
  • Exception Handling in ASP.NET Core 87/31/2024 11:50:10 AM. Learn how to effectively manage exceptions in ASP.NET Core 8 with our comprehensive guide. Discover best practices for error handling, from using middleware and exception filters to implementing globa
  • Understanding Middleware in ASP.NET Core7/24/2024 6:35:10 AM. 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.
  • Creating Triggers in SQL Server7/24/2024 4:44:18 AM. SQL Server triggers are automated procedures that execute in response to specific events, enhancing data integrity and enforcing business rules. They include DML triggers (AFTER, INSTEAD OF) for data
  • Exploring New Features in Next.js 157/22/2024 6:18:19 AM. In this article, we will learn that Next.js 15 introduces a suite of new features and improvements aimed at enhancing developer experience and application performance.
  • Wrapper Class vs. Object Composition with UseCase7/18/2024 9:38:59 AM. Explore Wrapper Classes and Object Composition in object-oriented programming. Learn how wrappers adapt interfaces and enhance functionality without altering code, ideal for legacy systems.
  • Implementing a Audit Trail in ASP.NET Core Web API7/17/2024 12:18:56 PM. 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 Pro
  • What Is DDL and DML in SQL7/16/2024 10:39:15 AM. Explore the fundamentals of SQL with a focus on DDL (Data Definition Language) and DML (Data Manipulation Language). Learn how DDL commands define database structure and schema, while DML commands man
  • SQL Command Types6/28/2024 9:08:22 AM. SQL, or Structured Query Language, is essential for managing data in relational databases (RDBMS). It enables tasks like retrieving, updating, inserting, and deleting data. SQL commands are categorize
  • Enhancing Security with a Client IP Safelist in .NET6/27/2024 9:43:12 AM. Enhance your web application's security by implementing an IP safelist in ASP.NET Core. This technique restricts access to trusted IP addresses only, preventing unauthorized access. Our guide cove
  • Understanding ASP.NET - Part One - Owin And Katana6/26/2024 10:53:14 AM. Dive into the fundamentals of ASP.NET with a focus on Owin and Katana in this introductory series. Explore the architecture, middleware concepts, and how these technologies streamline web development
  • Understanding Managing Sessions in .NET6/25/2024 5:53:20 AM. Sessions in web development persist user data across requests despite HTTP's stateless nature. This article details sessions in .NET, showing initialization, data storage, and termination. It expl
  • Handling Middleware in Next.js6/23/2024 9:44:50 PM. Middleware in Next.js, introduced in version 12, allows code execution before a request is processed. Useful for authentication, logging, URL rewrites, and modifying headers, it runs on the Edge Netwo
  • Choose Context API or Redux for React State Management6/13/2024 4:59:19 AM. This article explains state management in React using Context API and Redux. It covers creating and using Context for state sharing without prop drilling and setting up Redux for more complex state ne
  • Create Custom Middleware In An ASP.NET Core Application6/6/2024 7:52:06 AM. ASP.NET Core's request pipeline allows custom middleware components for handling tasks like authentication, and logging. Learn to create and integrate custom middleware for tailored application ne
  • Middleware In .NET Core6/5/2024 11:10:55 AM. This article covers middleware concepts including its definition, order of execution, creation using IApplicationBuilder, and methods like Run, Use, and Map. It explains custom and built-in middleware
  • Exploring Delegating Handlers in C# .NET5/19/2024 6:27:43 AM. In modern software development, especially when dealing with web services, the ability to customize and extend HTTP request and response processing is crucial. This article delves into the concept of
  • URL Rewriting Middleware in .NET5/11/2024 2:12:50 PM. URL rewriting is a critical aspect of web development, enabling developers to create cleaner, more user-friendly URLs while maintaining the underlying functionality of their applications. This article
  • DDL and DML Operations in Sharepoint5/3/2024 9:02:41 AM. DDL operations in SharePoint involve creating or modifying the structure of sites, lists, and columns. This includes tasks like site creation, list creation, and defining columns or content types.
  • OpenID Connect Availability in OWIN Security Components4/30/2024 9:51:18 AM. Discover the integration of OpenID Connect with OWIN security components for robust authentication and authorization in .NET applications. Enhance identity management and security with seamless integr
  • Implement Global Exception Handling In ASP.NET Core Application4/29/2024 11:47:51 AM. Explore ASP.NET Core's robust exception handling mechanisms, including global handlers and custom middleware. Learn to implement middleware for comprehensive error management, ensuring smooth appl
  • Customized Auditing In SQL For DDL Operations At Server Level4/23/2024 11:14:16 AM. Explore the intricacies of customized auditing in SQL for DDL operations at the server level. Enhance database security and compliance by implementing tailored logging and monitoring mechanisms.
  • Application Health Check Using ASP.NET Core4/23/2024 8:33:19 AM. Learn how .NET Core facilitates application health checks, vital for stability and performance. Understand various health statuses, monitor dependencies like SQL Server, Azure Storage, and URIs. Confi
  • What Is Startup Class And Program.cs In ASP.NET Core4/23/2024 8:32:24 AM. Learn about the role of Program.cs and Startup.cs in ASP.NET Core applications. Understand their functions, including configuring the HTTP pipeline, middleware, and dependency injection. Explore vario
  • Best Practices for Creating ASP.NET Core REST API using OpenAPI4/9/2024 5:44:39 PM. Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
  • Global Error Handling In ASP.NET Core App Using NLog 4/8/2024 8:44:06 AM. In this post, we will see how to create an error handling middleware in ASP.NET Core application and handle all the exceptions in the app globally. We will write the error log details into a text file
  • Using .NET Core With RabbitMQ For Async Operations4/5/2024 5:43:09 AM. In this article, we will learn to leverage the power of .NET Core and RabbitMQ for asynchronous operations. Explore seamless integration to enhance messaging middleware, facilitating efficient communi
  • Getting Started With Remote Procedure Call4/4/2024 9:33:47 AM. Getting Started With Remote Procedure Call. In Remote Procedure Call(RPC), the caller and sender process are executed on different machines, they can communicate with the help of the transport and net
  • Understanding Middleware in ASP.NET Core4/3/2024 4:27:43 AM. Middleware in ASP.NET Core orchestrates request handling, response generation, and cross-cutting concerns. It's a pivotal concept enabling structured application development with reusable componen
  • ASP.NET MVC with Action Filters4/1/2024 6:30:02 AM. In this article, we will learn how to enhance your ASP.NET MVC applications with Action Filters. Action Filters provide a powerful mechanism for injecting cross-cutting concerns such as logging, authe
  • Angular HTTP Interceptors: Sending Tokens with Every Request3/24/2024 6:55:14 PM. In modern web applications, authentication plays a crucial role in securing resources and ensuring that only authorized users can access certain parts of the application. One common way to handle auth
  • Implement Global Exception Handling Middleware in .NET Project3/7/2024 4:37:09 AM. Implementing custom global exception handling in your project involves setting up a system to manage errors across your application. By defining exception classes and configuring error logging, you ca
  • DRY, YAGNI, KISS Engineering Principles2/19/2024 10:51:37 AM. In software development and engineering, certain guiding principles serve as beacons of efficiency and effectiveness. Among these principles, DRY, YAGNI, and KISS stand out as fundamental pillars that
  • Error Management in .NET Core2/18/2024 5:17:32 AM. In software development, dealing with mistakes is really important. Whether it's a small problem or a big one, how a program handles mistakes can really affect how well it works for users. In the
  • Global Exception Handling in .NET Core with Custom Middleware2/16/2024 4:03:42 AM. Global exception handling in .NET Core, utilizing custom middleware, centralizes error management, enhancing resilience and simplifying maintenance. This approach streamlines error handling across the
  • Mastering Middleware in .NET2/13/2024 6:28:06 AM. Discover the role and importance of middleware in .NET development. Explore its implementation, patterns, and integration within the ASP.NET request processing pipeline for enhanced application functi
  • How To Use Fiddler With ASP.NET Web API Testing2/9/2024 12:45:19 PM. If you are developer, tester or a manager, sometimes understanding the various methods of API can be a challenge when building and consuming the application.
  • Optimize ASP.NET Core MVC Data Transfer with Custom Middleware2/1/2024 9:01:22 AM. In ASP.NET Core, middleware components are used to handle requests and responses as they flow through the application's pipeline. These middleware components can be chained together to process req
  • Getting Started with Redux Saga in React Native1/25/2024 6:27:12 AM. Discover how to use Redux Saga middleware to simplify side effects management in your React Native app. Our guide covers everything from code organization to debugging, helping you optimize performanc
  • Middleware in Minimal API with .NET 81/20/2024 11:53:50 AM. Minimal API Middleware in .NET 8, a streamlined approach to handling HTTP requests and responses. Learn about built-in middleware and create custom middleware for request logging, modification, and re
  • Understanding and Utilizing .NET Core Middleware1/18/2024 7:35:07 AM. This article is about middleware in .net core and how to create custom middleware. Middleware is a key component in the execution pipeline of .NET Core applications, handling requests and responses. L
  • Implementing IP Rate Limiting in ASP.NET Core MVC1/18/2024 5:53:42 AM. IP rate limiting is a crucial aspect of web application security that helps prevent abuse, protect against brute force attacks, and ensure fair resource usage. In this article, we will walk through th
  • Handling CORS (Cross-Origin Resource Sharing) in ASP.NET Core Web API1/15/2024 9:08:11 AM. Demystify CORS in ASP.NET Core! Learn how to seamlessly handle Cross-Origin Resource Sharing and overcome origin-related errors in your Web API with this concise guide.
  • Implementing CORS in Your ASP.NET Core Project1/4/2024 11:39:10 AM. Enable secure cross-origin communication in your ASP.NET Core app with this step-by-step guide on implementing Cross-Origin Resource Sharing (CORS) using middleware and policies. Enhance security and
  • Logging Brilliance in .NET Core Part 2 : Using of Serilog in Windows Service 12/26/2023 10:58:54 AM. Learn to implement external logging in API and Windows Service using Serilog. This guide covers Serilog configuration, worker class setup, and package references, ensuring efficient information tracki
  • Transfer Data From One Middleware to Another .NET Core Web API12/26/2023 7:18:15 AM. The intricacies of passing data between middlewares in .NET Core Web API applications. Dive into methods like HttpContext.Items, custom middleware options, dependency injection, and HTTP context reque
  • Smart Sorting: Finding the Middle Number of Two Ordered Lists12/11/2023 4:35:06 AM. Efficient C# code uses a binary search approach to find the median of two sorted arrays. The algorithm intelligently partitions arrays, ensuring logarithmic runtime complexity (O(log(min(m, n)))).
  • Concurrency Limiter Middleware12/7/2023 6:56:44 AM. Here 4 samples of rate-limiting algorithms included in .NET 7/8.
  • Logging Brilliance in .NET Core: Using of Serilog12/5/2023 9:09:38 AM. This article will provide more details about .Net Core Middleware details, What? When? Where?. Middleware, integral in the ASP.NET Core request pipeline, manages requests and responses. Learn how midd
  • .NET Core: Custom Middleware Short Circuit12/1/2023 10:28:31 AM. This article will provide more details about .Net Core Middleware details, What? When? Where?. Middleware, integral in the ASP.NET Core request pipeline, manages requests and responses. Learn how midd
  • .NET Core: Decoding .NET Core Custom Middleware12/1/2023 6:55:18 AM. This article will provide more details about .Net Core Middleware details, What? When? Where?. Middleware, integral in the ASP.NET Core request pipeline, manages requests and responses. Learn how midd
  • .NET Core: Unraveling Middleware Decoding11/27/2023 11:35:28 AM. This article will provide more details about .Net Core Middleware details, What? When? Where?. Middleware, integral in the ASP.NET Core request pipeline, manages requests and responses. Learn how midd
  • Middleware in ASP.NET Core and How to Create Your Own?11/20/2023 11:53:51 AM. ASP.NET Core is a robust framework for building scalable web applications, and its middleware plays a vital role in handling HTTP requests and responses. Middleware components are key elements in the
  • Types Of Web API Action Results11/17/2023 5:19:10 AM. This article explains about Web API action results and explanation of REST result.
  • .NET Core Middleware for Logging using Serilog11/1/2023 12:12:20 PM. This article provides a comprehensive guide to setting up .NET Core middleware for logging using Serilog. It covers key steps from project setup to middleware configuration, highlighting the flexibili
  • ASP.NET Core MVC Request Life Cycle10/30/2023 5:25:03 AM. In this article you will learn about description of various stages of ASP.NET Core MVC Request Life Cycle.
  • Understanding and Utilizing Middleware in Applications10/17/2023 5:39:13 AM. Middleware is a vital component in the world of web applications. But what exactly is it, and how can it benefit your software projects? In simple terms, middleware is like a helpful assistant in your
  • Understanding Middleware In ASP.NET Core10/16/2023 7:21:21 AM. In this article, you will learn about Middleware in ASP.NET Core.
  • ASP.NET Core 7 - Introduction of Rate Limiting middleware10/5/2023 8:22:02 AM. This article is an Introduction of Rate Limiting middleware in ASP.NET Core 7.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web API10/3/2023 6:29:13 AM. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating feat
  • Task Management API with GraphQL in ASP.NET Core9/22/2023 8:16:12 AM. Creating a complete CRUD (Create, Read, Update, Delete) operation using GraphQL in an ASP.NET Core Web API can be quite extensive, so I'll provide you with a simplified example using a "Task
  • Error Handling in .NET Core Web API with Custom Middleware9/20/2023 4:59:46 AM. In this article, we explore global exception handling in .NET Core Web APIs using Middleware. Middleware is a critical component in the request-response pipeline, offering flexibility in handling requ
  • Exploring the Art of Middleware Creation in .NET Core9/17/2023 6:34:32 AM. This comprehensive article delves into the various methods of creating middleware in .NET Core, offering real-world examples to illustrate each approach. From inline middleware to class-based solution
  • Working On LinkedList Using C#9/15/2023 4:50:42 AM. In this article I explain how to create a linkedlist and the various operations that we perform on linkedlists.
  • SQL Server Trigger9/14/2023 11:34:03 AM. This article explains triggers in SQL Server. A trigger in SQL is a special kind of Stored Procedure or stored program that is automatically fired or executed when some event (insert, delete and updat
  • Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET Core9/13/2023 10:37:28 AM. In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementa
  • Securing .NET/ASP.NET Core Apps with Azure Key Vault Middleware 9/8/2023 9:28:49 AM. Securing secrets in a .NET/ASP.NET Core application using Azure Key Vault is crucial for protecting sensitive information like API keys, connection strings, and other configurations. In this example,
  • SQL Commands9/8/2023 6:12:46 AM. In SQL Server, various types of SQL commands are essential for managing and querying databases. These include Data Query Language (DQL) for retrieving data, Data Definition Language (DDL) for defining
  • Real-time Communication with WebSocket Protocol in ASP.NET Core9/4/2023 5:13:27 AM. This example provides a foundational structure for real-time communication in ASP.NET Core using WebSockets. You can expand upon this foundation to create more complex real-time applications, such as
  • Rate Limiting Middleware In .NET 78/31/2023 5:46:55 AM. In this article, you will learn about Rate Limiting Middleware in .NET 7.
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error Handling8/27/2023 2:17:28 AM. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here's a
  • Creating Effective Pagination and Filtering Middleware for ASP.NET Core Web API8/25/2023 5:10:13 AM. By incorporating pagination and filtering with custom middleware, you've enhanced your ASP.NET Core Web API's performance and user experience. This methodology enables you to respond more effi
  • Effective API Versioning with Custom Middleware8/22/2023 5:24:18 AM. API versioning with custom middleware, enables clients to access different versions of your API based on the version specified in the request header. This allows you to manage backward compatibility w
  • Implementing Rate Limiting in ASP.NET Core WEB API8/18/2023 9:24:59 AM. Learn how to effectively implement rate limiting in your ASP.NET Core application with this comprehensive guide. Explore the benefits of rate limiting for security and performance, and follow step-by-
  • Introduction to Triggers in SQL Server8/18/2023 12:52:38 AM. Tiggers are commonly used in SQL Server to automate data updates. This introduction article explains the basics of trigger in SQL, the types of triggers, and how to implement triggers in SQL Server.
  • DDL, DML and DCL in MySQL8/10/2023 4:56:18 AM. In this article, we will discuss the working process of DDL, DML, and DCL in MySQL.These are some of the most commonly used SQL commands that allow you to perform various operations on the data stored
  • How To Enable CORS In FastAPI In Python?8/9/2023 6:15:45 AM. This article is all about enabling CORS in FastAPI in Python.
  • Building Custom Middleware Components for Logging, Error Handling, and Request/Response Modification8/9/2023 5:05:33 AM. ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
  • Global Exception Handling In Asp.net Core Web API8/4/2023 6:27:15 AM. In the context of ASP.NET Core Web API (or any web application framework), global exception handling involves catching exceptions that occur during the processing of requests and returning appropriate
  • Capturing Phishing Email Using Custom Middleware in ASP.Net Core Web API 8/2/2023 9:08:59 AM. To capture and detect phishing emails using custom middleware in an ASP.NET Core Web API, you can follow these general steps:Create Custom Middleware: Create a custom middleware that will intercept
  • Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API 8/2/2023 5:02:53 AM. In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. I
  • SQL Commands : DDL, DQL, DML, DCL, TCL with Examples 7/25/2023 6:08:58 AM. Master the art of SQL DDL commands, DCL commands, DQL commands, DML commands, TCL commands for effective database management.
  • DDL Triggers In SQL Server5/25/2023 11:56:26 AM. This tutorial will show you the concept of DDL Triggers In SQL Server.
  • LOGON Triggers in SQL Server5/7/2023 4:12:17 PM. In this article, we shall cover Logon Triggers. Logon trigger a special kind of stored procedure which fires automatically when a LOGON event is detected, or new database connection is established. Lo
  • DDL Triggers in SQL Server5/1/2023 7:23:25 AM. DDL triggers are a type of trigger that gets fired and executed when DDL events occurs on database schema. DDL events include Create, Alter, Drop, Grant, Deny, Revoke statements.
  • Best Practices for Building Large-Scale Laravel Applications4/22/2023 10:54:39 AM. This article provides tips and best practices for developing large-scale Laravel applications. By following these best practices, you can improve the quality and scalability of your application, make
  • Difference Between Temp Table and Table Variable2/14/2023 6:14:33 AM. This article explains the basic differences between table variables and temp tables. Because these things are mostly and widely used for temporary storing mechanism in the stored procedures in sql.
  • Introduction to DDL Statements in SQL Server2/9/2023 9:40:15 AM. In this article, I have explained DDL statements used in SQL Server