Resources  
  • Passing Values Between Tasks in Azure DevOps PipelineMar 26, 2024. In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pipeline automation.
  • Seamless Database Integration with C#Mar 26, 2024. Efficiently integrating databases with C# applications is crucial for managing data seamlessly. Explore various approaches like ADO.NET, Entity Framework Core, and Dapper along with best practices for successful integration.
  • Quick SQL Refresher Feb 28, 2024. The Quick SQL Refresher provides a concise cheat sheet for SQL, covering essential concepts, keys, commands (DDL, DML, DQL, DCL, TCL), constraints, clauses, T-SQL fundamentals, joins, functions, exception handling, indexes, views, stored procedures, transaction control, triggers, and cursors.
  • Explain about Git and GitHubFeb 01, 2024. Git is a powerful, open-source distributed version control system designed by Linus Torvalds for efficient project management. Developers use Git for version control, tracking code changes, and collaborating. GitHub, a platform utilizing Git, facilitates collaborative coding, project hosting, and version control.
  • Command Line Arguments in C ProgrammingJan 30, 2024. Programming can be powerfully customized with command line options without requiring changes to the code. In this article, we will learn how command line arguments in C programming empower users to modify a program's behavior, providing flexibility and adaptability without altering the source code.
  • Working with Modern Command Bar Designer in PowerAppsJan 25, 2024. In this article we will discuss about modern command designer and how it is becoming more popular alternative to RibbonWorkBench. We will discuss various Use Cases followed by a demo discussing step by step process for the same.
  • What is Command Pattern in C#? Jan 25, 2024. The Command Pattern, a behavioral design pattern in C#, transforms requests into stand-alone objects, promoting decoupling between sender and receiver. It enhances flexibility, undo/redo capabilities, and ease of command integration.
  • Docker Swarm: Transforming Container OrchestrationJan 12, 2024. Explore the dynamic world of Docker Swarm, where machines become nodes, managers orchestrate, and containers dance in perfect harmony
  • Optimizing ADO.NET Code for Efficient Data Management StrategiesJan 12, 2024. In this article, we will learn about ADO.NET performance with strategic data retrieval techniques. Explore stored procedures, pagination, selective column retrieval, caching, batch processing, optimized data types, and connection pooling for efficient database interactions and responsive user experiences.
  • JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQLJan 10, 2024. In this series of articles, we'll focus on a hands-on, practical implementation of JWT authentication with refresh tokens in .NET Core 6.0 using ADO.NET and SQL, emphasizing real-world scenarios and code examples for a deeper understanding of the underlying concepts.
  • Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NETJan 01, 2024. Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NET: Best Practices and Code Examples
  • Microservices Development Using CQRS Architectural Design Pattern in Microsoft Asp.net Core Web API Dec 28, 2023. The Command Query Responsibility Segregation (CQRS) pattern is an architectural principle that separates the responsibility for handling commands (write operations that change state) from queries (read operations that retrieve state). It advocates having separate models for reading and writing data.Components of CQRS: Command: Represents an action that mutates the system's state.Query: Represents a request for data retrieval without changing the system's state.Command Handler: Responsible for executing commands and updating the system's state.Query Handler: Responsible for handling read requests and returning data in response to queries.Command Model: Contains the logic and rules necessary to process commands and update the data store.Query Model: Optimized for querying and presenting data to users, often involving denormalized or optimized data structures tailored for specific queries.Key Principles: Separation of Concerns: Splitting the responsibilities of reading and writing data helps in maintaining simpler, more focused models for each task.Performance Optimization: Enables independent scaling of read and write operations. The read model can be optimized for query performance without affecting the write model.Flexibility: Allows for different models to be used for reading and writing, which can cater to specific requirements and optimizations for each use case.Complex Domain Logic: Particularly beneficial in domains where read and write logic significantly differ, allowing tailored models for each type of operation.Benefits: Scalability: CQRS enables scaling read and write operations independently, optimizing performance.Flexibility and Optimization: Tailoring models for specific tasks allows for better optimization of the system.Complexity Management: Separating concerns can make the system easier to understand and maintain.
  • Building To Do Application Using RustDec 15, 2023. In this article, we will learn to build a todo application using Rust Programming Language. This comprehensive guide navigates through creating a To-Do application using Rust. It covers Rust installation, setting up the project with Rocket, and building a functional UI for task management.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • Navigating Azure Storage: Essential CLI CommandsNov 29, 2023. Azure CLI unlocks the power of Microsoft Azure Storage. Key commands like create, show, list, update, and delete storage accounts empower efficient cloud storage management. Elevate your Azure journey with these commands.
  • How To Solve Nodemon Command Is Not Recognized In Terminal For Node.js?Oct 17, 2023. This article guides users through Nodemon installation in Node.js and offers solutions for the "Nodemon command is not recognized" error, facilitating streamlined and efficient development with automatic server restarts.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • Clean Architecture and Command Pattern in ASP.NET Core API ImplementationOct 16, 2023. Explore a clean and efficient approach to building a robust ASP.NET Core Web API for a Car Company, using Clean Architecture and the Command Pattern. Simplify CRUD operations with a structured and maintainable design.
  • CRUD Operations in ASP.NET Core with 3-Tier Harmony and Command Builder Design Pattern Oct 04, 2023. Command Builder Design Pattern in an ASP.NET Core Web API using a Three-Tier Architecture for CRUD operations. For the sake of this example, let's assume you have a model named CSharpCornerArticle.
  • Useful Git CommandsSep 27, 2023. Mastering Git Your Ultimate Cheat Sheet for Effortless Version Control is a comprehensive reference guide that provides a condensed and quick-access summary of essential Git commands, concepts, and best practices. It aims to empower users with the knowledge and tools to effectively utilize Git for version control, streamline workflows, and enhance collaboration on software development projects. This cheat sheet covers a range of Git functionalities, including repository management, branching, merging, collaboration, resolving conflicts, and more, making Git usage efficient and straightforward for both beginners and experienced developers.
  • Essential Git Commands Every Developer Should KnowSep 23, 2023. Git can also be intimidating and confusing for beginners and even experienced developers. That's why in this article, we will learn some of the essential Git commands that every developer should know and master.
  • Transaction Control Language (TCL) Commands in SQLSep 14, 2023. In this article we will learn about Transaction Control Language (TCL) Commands in SQL.
  • SQL CommandsSep 08, 2023. 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 structures, Data Manipulation Language (DML) for data manipulation, and Control Language (CL) for transactions and control. Understanding these SQL command types is crucial for effectively working with SQL Server databases, enabling tasks from creating tables to querying data, ensuring efficient data management and retrieval.
  • Generating Certificate and Private Key FilesAug 24, 2023. Create local certificates with ease using Visual Studio 2017 Developer Command Prompt. Generate certificate and private key files, then install them locally for enhanced security. Simplify your authentication process.
  • Benefits of using MongoDB with ADO.NET in ApplicationsAug 21, 2023. In this article, you will learn what are the benefits of using MongoDB with ADO.NET in applications.
  • Azure Virtual MachinesAug 16, 2023. Unlock Cloud Potential with Azure Virtual Machines. Explore deployment, management, scalability, and versatile use cases. Achieve security, efficiency, and innovation as Azure VMs reshape cloud computing's future.
  • The Convergence of Voice Commands and Generative AI with Other technologiesAug 02, 2023. The Convergence of Voice Commands and Generative AI with Other technologies
  • Boosting Your Productivity with .NET Core CLI CommandsJul 31, 2023. Boost productivity with Visual Studio's command-line interface (CLI) for .NET Core. Learn essential commands for creating projects, running applications, managing dependencies, and more. Streamline development with CLI power.
  • Docker CommandsJul 10, 2023. Docker Commands
  • How to Create a CLI in Go?Jun 15, 2023. The article describes how we can create easy to use CLI in Go using the cobra package.
  • WebdriverIO Functions and CommandsJun 12, 2023.
  • A Comprehensive Guide to .NET Development for BeginnersJun 12, 2023. Discover the essentials of .NET development in this comprehensive guide. Learn about the .NET Framework, C# programming, ASP.NET web development, ADO.NET for databases, building desktop applications, and the innovative ASP.NET Core. Ideal for beginners looking to start their journey in .NET development.
  • Execute DOS Command in Desktop flow using Microsoft Power AutomateJun 09, 2023. Reading this article, you can learn how to Execute the DOS Command using Run Dos command actions with Desktop flow in Microsoft Power Automate.
  • Simplify Your Git Workflow: Introducing Git-ChatGPT, a Command Line Tool Empowered by ChatGPTMay 08, 2023. AI, ChatGPT, OpenAI API, git, git bash, C#, dotnet core
  • Secret GIT commandsMay 04, 2023. Some of the secret commands in GIT
  • How To Use Cargo Commands In Rust?May 01, 2023. explain all main commands in rust programming langugue
  • How To Update Table Data In MysqlApr 28, 2023. Mysql DML commands and Update command in a Mysql.
  • Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?Apr 19, 2023. Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?
  • How to use MySQL DML commands in RustApr 18, 2023. In this article We learned how to Select, insert, update, and delete data in our database using rust.
  • Details about Dokcer and it's basic commandsApr 18, 2023. Details about Docker and it's basic commands
  • Commonly Used Vue.js CommandsMar 17, 2023. In this article, you will learn about Vue.js Commands.
  • Get CLI - The Ultimate Command Line Tool for GetX Architecture in FlutterFeb 22, 2023. As a Flutter developer, you know that creating complex mobile applications can be a time-consuming and challenging task. The GetX library has been gaining popularity for its simplicity and ease of use, and with the addition of the Get CLI, the development process has become even more streamlined.
  • Automate Purge Process Using Windows 10Feb 06, 2023. In this article, you will learn how to setup a file purge process using Task Scheduler and Command Prompt in windows 10.
  • Insight.Database .NET Micro ORM - Executing And Carrying Out SELECT SQL CommandsJan 09, 2023. Insight. The database micro-format for.NET is quick, light, and, dare we say it, fantastic. SQL commands are simple to run using Insight. SqlCommand class and parameters are no longer used. AddWithValue. Insight automatically converts command arguments from an object.
  • How To Install Azure CLIDec 29, 2022. In this article, I have described various steps to install Azure CLI (Command Line Interface).
  • Run Powershell Commands From The Azure PortalDec 27, 2022. In this article, you will learn how to run Powershell Commands from the Azure Portal.
  • SQL KeywordDec 13, 2022. In this article we will learn about SQL Keyword
  • Run JavaScript From Modern Command Designer In Dynamics CRMNov 29, 2022. During certain scenarios we must call JavaScript from Command bar present in a ribbon for every Dynamics CRM Form. As an example, contact main form was used in a model driven app to explain this scenario.
  • Solution - Angular CLI MODULE_NOT_FOUND ErrorNov 11, 2022. In this article, you will learn how to create new project at time not found angular-cli.
  • Browser Commands In Webdriver IOOct 31, 2022. In this article, you will learn about Browser Commands In Webdriver IO.
  • Browser and Action commands in CypressOct 27, 2022. In this article, we will see some of the browser and action commands in cypress.
  • Browser Commands Selenium With PythonOct 26, 2022. In this article, you will learn about browser commands selenium with python.
  • Create Database Connection Using ADO.NETOct 21, 2022. In this article, you will learn how to create Database Connection using ADO.NET - C#.
  • How To Enable The Modern Command Bar Experience In The Canvas AppsSep 27, 2022. Step by Step details to enable Microsoft Power Platform Canvas Apps Modern Command Bar
  • Cheat Sheet For Git Basic CommandsSep 14, 2022. This article provides a comprehensive list of basic Git commands essential for daily use. It covers configuring the Git environment, working with online repositories, understanding the life cycle of a Git repository, and other miscellaneous Git commands.
  • Implementing Prompt Dialog In D365 CE - Part IISep 02, 2022. This is second part of implement dialog prompt in D365.
  • Implementing Prompt dialog in D365 CE - Part ISep 01, 2022. This article is about implementing dialog in Dynamics 365 CE
  • Syncing Cache In ADO.NET Using NCache In .NET 6 With SQL ServerAug 23, 2022. In this article, you will learn about syncing Cache In ADO.NET Using NCache In .NET 6 With SQL Server.
  • How To Execute SQL Statements From Command PromptJul 30, 2022. Here we discuss SQL and how to execute SQL statements in a command prompt.
  • Create A .Net Core Web API Using Command LineJun 27, 2022. In this article, you will learn how to create .NET core Web API using Command Line.
  • Button On Command Bar Doesn't Appear When An Item Is Selected In Sub Grid Microsoft Dynamic CRM - IssueJun 27, 2022. The mentioned issue would have been commonly encountered by the developers who extensively play around with the sub gird’s, who would have encountered the scenario where in you have a button on the sub grid which gets disappear when you select a sub grid record or doesn’t appear on the sub grid. This article would provide a resolution for such issues whereas the customized button doesn’t appear on one or more grid items selection in MS CRM online as expected.
  • Implement In-Memory Cache In The .NET Core APIJun 20, 2022. In this article, you will learn how to implement In-Memory Cache in the NET Core API.
  • Adding Custom C# Slash Commands To MattermostApr 29, 2022. This article describes a prototype that can be reused easily to host custom slash commands for the popular Mattermost team collaboration software. A slash command is a functional extension that allows to render a complex message based on the command's input on behalf of the user using the command.
  • Manage GitHub Repository Using Visual Studio CodeApr 18, 2022. How to manage public and private repository using VS Code and Push Project Changes to Repo
  • Run Commands On Microsoft Azure Virtual MachineApr 18, 2022. if you have a virtual machine and you need to run some commands then normally you've to log in and then open a terminal and then execute your commands. What if there is another way of doing let us learn in this article.
  • Important Git Commands With ExamplesMar 10, 2022. This article describes the Important Git commands with examples and use cases
  • How To Install SQLite On Windows 11Feb 18, 2022. Learn how to easily install SQLite on your Windows 11 system. Download the setup, configure environment variables, and use the command prompt to set up the SQLite shell for efficient database management.
  • Command Line Arguments In JavaFeb 16, 2022. In this article, you will learn about the command line arguments in Java
  • SQL Commands : DDL, DQL, DML, DCL, TCL with Examples Jan 27, 2022. Master the art of SQL DDL commands, DCL commands, DQL commands, DML commands, TCL commands for effective database management.
  • Frequently Used Linux CommandsJan 20, 2022. This article will help to learn the simple and frequently used Linux commands
  • Maven: What , When & Why?Jan 19, 2022. Maven intro, POM files details , Frequently used commands
  • Managing Files On GitHub Using Git Bash In Real-Time Scenario - Removing A Specific File From Pull RequestJan 14, 2022. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.
  • Artillery - API Freighting Tool Overview Jan 08, 2022. Load Performance Testing, Artillery tool setup , Basic commands , Debugging & Reporting
  • Code CheckIn Using Git CommandsDec 31, 2021. This article explains how to check in the code to Azure Dev Ops repository using git commands
  • Lesser Known Git CommandsDec 30, 2021. The article covers 5 important rare git commands, which are extremely useful
  • Hiding Special Buttons From Dynamics 365 CEDec 30, 2021. This article is about hiding button which is not visible in Ribbon workbench for easy hide.
  • Scanning Markdown Files For Stylistic ErrorsNov 15, 2021. In this article, you will learn about scanning Markdown files for stylistic errors.
  • Top 15 Git Commands With Examples For Every Developers💪Nov 12, 2021. Git is a version control system for managing the source code which keeps the track of it with many options. Basically, it is a software to track the changes of files mostly used for coders to work collaboratively and source code management during the software development.
  • Advanced Entity Framework Core: Extract data access layer with migrations to the library project and Execute migrations from the command lineOct 13, 2021. See code examples in this article: Let's imagine you have a solution with many projects including a web application with the name "MiniService", which contains appsettings.json and a library project with DbContext and Migrations with any name f.e. "MiniService.Data". You most likely want to use the exact connection string in the appsettings.json used by the web app. May be different cases when you will need to run migrations from the command line, for example, there is no 'Package Manager Console' in VS for Mac.
  • List Of Frequently Used Docker CommandsAug 12, 2021. In this article, you will learn about frequently used docker commands.
  • Command Line Tools Using .NET 5Jul 06, 2021. This article presents how simple it is to create CLI/Command-line tools using C# with .Net 5.0. Creating a command-line tool in C# is simple with less effort to manage command mapping and argument parsing.
  • List Of Commonly Used GitHub CommandsJun 29, 2021. I'm adding here the list of commonly used GitHub commands. These are the commands we use in our day to day programming when working with GitHub Repository.
  • Most Important SQL CommandsJun 27, 2021. In this article, you will learn about the most important SQL Commands.
  • Commonly Used Angular CommandsJun 24, 2021. A list of commonly used Angular commands. These commands are helpful whenever we face some problem while working on Angular projects.
  • Managing Files On GitHub Using Git Bash In Real-Time Scenario - Know About GitHub ReviewerMay 28, 2021. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.
  • Managing Files On GitHub Using Git Bash 📥📤 In Real-Time Scenario - Owner Uploads Project In GitHub RepoMay 25, 2021. We discuss on steps to push, pull and clone repository files to GitHub by team members using Git Bash under organization. Here one member will add reviewers to review its pushed files by creating pull request. After then it will be merged to main branch.
  • Lets Know About Team In GitHub 📥📤 In DetailsMay 22, 2021. Teams are groups of organization members that reflect your company or group's structure with cascading access permissions and mentions. Organization owners and team maintainers can give teams admin, read, or write access to organization repositories.
  • Let's Learn About GitHub Projects 📥📤 In DetailMay 21, 2021. We can now implement GitHub Projects at the Organization level. All users in the Organization will have access to its Projects, so we and our team can plan and manage work across repositories.
  • Steps To Create And Configure Organizations In GitHub 📥📤 In DetailsMay 20, 2021. Organizations are shared accounts where businesses and open-source projects can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features.
  • Let's Learn About Git Default Branch 📥📤 In DetailMay 11, 2021. In this article, I will describe the below-mentioned points in detail, what is git default branch, use of git default branch, how to change the git default branch, check git default branch using Git Bash.
  • Let's Learn About Merging The Git Branches 📥📤 And Create Pull Request In DetailsMay 07, 2021. Explore the intricacies of merging Git branches and initiating pull requests in this comprehensive guide. Learn how to manage version control effectively, collaborate with teams, and streamline your development workflow using platforms like GitHub, Bitbucket, or GitLab.
  • Let's Understand About Git Branches 📥📤 And Its Real Time UsesMay 05, 2021. Git branch is nothing but the copy of source code. So, that way a developer can easily find the source code, by whom it was written, and using what language and it can be tracked easily.
  • Let's Know About Git Branches 📥📤 And How To Implement ItMay 04, 2021. Git branches are effectively a pointer to a snapshot of your modifications. So, Instead of copying files from directory to directory, Git stores a branch as a reference to a commit.
  • Altering Item Insights Security In Microsoft Graph Using PowerShell CommandsApr 23, 2021. Item experiences security settings give the capacity to arrange the perceivability of insights which is got from Microsoft Graph
  • WCF (4), RIA ServicesApr 14, 2021. This discuss a WCF related service, RIA service.
  • Building Real Time Applications Using .Net Core And Kafka (Continuation)Apr 05, 2021. In this article, we will be continuing to build a real-time application using Kafka and .Net Core.
  • Building Real Time Applications Using .Net Core And KafkaApr 05, 2021. In this article, we will be building one real-time application using Kafka and .Net Core.
  • 20 Git Commands You Should KnowMar 25, 2021. In this article, we'll go over 20 useful Git commands that every software developer should be aware of.
  • DataTable And DataTableCollection Class In ADO.NETMar 17, 2021. In this article, you will learn about DataTable and DataTableCollection Class in ADO.NET.
  • Properties, Methods And Events Of DataSet Class In ADO.NETMar 11, 2021. In this article, you will learn Properties, Methods and Events of DataSet Class in ADO.NET

About ADO-Command

NA

OUR TRAINING