TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Khaja Moizuddin(6)
Chetan Sanghani(3)
Tural Suleymani(3)
Sachin Kalia(3)
Jitendra Mesavaniya(2)
Allam Purushotham(2)
Alpesh Maniya(2)
Naimish Makwana(2)
Nandan Hegde(2)
Sarthak Varshney(2)
Sardar Mudassar Ali Khan (2)
Venkatasubbarao Polisetty(2)
Madhu Sharma(2)
Catcher Wong(2)
Monica Rathbun(2)
Mahender Pal(2)
Rupesh Kahane(2)
James Croft(2)
Prerana Tiwari(2)
Sourav Kayal(2)
Vijay Yadav(1)
Siddhesh Chavan(1)
Sreenath Kappoor(1)
Divyansh Gupta(1)
Rohini Parade(1)
Ishika Tiwari(1)
Praveen Sreeram(1)
Sanjay Kumar(1)
Tuhin Paul(1)
Amit Mohanty(1)
Ajay Kumar(1)
Raj Bhatt(1)
Amit Kumar Singh(1)
Shriram Pophali(1)
Tamilarasu Arunachalam(1)
Jay Krishna Reddy (1)
Harunraseed Basheer(1)
Joydip Kanjilal(1)
Ranganath Prasad(1)
Wilson Mok(1)
Jorge Levy(1)
Nikunj Satasiya(1)
Rikam Palkar(1)
Shalini Ravi(1)
Palvi Sabharwal(1)
Abhishek Yadav(1)
Raj Kumar(1)
David Mccarter(1)
Siddharth Vaghasia(1)
Atul Sharma(1)
Abhishek Mishra(1)
Satyaprakash Samantaray(1)
Sai Kumar Koona(1)
Gnanavel Sekar(1)
Piyush Pansuriya(1)
Devinder Yadav(1)
Gowtham Rajamanickam(1)
Prashant Kumar(1)
Davood Riazi(1)
Prashant Bansal(1)
Sibeesh Venu(1)
Rahul Sahay(1)
Sandeep Kumar(1)
Akshay Patel(1)
Saillesh Pawar(1)
Pankaj Kumar Choudhary(1)
Rahul Kumar Saxena(1)
Srinivas Narula(1)
Udaya kumar(1)
Hemanth Kumar(1)
Shweta Lodha(1)
Rahul Bansal(1)
Pranay Rana(1)
Resources
No resource found
SQL: Writing Efficient Queries
Jul 10, 2024.
Learn how to optimize SQL queries for better performance with our guide on "SQL: Writing Efficient Queries." Discover techniques for improving query speed, such as indexing strategies, query optimization tips, and best practices.
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
Jun 17, 2024.
LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, while PLINQ extends LINQ by enabling parallel execution.
SQL Query Execution Understanding Process and Performance
Jun 11, 2024.
Understanding the SQL query execution order—from FROM and JOIN to WHERE, GROUP BY, HAVING, SELECT, ORDER BY, and LIMIT/OFFSET—is crucial for optimizing queries. Key techniques include indexing, optimizing joins, early filtering, avoiding SELECT *, and using subqueries, CTEs, caching, and materialized views to enhance performance.
The 3D Concept: Discovery, Development, Delivery
Jun 06, 2024.
3D Concept Discovery, Development, and Delivery encompasses a comprehensive framework for innovation and product lifecycle. Discovery involves research, ideation, and exploration. Development focuses on design, prototyping, and testing. Delivery ensures effective distribution, deployment, and execution to the market.
Mastering Technical Project Management: Strategies for Success
Jun 03, 2024.
Mastering Technical Project Management: Strategies for Success" delves into effective planning, execution, and leadership in technical projects. It covers tools, best practices, and risk management to ensure successful delivery and achievement of project goals.
Create Impactful Project Timelines Milestones for Entrepreneurs
Jun 03, 2024.
Creating Impactful Project Timelines and Milestones as an Entrepreneur" focuses on strategic planning for entrepreneurs to achieve their goals. It emphasizes setting clear timelines and defining key milestones to ensure productivity and effective management, ultimately driving business success.
LINQ Query Syntax vs Method Syntax in Entity Framework
May 29, 2024.
Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Method Syntax offers more flexibility with lambda expressions and method chaining.
Do While Loop in C#
May 28, 2024.
Do-while loop in C# guarantees execution of code block at least once. Syntax: do { /* Code */ } while (condition);. Steps involve code execution, condition evaluation, loop continuation, and termination. Example demonstrates printing numbers from zero to five.
Understanding the Python Global Interpreter Lock (GIL)
Apr 23, 2024.
The Python Global Interpreter Lock (GIL) is like a traffic cop inside your computer that makes sure only one thing happens at a time in Python, even if your computer has multiple processors.
Enhance SQL Server Queries with OPTION(RECOMPILE) Hint
Apr 11, 2024.
This article provides an in-depth exploration of the OPTION(RECOMPILE) hint in SQL Server, offering developers and database administrators a thorough understanding of its functionality, practical applications, and best practices.
Temporary Tables vs Common Table Expressions in SQL Server
Mar 29, 2024.
In this article, we will learn what is Differences Between Temporary Tables and Common Table Expressions in SQL Server. Temporary tables and Common Table Expressions (CTEs) are SQL Server tools for data manipulation.
Activate & Deactivate Account Record in Dynamic 365 with PowerShell
Mar 28, 2024.
InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using specified entity, ID, and state/status codes.
Azure DevOps: How to execute a Pipeline Task using Conditions
Mar 22, 2024.
Learn how to optimize your Azure DevOps pipelines with tips and tricks for executing tasks conditionally. Utilize conditions to control task execution based on variables, branch policies, and other criteria, streamlining your CI/CD processes for efficient deployment.
Establishing Communication Between Executable Files Using TCP/IP
Mar 19, 2024.
WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
Understanding the .NET Internal Compile Process
Mar 11, 2024.
In this article, we will learn about CLR, Jit Compiler, and how the .NET compilation process works. Understanding the .NET internal compile process involves dissecting how source code is translated into executable binaries.
Leveraging Compiled Queries for Enhanced Performance in LINQ
Mar 09, 2024.
Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
Decoding Expression Trees in C#
Mar 08, 2024.
This article contains the details of how to Decoding Expression Trees in C#.
Boosting Web Page Performance with the Defer Attribute
Mar 06, 2024.
JavaScript plays a vital role in enhancing the interactivity and functionality of web pages. However, the way scripts are loaded can significantly impact the user experience and overall performance of a website. In this article, we'll delve into the defer attribute in JavaScript.
Display an Application Notification in Dynamics 365 Using JavaScript
Feb 07, 2024.
Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
Exploring the Dynamic Language Runtime (DLR) in C#
Feb 06, 2024.
The Dynamic Language Runtime (DLR) in C# enhances flexibility by enabling dynamic typing and execution of code. It fosters interoperability with languages like Python and JavaScript, promoting versatile application development within .NET.
What is Hoisting in JavaScript ?
Jan 17, 2024.
Explore the concept of hoisting in JavaScript, where variable and function declarations are moved to the top of their scope during the creation phase. Learn through examples and enhance coding skills.
Understanding Collection Types in C#
Jan 09, 2024.
Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnecessary data. IQueryable optimizes query execution by fetching only required data, which is beneficial, especially with extensive datasets or remote sources.
Automated Way to Get Latest Pipeline Execution Details of Synapse
Dec 20, 2023.
Automated Way to Get Latest Pipeline Execution Details of Synapse. Automate the retrieval of the latest Azure Synapse pipeline execution details with a custom PowerShell module. Set up the environment, execute commands, and effortlessly fetch pipeline details, streamlining manual efforts.
Static Constructors in .NET
Dec 20, 2023.
Static constructors in .NET, a special breed in object-oriented programming. Unlike instance counterparts, they initialize once per type, controlling execution order and serving key roles in resource management and initialization. Dive into syntax, usage examples, and crucial considerations. Uncover use cases like resource setup, configuration loading, and the singleton pattern.
Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory
Dec 18, 2023.
Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory
How to Resolve PowerShell Script Execution Policy Error for Angular CLI ?
Oct 19, 2023.
How to Resolve PowerShell Script Execution Policy Error for Angular CLI suggests a guide for overcoming issues related to PowerShell script execution policies when working with the Angular CLI, a popular framework for building web applications. The description would involve providing step-by-step instructions or solutions to address PowerShell script execution policy errors that may hinder the smooth operation of the Angular CLI. This is crucial information for developers and users of Angular CLI who encounter such issues and need to resolve them in order to continue working on their projects effectively.
Securing Infrastructure with VMware SaltStack
Sep 06, 2023.
Securing Your Infrastructure with VMware SaltStack: Best Practices and Considerations
Optimizing API Performance in ASP.NET Core Web API with MiniProfiler and Glimpse
Sep 01, 2023.
ASP.NET Core Web API's performance using tools like MiniProfiler and Glimpse. These tools are excellent for profiling and gaining insights into your application's performance, which can help you identify bottlenecks and areas for improvement. Here's a detailed guide:
Background Task Creation with Hosted Services and Workers
Aug 31, 2023.
In a web application, there are tasks that need to be performed in the background, such as sending emails, processing data, or performing regular maintenance. These tasks are often non-HTTP-related and can be time-consuming, so it's best to offload them from the main request-response cycle. In ASP.NET Core, you can use hosted services and background workers to accomplish this.
Streamlined Orchestration with VMware SaltStack: Automating Workflows
Jul 21, 2023.
This article focuses on SaltStack's orchestration features within the VMware ecosystem, highlighting its ability to streamline workflows, automate tasks, and coordinate complex operations across multiple systems.
What is Synchronous and Asynchronous Programming in Javascript
May 24, 2023.
Power Pages - Dynamic execution of long FetchXML without $batch
May 17, 2023.
Dynamic execution of long FetchXML without $batch
Plugins and Event Execution Pipeline in Dataverse
Apr 19, 2023.
Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation. It is a custom business logic implemented using custom class as a Class Library in .NET framework. It is compiled into a  assembly that can be uploaded and registered in Dataverse.
Order of SQL Execution
Apr 16, 2023.
In this article we are going to learn about the Order of the SQL execution
SQL Server Execution Plans
Mar 10, 2023.
In this article, you will learn about SQL Server execution plans.
Spark Logical And Physical Plans
Mar 03, 2023.
In this article, you will learn about Spark Logical And Physical Plans.
Logical Query Processing In T-SQL
Jul 19, 2022.
This article demonstrates the practical values of knowing Logical query execution in TSQL.
Persist Method Execution Metadata In Oracle Using ASP.NET Core
Apr 01, 2022.
This article presents a discussion on how we can capture method execution metadata such as execution time, method name, controller name, etc and save these details in an Oracle database.
SharpLab - Another Powerful Online Code Execution And Decompiler Tool
Jan 20, 2022.
SharpLab is another online tool that lets you write code, run it, inspect MSIL, and even decompile the MSIL code
How To View Data Flow Execution Plan In Azure Data Factory
Jan 17, 2022.
In this article, you will learn how to view Data flow's execution plan in Azure Data Factory.
Azure Functions With .Net 5 - Execution On Isolated Process
Oct 20, 2021.
In this article, you will learn about Azure Functions with .Neet 5 - execution on isolated process.
Business Rules With Entity Scope And Custom Code Execution
Sep 01, 2021.
In Dynamics 365 CRM or Power Platform, updates in entity data by using service call /SDK which do changes in server side, then server-side business rules will fire i.e., business rules with scope Entity will fire. As a business scenario we are going to see updates in contact entity by using SDK Call through code which invokes business rule with Entity Scope.
Business Rules With Scope Entity And Server-Side Execution
Aug 25, 2021.
In Dynamics 365 CRM or Power Platform, updates in entity data by using service call /SDK which do changes in server side, then server-side business rules will fire i.e., business rules with scope Entity will fire. As a business scenario we are going to see updates in contact entity by invoking service call through Post Man Tool which invokes business rule with Entity Scope.
How To Create Missing Index From Execution Plan
Jan 07, 2021.
In this article, I am going to explain how to create a missing index from an SQL server query execution plan and also show you how you can improve your query execution performance and run your query faster. In performance tuning indexing play an important role and helps to run and execute your query faster so, this article also gives basic information about indexing in SQL server such as what is an index, what are the types of index, how to identify the current index from query execution plan and how to improve query performance and how to run query faster in SQL server database.
IQueryable vs IEnumerable
Jun 22, 2020.
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and optimized query translation.
SQL Query Execution Plan Operations
Apr 29, 2020.
In this article you will learn about SQL query execution plan operations.
SQL Query Execution Plan
Apr 27, 2020.
In this article, you will learn about SQL query execution plan.
Using Sorted Sets Of Redis To Delay Execution In ASP.NET Core
Mar 11, 2020.
This article showed you a simple solution of how to done delay execution in ASP.NET Core using Redis sorted sets.
Using Redis To Delay Execution In ASP.NET Core
Mar 02, 2020.
In this article, you will learn how to usie Redis To Done Delay Execution In ASP.NET Core.
How Does Python Code Run: CPython And Python Difference
Feb 14, 2020.
Refer to this article to learn the execution process of the Python code. This article will provide you the clear difference between CPython and Python.
Learn Angular's Folder Structure And Execution Flow For Beginners - Part Two
Feb 05, 2020.
In this article, we will learn about the Folder Structure as well as the execution flow in Angular.
Learn Python - Day One - Introduction
Jan 28, 2020.
In this article I am going to explain about python basics. I am not explaining about the python concept but explaining how it is different from other languages.
ASP.NET Core MVC Request Life Cycle
Jan 16, 2020.
In this article you will learn about description of various stages of ASP.NET Core MVC Request Life Cycle.
How To Execute SSIS Package Using SQL Job
Dec 08, 2019.
Execute SSIS packages seamlessly with SQL Jobs, leveraging SQL Agent to schedule tasks and manage execution, ensuring automation and reliability in data integration workflows.
Performance Tip - For Vs Foreach In Microsoft .NET
Jun 24, 2019.
Consider loop efficiency: 'for' is faster for arrays, 'for each' for collections. Optimize performance by choosing the right loop type in .NET programming.
Comparing Execution Plans In SQL Server
Jun 20, 2019.
SQL Server Management Studio (SSMS) allows easy comparison of execution plans, aiding in identifying performance discrepancies. Users can compare .sqlplan files, highlighting differences in query operators, costing, and CPU consumption.
Remote PowerShell Execution For SharePoint On-Premises
Jun 14, 2019.
In this article, we will see how to execute remote PowerShell command from one machine to another server.
All The Steps For Query Execution In Entity Framework
May 13, 2019.
In this article, we will be exploring the life cycle of query execution in Entity Framework.
Confidential Computing For Azure Virtual Machines
Mar 08, 2019.
This article provides an introduction to Confidential Computing and how to spin a Confidential Compute enabled Virtual Machine in Azure.
SSRS Report Set-Up Using VSIX Installer And Execution In Client Side Using Entity Framework
Sep 10, 2018.
RDLC reports can be executed directly by the ReportViewer control in client side.
How To Improve Execution Performance Of An Application
Aug 31, 2018.
For every application could be small or medium or a big enterprises application the major non-functional requirement will be a good code performance. In some cases, companies will hire a special team or outsource to improve their existing application's performance.
What Is Date Correlation Optimization?
Feb 28, 2018.
OK So, I am doing some digging and peaking around again in SQL Server and came across a database option called Date Correlation Optimization Enabled = False. Honestly, I had no clue what it did, so I took it as a learning opportunity to look into it and do a little research.
Execution Of Selenium Web Driver Using C# And JavaScript
Oct 01, 2017.
In my previous articles / blogs on selenium webdriver , we have seen the execution of various HTML controls using selenium C#. As we know using selenium we can automate anything which we see on the webpage or web application like Alert message , prompt message ,messagebox , textbox , dropdown buttons like (single click ,double click) , hyperlink , checkbox ,radiobutton etc , and even we can automate applications which is developed using Ext.js(Sencha Applications) or KendoUI applications etc.
Use Of Deferred And Immediate Query Execution In LINQ
Aug 31, 2017.
Here, you will see about query execution in linq and what is deffered query execution, what is immediate query execution and it's differences, we will see with example for better understanding.
Execution Of Test Cases In Sequential Order Using Selenium Webdriver - Part Two
Jul 26, 2017.
In my previous article of "Execution Of Test Cases In Sequential And Parallel Using Selenium Webdriver" we learned the usage of selenium webdriver
Execution Of Test Cases In Sequential And Parallel Using Selenium Webdriver
Jul 18, 2017.
Selenium is an open source tool, which is used to execute the test scripts or the test cases on web applications. As we know Selenium is an open source tool, which supports various programming languages such as Java,C#, PHP,JavaScript, Ruby etc. Selenium supports various operating systems to execute the test scripts on web applications like Windows, Linux, MacOS etc. Selenium is written using one of the famous programming languages; i.e. Java, and its a cross-platform.
IFrame Execution Using Selenium WebDriver - Part Two
May 31, 2017.
In this article, we will see the execution of iframe using Selenium WebDdriver.
IFrame Execution Using Selenium Webdriver - Part One
May 30, 2017.
In this article, we will see the execution of iframe using selenium webdriver.
SQL Server - Execution Plans
May 01, 2017.
Execution plan will be generated by Query optimizer with the help of statistics and Algebrizer/ processor tree. It is the result of Query Optimizer and tells how to do/ perform your work/ requirement.
What Is Deferred/ Lazy Loading And Eager Loading?
Apr 28, 2017.
In his article, you will learn about Deferred/ Lazy Loading and Eager Loading.
SharePoint 2013: Implement Deferred And Promise Object In JavaScript Asynchronous Execute
Mar 11, 2017.
SharePoint 2013: Implement deferred and promise Object In JavaScript asynchronous execute.
Task Scheduler To Automate The Execution Of Backup For SharePoint
Feb 15, 2017.
In this article, you will learn about task scheduler to automate the execution of backup for SharePoint.
Server Side Execution Of Business Rules
Jan 17, 2017.
This article is about server side execution of Dynamics 365 Business Rules.
Create Python Flask Web Application And Display SQL Records In Browser
Dec 09, 2016.
This tutorial guides you through creating a Python Flask web application to display SQL Server table records in a web browser. Starting with setting up a Flask web project in Visual Studio, you'll install the necessary Python packages for SQL Server connectivity, such as pypyodbc.
SharePoint 2013: Working With Chrome Control And Cross Domain Execution In Provider Hosted Apps
Jun 20, 2016.
In this article, you will learn about working with Chrome control and cross domain execution in provider hosted apps in SharePoint 2013.
Custom Deferred Grid Using MVC Web API And AngularJS
Feb 26, 2016.
In this article we are going to see how to create a custom deferred grid in MVC using Web API and AngularJS.
MVC Life Cycle - Part Six
Jan 30, 2016.
In this article, we will continue from the last section and see the next segment of Action Execution Process in MVC.
.NET Introduction
Dec 23, 2015.
In this article I am explaining about an introduction to .NET and code execution in .NET.
Execution Of C Or C++ Program With Real Life Example
Nov 24, 2015.
In this article we will discuss the execution of C or C++ program with real life example.
Developing For Microsoft Band with WinRT - Indefinite Background Execution
Sep 21, 2015.
This post covers a more advanced version of background execution using the Microsoft Band with your Windows apps.
Trace Web API Execution Time Using Custom Action Filter
Aug 03, 2015.
In this article you will learn how to trace execution time of API methods using Custom Action Filter.
Execution Process of Stored Procedure
Jul 29, 2015.
This article explains the execution process of Stored Procedures in depth.
Execution Order of Triggers In SQL
Jun 22, 2015.
This article explains the execution order of triggers In SQL.
Developing For Microsoft Band With WinRT - Background Execution
Jun 17, 2015.
This article covers the basics of getting your Band connected using a background task in a Windows Phone application.
Deferred Vs Immediate Query Execution in LINQ
Jun 05, 2015.
In this article I will explain the difference between Deferred & Immediate Query Execution in LINQ.
SharePoint 2013 Step by Step Implement ModalDialog With Promise Pattern
Apr 29, 2015.
This article shows how to use SP.UI.ModalDialog with Promise Pattern of JavaScript to show a message when content is bound to a page.
Tool For Database Backup and Query Execution
Oct 31, 2014.
This article is about how to take a backup of a SQL Server database using a Windows application.
PL/SQL Control Statements in Oracle
Sep 27, 2014.
PL/SQL control statements are used to manage the flow of execution in Oracle's PL/SQL programming language. They enable developers to make decisions, iterate through data, and perform specific actions based on conditions. These statements include IF-THEN-ELSE for conditional execution, CASE for multi-way branching, LOOP, WHILE for iterative processes, and FOR for looping through a range of values. These control statements are essential for creating structured and efficient programs in Oracle databases.
C# Tutorial Part 3 - Managed and Unmanaged Code
Jul 16, 2014.
This part helps in understanding Managed and Unmanaged code in C#.
Expanding the Results View Will Enumerate the IEnumerable Using DB Context
Jun 17, 2014.
This article describes the most frequent terms confronted by software geeks during LINQ execution.
Execution Order of Filters in MVC 4 With Practices: Important FAQ
Jun 13, 2014.
This article describes the execution order of filters in MVC with practices.
Resident Load in QlikView
May 22, 2014.
This article describes how resident load performs in QlikView application.
Stored Procedure Connection In QlikView Application
May 07, 2014.
This article describes Stored Procedures and the execution of Stored Procedures in a QlikVirw application.
Test Initialize and Test Setup
Apr 27, 2014.
In this article, we will explain the uses of two very important attributes called TestInitialize and TestCleanup. Both attributes are useful at the time of unit test setup.
WebApi: Execution of RPC Style Action Method in WebApi Using MVC4
Apr 17, 2014.
In this article I'll share my thoughts on how to implement a RPC Style action method in WebApi using MVC4.
Controlling Concurrent Execution in Parallel Loops
Apr 08, 2014.
This article focuses on how to control the creation of multiple concurrent tasks for parallel loops.
Immediate vs Deferred Query Execution in LINQ
Feb 19, 2014.
In this article you will see Immediate and Deferred Query execution in LINQ.
Step-By-Step Running On-demand Workflow For All Active Records
Jan 30, 2014.
This article is about running an on-demand workflow in Microsoft CRM for all active records.
HTTP Message Handler in Web API: Execution Flow of Custom Message Handler
Dec 30, 2013.
In this article, we will understand the execution flow of the message handler chain.
Setting Breakpoints in Visual Studio
Nov 18, 2013.
This article explains breakpoints that is one of the most used features by developers to debug applications. Breakpoints break (temporarily halt) execution of a program during runtime at certain point.
About Deferred-Execution
NA
OUR TRAINING