Resources  
  • Case Studies and Real-World Applications: .NET Standard in ActionJul 17, 2024. .NET Standard empowers developers to create robust applications across platforms like healthcare management systems with EHR integration using Xamarin and ASP.NET Core, and financial trading platforms leveraging scalable microservices on Azure.
  • Learn About Angular Karma Test Cases Using GitHub CopilotJul 12, 2024. Learn how to create and execute Angular Karma test cases using GitHub Copilot. Start by creating components and corresponding test files like device.ts and device.test.ts. Add functions such as pushToDevice and sendToBackend, then use Copilot to generate multiple test cases. Run tests with npm run test and view results in Chrome.
  • Dynamics 365 Customer Service: Disable the Resolve Case buttonJul 11, 2024. This article guides you on restricting customer service associates from resolving cases with open activities or child cases in Dynamics 365. By creating a JavaScript Web Resource and customizing the Case form, you can enable or disable the "Resolve Case" button based on the status of related activities and cases.
  • Sealed Class VS Abstract Class with Real-time CasesJul 10, 2024. This article explores the differences between sealed and abstract classes, providing real-time case studies to illustrate their use in software development. Learn how sealed classes restrict inheritance, while abstract classes serve as blueprints for other classes.
  • Client Script - OnCellEdit with Realtime Scenarios and Use CasesJul 02, 2024. Explore the power of client-side scripting with a focus on OnCellEdit events, providing real-time scenarios and practical use cases. Delve into JavaScript's capabilities in frontend development, mastering event handling for seamless data interaction and enhanced user experiences.
  • ServiceNow Client Script OnSubmit Real-Time Scenarios and Use CasesJun 27, 2024. Explore real-time scenarios and practical use cases of ServiceNow Client Script's OnSubmit functionality. Discover how to streamline workflows, automate tasks, and enhance user experiences through effective scripting.
  • Key Features and Use Cases of AngularJun 27, 2024. Angular is a robust framework for building client-side applications with HTML, CSS, and TypeScript, offering features like component-based architecture, two-way data binding, and dependency injection.
  • SQL Merge Statement: Syntax, Usage, and ExampleJun 25, 2024. The SQL MERGE statement combines INSERT, DELETE, and UPDATE operations into a single query, synchronizing data between source and target tables based on key fields. This powerful command efficiently handles data modifications, ideal for maintaining Slowly Changing Dimensions (SCD) in data warehouses.
  • Understanding throw vs throw ex vs throw new Exception() in C#Jun 22, 2024. Explore the nuances of exception handling in C# .NET with a deep dive into 'throw', 'throw ex', and 'throw new Exception()'. Learn when to use each technique, their impact on stack traces and exception propagation, and best practices for effective error handling in your applications.
  • IIF in Microsoft SQL ServerJun 21, 2024. IIF function in SQL, also known as "Immediate If," provides a concise way to perform conditional evaluations within queries. It allows SQL developers to return different values based on whether a specified condition is evaluated as true or false.
  • Garbage Collection (3), C# using statement --- Language support for DisposeJun 17, 2024. This article will discuss the C# using a statement. Garbage collection (GC) in computer science reclaims unused memory automatically. Invented by John McCarthy in 1959, GC simplifies memory management. This series explores GC in .NET, focusing on managed, unmanaged code and the `using` statement for resource management.
  • Improved Performance by STORED PROCEDURESJun 08, 2024. Stored procedures in relational database management systems (RDBMS) encapsulate frequently used SQL statements for efficient execution. They offer dynamic SQL execution, return values via OUT keywords, and include procedural logic like IF-ELSE and loops.
  • Break in C#May 24, 2024. The "break" statement in C# is a control flow statement that terminates the nearest enclosing loop or switch statement. It is commonly used to exit a loop prematurely when a specific condition is met, improving code readability and efficiency.
  • Client Script - OnChange with Realtime Scenarios and Use CasesMay 24, 2024. Harness the power of client-side scripting with OnChange events for dynamic user experiences. Real-time scenarios include form validation, live data updates, and interactive interfaces, enhancing user engagement and application responsiveness.
  • Continue in C#May 23, 2024. In C#, the continue statement is used within loops (for, while, do-while, and foreach) to skip the current iteration and proceed to the next one. It's useful for bypassing specific conditions within a loop, enhancing control flow and loop efficiency.
  • If Statement in C#May 16, 2024. Master the fundamentals of C# with if statements. Learn to control program flow based on conditions, enabling dynamic decision-making in your code efficiently."
  • What Are the Use Cases of useContext Hook in ReactJS?May 16, 2024. The useContext hook in React streamlines context consumption, simplifying global state management, user authentication, theme switching, and localization. Practical examples demonstrate its versatility, enhancing React development efficiency.
  • Azure Monitor Implementation with Real-Time Use CasesMay 16, 2024. In this article, we will delve into the implementation of Azure Monitor, providing step-by-step guidance along with real-time use cases to illustrate its significance and utility.
  • Understand Azure 900 Microsoft Privacy, Terms, DPAMay 15, 2024. This article is part of the Azure 900 course which describes what type of documents Microsoft shares with its users or customers. These documents deal with privacy, using online services, and handling data.
  • Switch Statement in C#May 13, 2024. Learn how to use the switch statement in C# for efficient control flow. Explore its syntax, including case labels, break statements, and default handling. Discover how to leverage switch with enums and expressions for concise and structured decision-making in your code.
  • Client Script - OnLoad with Realtime Scenarios and Use CasesApr 29, 2024. In his article, let's explore the nuances of OnLoad client scripts in the ServiceNow environment and provide developers and administrators with an extensive how-to guide for making the most of this potent feature.
  • Storage Services Use Cases and Best Practices in Azure and AWS [Part 2]Apr 29, 2024. Absolutely, choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.Understanding Storage Services Use Cases and Best Practices in Azure and Aws [Part 1]
  • Storage Services Use Cases and Best Practices in Azure and AWS [Part 1]Apr 29, 2024. Choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.
  • What is Closure in Python & its Use Cases?Apr 25, 2024. Python closer is not a built-in function or concept. However, in programming parlance, a closer typically refers to a function that captures and remembers its surrounding state (including local variables) when it is defined, allowing it to access and manipulate that state even after the surrounding scope has exited.
  • MERGE Stored Procedures in SQL ServerApr 15, 2024. In this article, I present how to use the MERGE statement in a stored procedure to merge a single record and how to use it to merge a list of records by using Table-Valued parameters in SQL Server.
  • Angular Expressions: Syntax, Use Cases, and Implementation MethodApr 15, 2024. Explore Angular expressions, small JavaScript-like codes enclosed in {{ }}, used for dynamic data display, filtering, and more. Learn through examples how to employ expressions via interpolation or custom directives for seamless integration with your Angular application.
  • Client Scripts in ServiceNow- Simplified with Real-Time Use CasesApr 05, 2024. From onChange to onLoad, discover the four key types of client scripts and how to use them effectively to enhance user experience and streamline platform functionality. Explore essential tips and best practices for writing efficient, maintainable client scripts.
  • Important PySpark Import StatementsMar 21, 2024. PySpark, the Python API for Apache Spark, has gained immense popularity for its ability to handle big data processing tasks efficiently. In this article, we'll explore the top five import statements in PySpark and delve into their significance in building robust data processing pipelines.
  • What is Use of ‘Using’ Statement in .NET?Mar 15, 2024. In this article, we will cover What is the use of the ‘Using’ statement in .NET. The 'using' statement in .NET ensures efficient resource management, prevents memory leaks, and promotes cleaner, more reliable code.
  • The Dangling If-Else Problem: A Common Pitfall in ProgrammingMar 08, 2024. Explore the often-overlooked issue of the "dangling if-else problem" in programming through our insightful article. We delve into the ambiguity that arises when multiple if-else statements are nested without clear indentation, leading to unexpected behavior and logical errors.
  • Advanced Use Cases of Vue Teleport for Dynamic Content RenderingFeb 26, 2024. Vue Teleport is a powerful feature in Vue.js that allows developers to dynamically move content within the DOM structure. In this article, we will explore four distinct examples showcasing the flexibility and creativity that Vue Teleport brings to Vue.js applications.
  • How to Write Unit Test Case with Mocking Service in AngularFeb 24, 2024. Learn how to write unit tests with mocked services in Angular using Jasmine and TestBed. This step-by-step guide demonstrates creating a mock service and testing component behavior in isolation for better reliability.
  • Camelcase Serialization in .Net 9Feb 19, 2024. In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expect camelCase formatted data
  • Enhance Customer Service Case Forms with Case Summary CopilotFeb 15, 2024. Seamlessly integrated into the Customer Services case form, this feature enhances efficiency by automating data entry and providing a concise summary of cases.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • Code readability is enhanced with C# 10 top-level statementsJan 30, 2024. Ziggy Rafiq discusses tackling challenges in software component specification standards through the implementation of solutions such as adapters and bridges for standard mediation, abstraction and encapsulation for complexity reduction, and version control and configuration management for change tracking. These strategies promote interoperability, simplify complexity, and uphold consistency and compatibility across components and systems.
  • Goal-Based Software Engineering for Successful DevelopmentJan 29, 2024. Software development is becoming increasingly complex. With the growing demands for sophisticated and user-centric applications, traditional approaches to software engineering are no longer sufficient. This has led to the emergence of goal-based software engineering, a paradigm that focuses on aligning software development efforts with specific objectives and user needs.
  • Develop D365 Contact Creation Plugin with Unit Test Case Jan 24, 2024. Create a Plugin when a new Contact is created in D365 and Update the same Contact in PreOperation with some data. This code snippet showcases the setup of an Entity Framework plugin in C#. It covers essential lines for retrieving services, context, and executing operations. Also, a unit test example is provided.
  • If-Else vs Switch Statement in C#Jan 16, 2024. Navigate the decision-making landscape in C# with clarity. Delve into the distinctions between if-else and switch statements, understanding their pros, cons, and optimal use cases for efficient code.
  • Split Camel Case to Space using Angular PipeDec 27, 2023. Master the creation of an Angular pipe to effortlessly split camelcase text with spaces. Follow the prerequisites, and steps, and enhance your Angular app for improved readability.
  • MySQL: Unveiling its Versatility and Robustness for Diverse Use CasesDec 20, 2023. Explore MySQL's diverse use cases in web applications, e-commerce, CMS, data warehousing, telecommunications, and finance. Dive into its key features, architecture, and crucial queries for efficient database management.
  • Reduction Consumed Storage in SQL DBDec 11, 2023. The simple way to reduce consumed DB storage on production app, with data migration and without dramatic changes in DAL (no additional services are required)
  • Understanding LIKE vs ILIKE in PostgreSQLDec 05, 2023. In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
  • React.js Test CasesNov 10, 2023. Testing React.js components is well-structured and informative. It covers the essential aspects of testing, from setting up the testing environment to implementing different types of test cases using the Jest and React Testing Library. The inclusion of practical examples with clear explanations makes it easy for developers, especially those new to testing in React, to understand the concepts and get started.
  • Simplify Your Code with Switch Expressions: Patterns and ExamplesNov 06, 2023. In C#8 switch statement enhanced with powerful feature that can simplyfy your code and make it more readable and maintainable. In this article We will explore into C# 8 switch expression and how to use in our code and make it more readable and how to use in different way to write conditional logic and how to leverage pattern matching functionality using switch.
  • How C# Continue and Break Statements are Different?Nov 02, 2023. Let's know the difference between continue and break statements.This article provides an explanation of the continue and break statements in C# effectively highlights their essential functionalities within loops. Both of these control flow statements play crucial roles in managing the behavior of loops based on specific conditions.
  • Exploring Top Level Statements - Programs Without Main Methods in C#Oct 09, 2023. Top-level statements are a new feature introduced in C# 9 that allows you to write code directly at the root of a file, without having to wrap it in a class or a method.
  • Control Structures in R ProgrammingSep 25, 2023. In this article, we will explore the various types of control structures in R, with their syntax, and present example programs with output to illustrate their usage.
  • Conditional INSERT, UPDATE, DELETE with MERGE QuerySep 04, 2023. The MERGE statement is a versatile SQL command used for conditional INSERT, UPDATE, or DELETE operations, streamlining database management tasks efficiently in a single query.
  • What are Functional Requirements? Jul 31, 2023. Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system means what the system should do Like, and Code Compiler should complete the Machine Code.
  • Use Case View in Software DevelopmentJun 30, 2023. The Use Case View is a perspective used in software development that concentrates on identifying a system's functional needs from the viewpoint of its users or other external actors. It aids in comprehending how users engage with the system and what features it ought to offer to meet their wants. Use case diagrams, which show how actors interact with the system, are generally used to record the use case view.
  • How To Use LIMIT in MySQL?Jun 20, 2023. The LIMIT clause is used to limit the number of rows returned by a SELECT statement in MySQL. It is typically used in combination with the ORDER BY clause to specify the order in which the rows should be returned. The syntax for the LIMIT clause is as follows.
  • What is Default Keyword in JavaMay 11, 2023. In this article, you will learn about What is Default Keyword in Java
  • SQL Where StatementMay 10, 2023. In this article we will discuss about SQL Where statement
  • Conditional Statements in Rust: match StatementMay 04, 2023. In this article, we learn about Conditional Statements in Rust: match Statement
  • Conditional Statements in Rust: if StatementMay 03, 2023. In this article we learn about if statement in rust language.
  • Understanding Conditional Statements in C#Apr 27, 2023. In this article we are going to cover Conditional Statements of C#. We are going to cover all the statements in depth.
  • Match in RustApr 26, 2023. match control flow in rust
  • How to use loops In Rust?Apr 26, 2023. learning for loop, while loop and loop, and also learn break and continue statements
  • How to Use Aggregate Functions in SQL Server?Apr 20, 2023.
  • Implementing C# 12's Top-level Statements for Faster, More Lightweight CodeApr 18, 2023. Implementing C# 12's Top-level Statements for Faster, More Lightweight Code
  • How Node.js is Revolutionizing Web Development – Top Use Cases to Explore! Apr 17, 2023.
  • C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch StatementsApr 17, 2023. C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
  • What Is Interceptor In Angular And Use Cases Of InterceptorMar 29, 2023. In Angular, an interceptor is a middleware service that can intercept HTTP requests and responses made from the application to the server. The interceptor can be used to modify the requests or responses, add headers or tokens, handle errors, or perform any other necessary actions.
  • Exception Handling (7), C# Exception Handling StatementsMar 14, 2023. This article will discuss Exception Handling Statements.
  • Use Cases Of KafkaFeb 27, 2023. In this article, we'll discuss the Use Cases of Kafka.
  • Registration Module General Test CasesFeb 21, 2023. This article helps any user to know the test scenarios of the Registration module.
  • Exploring The Benefits And Limitations Of Data Anonymization - Use Cases And Considerations For Protecting PrivacyFeb 17, 2023. In this article, you will learn about exploring the benefits and limitations of Data Anonymization - Use Cases and Considerations for Protecting Privacy.
  • How To Use SQL MERGE StatementJan 10, 2023. In this article, you will learn how to use the SQL MERGE Statement.
  • Implementing A Proxy Server In C# - An Example And Test CaseDec 09, 2022. In this tutorial, we provide an example of how to create a simple proxy server in a C# application using the HttpListener class. We also show how to write a test case to verify that the proxy server works as expected.
  • How To Execute SQL Statements From Command PromptJul 30, 2022. Here we discuss SQL and how to execute SQL statements in a command prompt.
  • Flutter Common Control Flows And Statements 😎Jul 27, 2022. In this article, you will learn about Flutter Common Control Flows and Statements.
  • Solution - Laravel Test Case Warning And Coverage-Report File Not GeneratingJul 19, 2022. This article is related to the solution of the Laravel unit test case warning "XMODE_DEBUG = coverage or xdebug.mode = coverage" has to be set and due to this warning cover-report.xml file is not going to be generated.
  • Git Hook commit -msg Use CaseJul 18, 2022. In this article we will see, how we can prevent the wrong format of commits.
  • Different Use Cases Of BlockchainJul 15, 2022. Blockchain, beyond powering digital currencies, finds applications in finance, healthcare, real estate, energy, and supply chain. Explore its role in optimizing financial processes, improving healthcare claims, facilitating real estate tokenization, transforming energy, and revolutionizing supply chains.
  • Switch Case Conditionals In Desktop Flow Using Microsoft Power AutomateJun 28, 2022. Reading this article, you can learn how to use Switch Case Conditionals in Desktop flow using Microsoft Power Automate.
  • Conditional Statement With C#May 16, 2022. conditional statements are used in a C# or any Object-oriented programming language for check the condition for particular output. In a C# are used four types of conditional statements, if(), else, else if(), switch().
  • Understand Switch Statement In Power AutomateApr 12, 2022. Generally to handle multiple conditions then like in javascript and C# .net switch will be used, in the same way in Power automate also we can use Switch action. In this article we can see how it can be used to decide whether a person can take vaccination or not.
  • Writing Efficient Unit Test Cases with Moq and BogusMar 21, 2022. Writing Efficient Unit Test Cases with Moq and Bogus.
  • Create, Insert, Update, Delete, Select, Truncate, Drop Statement In Oracle PL-SQLFeb 28, 2022. In this article, you will learn about Create ,Insert, update, delete , select table , truncate table , drop table statement in Oracle Database / PL-SQL.
  • Top-level Statements in C# 10Feb 24, 2022. Learn what top level statements are in C# and why, what, and how top level statements work.
  • How To Insert A Default Value In SQL StatementJan 03, 2022. This is SQL tips and interesting questions in developers mind how to insert default value in SQL statement when there is no other value
  • Working With CSV In PythonDec 16, 2021. In this article, you will learn about CSV In Python.
  • The JavaScript Spread Operator (...) And Its Use CasesAug 10, 2021. Discover how the JavaScript spread operator can simplify your code and make your life easier. Learn the basics and advanced use cases of this powerful tool in our comprehensive guide. Get ready to take your skills to the next level!
  • SQL Server Merge StatementJul 16, 2021. In this article, you will learn about the SQL SERVER MERGE statement.
  • Introduction To Conditional Statement In C#Jul 10, 2021. This conditional statement is for the beginner where they can learn the basic idea about the conditional statement of the C# Programming languge. Here, this will contains the solution for the hackerrank day 3 Intro to Conditional Statement.
  • Python Unconditional Statements And String Operations✍️Jul 01, 2021. In this article, you will learn about Python Unconditional Statements and String Operations??.
  • Python - Branching Statements ✍️Jun 11, 2021. In this article, you will learn about Python - Branching Statements.
  • Understanding With ng-Switch Statements In AngularMay 28, 2021. In this article, you will learn about ng-Switch Statements in angular, how to use ng-Switch Statements. and its use.
  • DateTime.TryParse And The Case Of Z LetterMay 15, 2021. This short article aims to fill the gap in docs explaining what is ISO-8601 date format, how it is treated by DateTime.TryParse compared to other formats
  • Difference Between Delete, Truncate And Drop Statements In SQL ServerMay 04, 2021. This tutorial will show you the difference between delete, truncate and drop statements in SQL Server.
  • Kafka Features And Use CasesApr 02, 2021. In this article we will be discussing some of its features and different uses cases.
  • Excel To Insert StatementMar 26, 2021. In this article , you will learn how to make application which collect data from excel sheets and convert it into sql insert statement
  • Merge Statement In SQLFeb 26, 2021. Merge Statement is a very popular clause in SQL. It handles Insert, Update and Delete in a single query no need to write different logics for each.
  • Use Of If Statement In RDec 03, 2020. Explore the versatile use of if statements in R for decision-making and control flow. Learn how to implement conditional logic, perform data filtering, and drive program behavior based on logical tests. Enhance your understanding of programming logic and data analysis with this fundamental concept in R.
  • Learn About Loops In RDec 03, 2020. In this article, we will learn how to repeat the execution of certain parts of your R code using loops.
  • Azure Data Explorer - Working With Kusto Case SensitivityNov 09, 2020. This article explains about various approaches to handle casing scenarios for kusto query.
  • C# 9.0 - Introduction To Top-Level StatementsOct 12, 2020. In this article, you will learn about C# 9.0 - introduction to Top-Level Statements.
  • .NET Core Singleton Dependency Injection With Real Use CaseSep 18, 2020. In this article, you will learn about .NET Core Singleton Dependency Injection with a real use case.
  • Jump Statements Simplified With Flow ChartJul 28, 2020. Our objective today, Is to understand the behaviour of jump statements in C#. Jump statements are used to transfer the control of execution from one point to another point.

About CASE-statements

NA

OUR TRAINING