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
About Plan
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sanjay Kumar (4)
Chetan Sanghani (4)
Abhishek Mishra (3)
Usman Sheikh (3)
Vishal Yelve (2)
Rohini Parade (2)
Ayush Gupta (2)
Monica Rathbun (2)
Praveen Sreeram (2)
Gowtham K (2)
Madhu Sharma (2)
Sr Karthiga (2)
Monish Bansal (1)
Rajiv Singh (1)
Naveen Kumar (1)
Muhammad Imran Ansari (1)
Shikha Tiwari (1)
Ashish Bhatnagar (1)
Harminder Singh (1)
Jay Krishnareddy (1)
Kirtesh Shah (1)
Mohamed Shifan (1)
Himanshu Singh (1)
Shanuka Maheshwaran (1)
Aman Gupta (1)
Darshan Adakane (1)
Senthilkumar (1)
Sarthak Varshney (1)
Vikas Singh (1)
Dhairya Krishnat (1)
Bhagvan Kommadi (1)
Punar Dutt Rajput (1)
Cristopher Coronado (1)
Jaimin Shethiya (1)
Nilesh Shah (1)
Mrunali Sawant (1)
Dijid Maddumakumara (1)
Muzaffar Ur Rahman (1)
Bhawesh Deepak (1)
Deepak Rawat (1)
Prakash Khaire (Ph.D.) (1)
Tural Suleymani (1)
Harunraseed Basheer (1)
Hadshana Kamalanathan (1)
Nitin (1)
Wilson Mok (1)
Anurag Sharma (1)
Koshila Senadhira (1)
Shenbagapandiyan P (1)
Thiago Vivas (1)
Srinath Pega (1)
Ivan Porta (1)
Ankan Ghorai (1)
Destin Joy (1)
Nikunj Satasiya (1)
Subham Ray (1)
Abhishek Goswami (1)
John Morehouse (1)
Shweta Lodha (1)
Kumaresh Rajalingam (1)
Abdul Raheem (1)
Bassam Alugili (1)
Rushi Mehta (1)
Shantha Kumar T (1)
Krishna Garad (1)
Deepak Dwij (1)
Imtiyaz Ansari (1)
Prashant Kumar (1)
Nirav Gandhi (1)
Kapil Gaur (1)
Harshita Joshi (1)
Dharampal Sikhwal (1)
Stephen Simon (1)
Sumit Deshmukh (1)
Vipul Kelkar (1)
Prashant Bansal (1)
Ramesh Kartik (1)
Thiruppathi R (1)
Chanakya Jayabalan (1)
Apurva Parasher (1)
Chris Love (1)
Pranav Mittal (1)
Related resources for Plan
No resource found
Explaning AWS Lambda Function
11/12/2024 7:11:04 AM.
AWS Lambda is a service that computes the code without any server. It doesn't need any server running, so It is said to be serverless computer. The code is executed based on the response of events
Explaning IExceptionFilter in .NET Core
11/4/2024 4:16:41 AM.
This article explores ASP.NET Core's `IExceptionFilter`, which enables centralized exception handling. It highlights its advantages, such as separation of concerns, consistent error responses, and
Explaning Bucket Sort Algorithm
10/21/2024 5:57:49 AM.
The `BucketSort` class implements the bucket sort algorithm, which distributes elements into buckets, sorts them, and merges the sorted buckets. It's efficient for uniformly distributed data, with
A Detailed Explanation of COUNT in SQL Server
10/1/2024 5:10:59 AM.
This article explores the differences between SQL counting methods: COUNT(*), COUNT(1), COUNT(column_name), and COUNT(DISTINCT column_name). It highlights their purposes, performance considerations, a
Explaning Joins in Azure Cosmos DB
9/30/2024 8:45:05 AM.
Azure Cosmos DB enables seamless querying using SQL-like syntax, allowing joins within JSON documents. This feature facilitates data retrieval from arrays and nested objects within a single container,
Explaning MongoDB Logical Operators
9/24/2024 6:30:42 AM.
In MongoDB, logical operators are essential for constructing complex queries by combining multiple conditions. Key operators include $and (for all conditions), $or (for any condition), $not (to negate
Explaning Random Access in File
9/24/2024 5:03:45 AM.
Random access in files allows direct movement of the file pointer to any position, enabling reading or writing at specific locations without sequential processing. Functions like fseek(), ftell(), and
Explaning Wrapper Classes in Java
9/23/2024 8:49:27 AM.
This is essential for utilizing Java’s object-oriented features, such as collections. With autoboxing and unboxing, Java simplifies conversions between primitives and their corresponding wrapper class
Explaning SignalR in ASP.NET Core 8
9/17/2024 5:13:33 AM.
Learn about setting up SignalR hubs, managing connections, and utilizing WebSocket and Server-Sent Events for efficient, scalable messaging in .NET 8 environments.
Explaning IActionFilter in ASP.NET Core
9/16/2024 10:52:30 AM.
This article explains ASP.NET Core's `IActionFilter`, highlighting its use in handling cross-cutting concerns like logging, validation, and authentication while outlining its advantages and potent
Explaning .NET Razor ≠ .NET Blazor
9/5/2024 5:14:36 AM.
Razor and Blazor are distinct web technologies. Razor is a server-side templating engine in ASP.NET Core MVC, combining HTML with C# for dynamic server-side content. Blazor, in contrast, enables inter
IaaS VS PaaS Vs SaaS - Differences And Explanation Of Cloud Service Models
8/21/2024 6:56:40 AM.
Explore the key differences between IaaS, PaaS, and SaaS in our comprehensive guide. Understand how Infrastructure as a Service, Platform as a Service, and Software as a Service compare in terms of ma
Using Network Planner to Determine and Organize Network Requirements for Teams
8/17/2024 8:14:50 PM.
This content explores how to use a Network Planner to assess and organize network requirements for teams. It covers identifying network needs, designing efficient network structures, and ensuring seam
Detailed explanation of SQL Server Triggers and its Advantages
8/6/2024 5:27:50 AM.
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
Explaning Encoder-Decoder Models
8/1/2024 6:07:51 AM.
Encoder-decoder models, integral to NLP, include an encoder that processes input sequences into a fixed-length representation and a decoder that generates output sequences. Key components are RNNs, at
How To Implement Azure DDoS Protection Plan For Virtual Networks
7/29/2024 5:45:19 AM.
Azure Virtual Network's DDoS Protection Standard safeguards against network-layer attacks like SYN and UDP floods. It includes real-time monitoring and alerting. To implement, sign into Azure Port
Singleton Design Pattern: Detailed Explanation and Practical Examples
7/24/2024 6:52:58 AM.
The Singleton Design Pattern ensures a class has only one instance and provides global access to it. Implementations include Basic Singleton, Thread-Safe Singleton with synchronization, Double-Checked
Detailed Explanation of Builder Design Pattern in C#
7/22/2024 6:26:29 AM.
The Builder design pattern is a creational pattern used to construct complex objects step by step. It separates the object's construction from its representation, allowing for varied configuration
Detailed Explanation of Procedure and Function in SQL Server
7/22/2024 6:22:57 AM.
Stored procedures are precompiled sets of one or more SQL statements that can be executed together. Functions in SQL Server are essential database objects that contain a series of SQL statements and p
Cloud Migration: Strategies and Considerations
7/17/2024 6:04:33 AM.
In this article we will explores various types of cloud migration models and provides insights into determining the appropriate model for specific needs and circumstances.
Detailed explanation of Abstract Factory design pattern
7/8/2024 4:02:03 AM.
The Abstract Factory design pattern is a creational pattern that provides an interface for creating families of related or dependent objects without specifying their concrete classes.
Developing a Sturdy Project Schedule
6/17/2024 5:30:36 AM.
Developing a robust project schedule involves defining goals, breaking tasks into manageable units, establishing dependencies, estimating task durations, allocating resources effectively, and using to
Techniques for Organizing Effective Project Kick-Off Meetings
6/16/2024 8:51:27 AM.
One important event that sets the tone for the whole project is the kick-off meeting. It's the project team's first genuine chance to get together, set objectives, and develop a mutual compreh
Techniques for Risk Management in Complex Projects
6/16/2024 8:37:27 AM.
This article outlines risk management strategies for complex projects, emphasizing the importance of identifying, categorizing, and prioritizing risks. It covers the development of mitigation plans, a
In-Depth Examination of Software Testing Life Cycle (STLC)
6/13/2024 7:19:33 AM.
The Software Testing Life Cycle (STLC) involves sequential activities ensuring software quality, from requirement gathering to closure. Emerging in the 1950s, STLC's structured approach includes p
Visual Studio 11 New Features
6/3/2024 10:07:55 AM.
Discover the enhanced features of Visual Studio, including simplified workflows, Agile development, modern app templates, and seamless Team Foundation Server integration. Experience new IDE themes, im
Best Practices and Role of a Product Owner
6/3/2024 4:35:08 AM.
The Unsung Hero" delves into the pivotal role of a Product Owner in Agile projects. Explore best practices in stakeholder management, backlog grooming, and iterative development, emphasizing the
Comparative Analysis of Azure Service Plans
5/29/2024 10:32:04 AM.
Explore the intricacies of Azure Service Plans with our comprehensive comparative analysis. Unravel the nuances of various service models, from IaaS to PaaS and FaaS. Delve into scalability, cost-effe
Key Components of VMware NSX ALB
5/28/2024 7:00:13 AM.
Explore the core components of VMware NSX ALB, including Service Engine, Controller, Console, Data Plane Scaling, and NSX ALB Cloud Services.
Azure App Service: Build, Deploy, Scale Web & Mobile Apps
5/9/2024 5:36:56 AM.
This article provides a step-by-step guide to implementing Azure App Service for building, deploying and scaling web and mobile applications. The article covers creating an Azure App Service Plan, cre
How Much Does Power BI Cost
5/7/2024 10:30:33 AM.
Discover the differences between free and paid versions, calculate your potential expenses with a Power BI cost calculator, and explore enterprise-level pricing considerations. Understand how Power BI
Sprint Planning Check Lists - Do They Help?
4/23/2024 8:54:09 AM.
Sprint planning checklists are invaluable tools in Agile project management, aiding teams in organizing tasks, setting priorities, and ensuring alignment with project goals.
How to use InterPlanetary File System in React?
4/23/2024 6:15:18 AM.
This article will explore how we can integrate IPFS in React applications. This comprehensive guide explores the integration of IPFS (InterPlanetary File System) with React, demonstrating how to build
Plant Disease Classifier with Azure AI Custom Vision and Blazor
4/17/2024 8:02:26 AM.
This concise article explores the innovative integration of Azure AI Custom Vision service with a Blazor web application to create a sophisticated Plant Diseases Classifier model. The article highligh
Enhance SQL Server Queries with OPTION(RECOMPILE) Hint
4/11/2024 6:56:49 AM.
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 appl
Explanation of HttpClient in .NET Core
4/3/2024 10:41:08 AM.
The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
Comparing Execution Plans In SQL Server
4/3/2024 9:52:56 AM.
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 oper
What Is Date Correlation Optimization?
3/28/2024 6:27:07 AM.
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
Installation Of Visual Studio 2017, A Firsthand Explanation
3/20/2024 11:46:55 AM.
This article tries to give a firsthand and quick introduction to installing Visual Studio 2017, highlighting some of its new features. This article does not cover all the features of Visual Studio 201
Automate Azure App Service Plan Scaling with Automatic Scaling
3/19/2024 5:18:04 AM.
Introducing the latest advancement in Azure's App Service Plans: Automatic Scaling (Preview). This awesome feature revolutionizes the scaling process by offering per-app scaling with ease.
The Amazing Adventure of MongoDB Queries
2/9/2024 9:21:46 AM.
This content provides an engaging analogy of MongoDB queries as an adventurous quest through a treasure-filled city. It introduces concepts like planning the query as preparing a treasure map, executi
How to Plan for a Windows 365 Cloud PC Deployment?
12/18/2023 7:18:45 AM.
Securely stream your Windows experience including your personalized apps, content, and settings from the Microsoft Cloud to any device with your Windows 365 Cloud PC.
How to Create and Execute Test Plan, Test Suite in Azure DevOps
11/15/2023 7:00:30 AM.
This article is a detailed guide on implementing design patterns using generic delegates in C#. It provides comprehensive examples for the Strategy, Observer, Command, and Template Method patterns.
Performance Optimization in ASP.NET Core: Strategies and Code Explanation
8/21/2023 6:06:31 AM.
Performance Optimization in ASP.NET Core involves employing various strategies to enhance the speed, responsiveness, and efficiency of web applications. This article provides insights into essential o
Unlocking the Power of React Sliders: In-Depth Explanation and Real-World Examples
6/21/2023 1:33:24 PM.
Unlocking the Power of React Sliders In-Depth Explanation and Real-World Examples
Features of the Azure App Service Plan
6/1/2023 5:20:07 AM.
In this article, we will learn about the features of the Azure App Service Plan and how it works.
Scrum - Roles, Events And Artifacts
4/21/2023 7:24:56 AM.
This is an article on Scrum Roles, Events, & Artifacts.
SQL Server Execution Plans
3/10/2023 8:46:43 AM.
In this article, you will learn about SQL Server execution plans.
Spark Logical And Physical Plans
3/3/2023 5:45:29 AM.
In this article, you will learn about Spark Logical And Physical Plans.
The Power BI Release Plan Report Connection Instructions
1/17/2023 11:27:00 AM.
In this article, you will learn about Power BI Release Plan report connection instructions.
How To Use ClickUp Efficiently For Project Management?
12/18/2022 2:45:57 AM.
ClickUp is a flexible project management application that can be used for a variety of tasks, including team management and goal monitoring.
How To View Data Flow Execution Plan In Azure Data Factory
12/14/2022 3:33:27 AM.
In this article, you will learn how to view Data flow's execution plan in Azure Data Factory.
Top 11 SQL Server Maintenance Plan Best Practices | Learn SQL Server
12/7/2022 5:40:51 AM.
Know the SQL server maintenance plan best practices with scripts & without scripts. This guide has the best SQL server maintenance solution in simple tasks for users.
How To Configure Network Security For Azure App Service Plan
11/30/2022 5:32:37 AM.
In this article, you will learn how to configure network security for azure app service plan.
SignalR Backplane
9/6/2022 4:44:02 AM.
To send the message to clients connection on multiple servers.
Get Started With NCache Backplane For .NET Core SignalR
7/29/2022 7:39:47 PM.
In this article, you will learn how to get started with NCache backplane for .NET Core SignalR.
SignalR In .NET 6 Using NCache As Backplane
7/27/2022 4:47:42 AM.
In this article, you will learn about SignalR in .NET 6 using NCache as Backplane.
Terraform On Azure - Creating A Azure Function Running On App Service Plan
10/29/2021 5:35:12 AM.
In this article, we will create an Azure Function running on App Service Plan using Terraform.
Planning A Disaster Recovery Strategy On Microsoft Azure - Designing Geo-replication Strategy
10/28/2021 5:49:49 AM.
This article demonstrates how to deploy an existing Azure web application and Azure SQL Database across multiple Azure regions.
Terraform On Azure - Creating A Azure Function Running On Consumption Plan
10/25/2021 2:35:58 PM.
In this article we will learn how to create an Azure Function running on Consumption Plan using Terraform.
Planning A Disaster Recovery Strategy On Microsoft Azure - Working With Data Backup In Azure
10/1/2021 1:11:03 PM.
In this article, you will learn how to plan a disaster recovery strategy on Microsoft Azure.
Planning A Disaster Recovery Strategy On Microsoft Azure - Defining Recovery Requirements
9/21/2021 6:07:15 AM.
In this article, you will learn how to plan a disaster recovery strategy on Microsoft azure.
Power Apps Environment Set Up for Individuals | Developer Plan
8/9/2021 6:55:32 AM.
Power Apps Environment Set Up for Individuals | Developer Plan
Manage Delivery Plans With Azure DevOps
7/21/2021 12:48:02 PM.
By default, Azure Boards don’t provide an option to show the progress of the scheduled work items of a team by sprint in a calendar view. However, you can add this capability by installing the Deliver
Working With SPFX Property Pane
4/3/2021 2:44:40 PM.
In this article, you will learn how to Work with Spfx Property Pane.
SQL Server Backup And Restore Planning
3/17/2021 1:45:10 PM.
In this article, you will learn about SQL Server Backup And Restore Planning.
How To Create Missing Index From Execution Plan
1/7/2021 8:46:49 PM.
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 f
Six Types Of Regression | Detailed Explanation
1/5/2021 12:38:54 AM.
In this article, we will learn and understand the six types of Regression
A Generic Library For Accessing and Creating Microsoft Project Plan File
1/1/2021 5:41:29 AM.
Here you will learn about a generic library for accessing and creating Microsoft Project Plan files.
Using LAST_QUERY_PLAN_STATS In SQL Server
7/29/2020 3:24:53 AM.
In this article, you will learn how to use LAST_QUERY_PLAN_STATS in SQL Server.
Providing Admin Consent To Azure Registered Application
6/1/2020 5:53:18 AM.
This article describes how to provide admin consent to access Graph API for apps registered under the Azure portal.
SQL Query Execution Plan Operations
4/29/2020 8:27:56 AM.
In this article you will learn about SQL query execution plan operations.
Finding Soil Moisture In Plants Using Arduino
4/28/2020 3:20:00 AM.
In this article I will explain about finding soil moisture in plants using Arduino.
SQL Query Execution Plan
4/27/2020 11:42:34 PM.
In this article, you will learn about SQL query execution plan.
Automatic Watering System To Plants By Using Arduino Mega 2560
4/27/2020 1:30:58 AM.
In this article I will explain about the Automatic Watering System to Plants using Arduino Mega 2560.
Automatic Plant Watering System Using Arduino
4/7/2020 3:44:46 AM.
In this aticle we will learn how to create an automatic plant watering system using Android mobile
Azure Kubernetes Service Architecture
3/23/2020 9:31:56 AM.
This article walks us through the internal architecture of Azure Kubernetes Service and gives a clear understanding of the Control Plane and the Node
How To Deploy Application On Azure App Service And Enable Application Logs
2/20/2020 8:41:56 AM.
A detailed article on Azure App Service, how to enable application-level logs and how to deploy your code from Visual studio
Entity Framework Core 5.0 - Plan Quick Review
2/11/2020 7:53:34 AM.
Plan for Entity Framework Core 5.0 - Review:https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-5.0/plan
What Is A Test Plan And How To Write Test Plans
2/11/2020 7:30:07 AM.
In this article, we will learn about test plans how to write a test plan in Software testing.
Microsoft Graph Explorer Way To Manage Planner
1/22/2020 8:45:01 PM.
Learn how to create and get the plans associated to the Office 365 group using Microsoft Graph Explorer
Plans For Designing Metro Style Apps (Windows Store Apps)
12/17/2019 5:55:20 AM.
In this article we will learn how to plan our Metro Style App development. As all of you are aware for every development or every work before starting that we must do a plan for that.
Canvas Planet Image Map Using HTML 5
12/4/2019 3:29:21 AM.
In this article we are going to understand the concept of a canvas planet image map using HTML 5. In this section you will see, with the mouse over the planets, the names of the planets and use of a c
Implement PayPal With Recurring Payment Using Angular 8
10/10/2019 4:11:07 PM.
In this article, you will learn how to implement PayPal with recurring Payment using Angular 8.
Nintex Purge Data Deployment Plan - SharePoint Servers
10/1/2019 7:32:20 AM.
In this article, you will learn about Nintex Purge Data Deployment Plan - SharePoint Servers.
SQL Assessment API (Public Preview)
8/6/2019 10:55:07 AM.
Is your SQL Server configuration in line with Microsoft recommended best practices? If you want to know, check this latest video on SQL Assessment API.
Understanding C# Inheritance In A Better Way👍
7/27/2019 11:59:51 PM.
In this video, we will see a practical explanation of C# Inheritance. We will understand what C# inheritance is and how we can relate it to natural inheritance. We will learn about related concepts li
5 Reasons Why You Need To Plan To Backup Your Office 365 Data Today
3/4/2019 9:14:14 AM.
Here are the 5 reasons why you should plan the backup of your Office 365 data as soon as possible, and why you need to backup Office 365 mailbox emails, spreadsheets, appointments etc. right away!
Planning The Migration Of Application To Azure PaaS
1/29/2019 9:03:48 AM.
Many organizations are planning to migrate their existing workload to Azure to achieve performance, scaling, the flexibility of resource consumption, and Pay-as-you-go plans. Let us see how to plan th
What Is Virtual Machine? | Easy Explanation
1/20/2019 12:33:57 PM.
In this video, I have explained what Virtual Machines are, why do they even exist, and what their applications are!
Role Of Microsoft Planner App In Office 365
1/16/2019 3:14:38 AM.
Role of Microsoft Planner app In Office 365. Office 365 Planner manage plans creation, add task to plan, add people to your tasks, and sort out tasks.
Notes From SharePoint Online Migration Planning
1/14/2019 11:43:28 PM.
Notes From SharePoint Online Migration Planning. In this article, I will describe the things you should consider while migrating your SharePoint on-premise sites to Office 365-SharePoint online.
Overview Of Azure Functions
1/10/2019 8:56:11 AM.
Azure Functions is a serverless architecture. Let's get an overview of this functionality through this post.
SharePoint Migration - Planning And Guidance On SharePoint Objects
9/14/2018 10:14:45 AM.
In this article, I will share with you a detailed list of SharePoint Inventory that must be pulled out and kept stored as backup safely, at least during the migration phase.
How to Start Planning and Estimating Projects in Agile
9/4/2018 4:15:44 AM.
How to start planning and estimating projects in AGILE. This is an overview of what measure the project estimate can be done and how to we measure it. In what way we can measure the velocity of a TEAM
Creating And Managing Azure App Service Plans
7/24/2018 11:08:37 AM.
Azure provides the best app service plan for hosting platform. it can be supporting many languages, Easy way to implementation & configuration. and develop with any kind of resources. If you inte
How To Choose An Azure App Service Plan - Demystifying App Service Plans
6/8/2018 10:11:03 AM.
Azure App Service is one of the common and most used services. When we straight away deploy apps, jobs etc., to the app server, one thing that confuses and that makes decision making hard is the multi
Master Plan For Your Email Marketing
3/1/2018 11:01:57 AM.
Take a look at these email marketing strategies which are followed by top marketing pros
Microsoft Defines Windows Progressive Web App Plans for 2018
2/7/2018 7:33:21 AM.
Microsoft articulated more about their Progressive Web Application plans in a recent article. They are the first platform to include PWAs in their App Store.
C# Corner - My New Year's Resolution
1/11/2018 10:57:50 PM.
Here is the New Year's resolution of C# Corner.