Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Venkatasubbarao Polisetty(18)
Tural Suleymani(5)
Keyur (5)
Jaimin Shethiya(4)
Jitendra Mesavaniya(4)
Rikam Palkar(3)
Aradhana Tripathi(3)
Mohammad Hussain(3)
John Godel(2)
Dashrath Hapani(2)
Nandan Hegde(2)
Mariusz Postol(2)
Ishika Tiwari(2)
Alpesh Maniya(2)
Naimish Makwana(2)
Ramasagar Pulidindi(2)
Jignesh Kumar(2)
Sarthak Varshney(1)
Jalpa Dhola(1)
Jayeshkumar Sahani(1)
Devesh Omar(1)
Subarta Ray(1)
Rajeev Paliwal(1)
Vinay Ayinapurapu(1)
Baibhav Kumar(1)
Lokendra Singh(1)
Hamed Niazmand(1)
Ziggy Rafiq(1)
Priya Chavadiya(1)
Jay Krishna Reddy (1)
Rajeev Kumar(1)
Vijay Yadav(1)
Rajiv Singh(1)
Sreenath Kappoor(1)
Ajay Kumar(1)
Abhishek Chadha(1)
Prakashkumar Sahoo(1)
Ayush Gupta(1)
Rohini Parade(1)
Dinesh Gabhane(1)
Alkesh Bijarniya(1)
Satyaprakash Samantaray(1)
George (1)
Vijayaragavan S(1)
Arun Potti(1)
Tahir Ansari(1)
Ashish Bhatnagar(1)
Nitin (1)
Amit Mohanty(1)
David Mccarter(1)
Diwakar Tiwari(1)
Oodit Jethwa(1)
Rajesh Gami(1)
Sathya N(1)
Resources
No resource found
What’s New in Grafana 12.0
May 08, 2025.
Explore Grafana 12.0's new features like Git Sync, dynamic dashboards, and enhanced drilldowns. Perfect for beginners seeking practical insights.
Rendering Dynamic Content with JavaScript Expressions in React
May 06, 2025.
How React updates the UI when your data changes? Let's explore how to use variables, props, state, and expressions to display dynamic values, all with practical examples.
Mastering the New Era of C#: Exploring Advanced Features in C# 14
Apr 15, 2025.
C# 14 represents a polished and sophisticated leap forward in the language’s maturity. C# 14 refines the language with primary constructors, collection expressions, interceptors, and performance enhancements.
C# 14: Exploring New Language Features for Modern .NET Development
Apr 02, 2025.
In this article, I explore the most important features introduced in C# 14.0, including primary constructors in classes, collection expressions, enhanced pattern matching, and required members. I walk through how each of these additions simplifies code, improves performance, and promotes safer, more expressive development.
Understanding Expressions in C#: Dynamic Code and Query Generation
Mar 19, 2025.
Expressions in C# allow dynamic query generation, runtime compilation, and code transformation using Expression Trees. They are widely used in LINQ, ORM frameworks like Entity Framework, and reflection to optimize performance and enable flexible, data-driven logic.
Understanding SQL CTE (Common Table Expression)
Mar 19, 2025.
A Common Table Expression (CTE) in SQL is a temporary result set that improves query readability and performance. CTEs simplify complex queries, support recursive operations, and help with aggregation and multi-step calculations.
Advanced Power Automate Expressions for SharePoint Automation
Feb 04, 2025.
Learn how to use dynamic content, logical functions, string manipulations, and data transformations to enhance workflows. Streamline processes, boost efficiency, and maximize SharePoint automation potential.
Understanding Precision in SQL Server Calculations
Jan 24, 2025.
Learn why SQL Server calculations can produce different results depending on the approach used. Discover how single-step and multiple-step calculations handle precision and rounding, and how to achieve consistent outcomes with explicit rounding.
Static Lambda in C# 12 : Performance Improvement
Jan 02, 2025.
This article explores Static Lambdas in C# 12, highlighting their performance benefits by preventing variable capture. Examples include sorting, filtering, parallel processing, and array operations, demonstrating efficient and optimized code execution.
Using Derived Column Task in SQL Server Integration Services
Dec 30, 2024.
The Derived Column Task in SQL Server Integration Services (SSIS) allows you to transform or modify data within your ETL process. It enables the creation of new columns or updates to existing ones using SSIS expressions.
Using Regex in C# 9.0
Dec 28, 2024.
Regular Expressions (Regex) can help with text processing, validating data, and manipulating strings in C# 9.0. This article explains the key features, applications, and benefits of using Regex in your code.
What is a CTE, and How Do You Write a CTE in SQL Server?
Nov 29, 2024.
A Common Table Expression (CTE) in SQL Server is a temporary result set that can be referred to within a SELECT, INSERT, UPDATE, or DELETE query. CTEs simplify complex queries by breaking them into manageable parts.
Setting Up Values Without Conditional Checks in Power Automate
Oct 13, 2024.
In this article, we explore how to set variable values in Power Automate without using conditional checks. We demonstrate two methods: one using traditional condition actions, and another with dynamic expressions to reduce flow nesting.
Understanding Infix, Postfix, and Prefix Expressions/Notations in DSA
Oct 09, 2024.
Infix, prefix, and postfix expressions are three notations for representing mathematical expressions in data structures and algorithms. Infix notation, where operators are between operands (e.g., A + B), is user-friendly but complex for computers due to precedence rules.
Pattern Matching for Switch in Java 17
Oct 07, 2024.
Pattern matching for switches in Java 17 enhances code readability and simplifies working with complex data structures. It allows you to match object types, use type patterns, and add conditions with guarded patterns.
Real-World Expression Trees: Dynamic Filtering in C# with Minimal API
Oct 06, 2024.
This article explores the practical use of expression trees in C# by building an ASP.NET Core web API with dynamic filtering functionality. It demonstrates how to construct flexible queries using expression trees, allowing filtering by properties such as `IsActive`, `Category`, `Name`, and `Price` over a product database.
How Func Delegates Work in LINQ
Sep 27, 2024.
In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass methods as parameters.
Solid Introduction to Expression Trees in C#
Sep 26, 2024.
This article provides a comprehensive introduction to Expression Trees in C#. You'll learn about their structure, how they represent code as data, and their applications in LINQ queries.
Using C# 12 with Clean Code Practices
Sep 21, 2024.
Learn how to write cleaner, more maintainable code with C# 12 features such as primary constructors and improved pattern matching. This article explores practical examples and tips for applying clean code practices with C# 12.
Learn Common Table Expressions (CTE) in SQL
Sep 04, 2024.
Common Table Expressions (CTEs) in SQL are a powerful tool for simplifying complex queries. They allow you to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.
Transitioning from Switch Statements To Switch Expressions in C#
Aug 09, 2024.
Explore how to modernize your C# code by transitioning from traditional switch statements to the more concise and powerful switch expressions introduced in C# 8.0.
How to Get Only Letters from a String in C#?
Aug 05, 2024.
Learn how to extract only the letters from a string in C# using various methods. This guide covers techniques such as using regular expressions, string manipulation methods, and LINQ to filter out non-letter characters.
Essential Regular Expressions for Web Development
Jul 31, 2024.
Learn how to use regex for effective input filtering, text parsing, and string manipulation in both front-end and back-end environments. Master these techniques to build robust web applications.
Dynamic Rendering in Blazor Using Implicit and Explicit Expressions
Jul 11, 2024.
Blazor, known for its component-based architecture, integrates HTML and C# seamlessly for dynamic rendering. It offers implicit expressions for straightforward data binding, explicit expressions for complex logic, and code blocks for embedding C# directly in HTML.
Sort an Array in Fabric Data Pipeline via Pipeline Expressions
Jul 10, 2024.
Learn how to efficiently sort an array within the Fabric Data Pipeline using pipeline expressions. This guide covers the essentials of data transformation, providing step-by-step instructions for leveraging expression language in Fabric's platform.
Learn Use of Lambda Operator in C#
Jul 01, 2024.
Explore the versatility of lambda expressions in C#, powerful tools for creating inline functions without the need for traditional method declarations. Discover their syntax, applications in LINQ queries, and how they enhance code readability and flexibility in modern C# programming.
Predicate Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 22, 2024.
Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by a predicate delegate method, which must then return a boolean (true or false).
IIF in Microsoft SQL Server
Jun 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.
Learn Action and Func Delegates in C#
Jun 19, 2024.
Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
Action Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 18, 2024.
One built-in generic type delegate is the action delegate. This delegate makes your program more readable and efficient by eliminating the need for you to define a custom delegate.
Using CTEs in PostgreSQL for Cleaner Efficient Queries
Jun 12, 2024.
In the realm of SQL databases, PostgreSQL stands out with its rich feature set, one of which is Common Table Expressions (CTEs). CTEs offer a powerful way to simplify and structure complex queries, making them more readable and maintainable.
The Simplicity of the New Terse Syntax [ Collection Expressions ]
Jun 03, 2024.
Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced readability, revolutionizing how you interact with collections in programming languages.
Arrow Function Variants in JavaScript
Jun 03, 2024.
Arrow functions in JavaScript offer concise syntax for writing functions. They simplify coding with features like no parameter handling, optional parentheses for single parameters, and streamlined function bodies. They're versatile, applicable in various scenarios, like callbacks and high order functions.
Identifying Missing Sequence Numbers in SQL
May 31, 2024.
In this article, we explore a method to identify missing sequence numbers in a database table using SQL. SQL code utilizes window functions and CTEs to efficiently find gaps in the sequence of region IDs by generating a complete range of potential IDs and comparing it against the existing values.
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.
Understanding Common Table Expressions (CTEs) in SQL
May 29, 2024.
Explore the history, evolution, and application of CTEs in SQL, their syntax, advantages, and drawbacks. Learn how CTEs simplify complex queries, improve readability, and support recursion. Discover recent optimizations and future prospects for enhancing CTE usage in SQL development.
Programming in Practice - Structural Data
May 19, 2024.
In object-oriented programming, the basic way to create structural data is to define custom types and interconnect them using references. Let's analyze this case using sample code in the context of intentionally programmed relationships between items.
Programming in Practice - LINQ Expression
May 06, 2024.
An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available source. After reading the full story forget about ChatGPT and MSDN in the context of LINQ to make your life easier.
Exploring String Searching Techniques in C#
May 02, 2024.
Searching for substrings within strings is a fundamental operation in software development, and in the context of C# programming, there are several techniques and methods available to accomplish this task efficiently. In this article, we will explore various string searching techniques in C#.
Explain Lambda Functions in .NET C#
Apr 26, 2024.
In the realm of .NET programming, lambda functions represent a powerful and concise way to define anonymous methods or functions. In this article, we'll explore the fundamentals of lambda functions in .NET, understand their syntax and usage, and uncover their practical applications in real-world scenarios.
Mastering SQL Server Common Table Expressions (CTEs)
Apr 19, 2024.
Mastering SQL Server Common Table Expressions (CTEs) empowers users to create complex queries efficiently. Learn recursive and non-recursive CTEs, optimize queries, and enhance database management skills using Transact-SQL in SQL Server environments.
C# 9 Record Types: Immutable Value Types, Syntax, & Usage
Apr 18, 2024.
Records in C# provide immutable data structures for representing data. They offer concise syntax for declaring classes with value-based equality, read-only members, and built-in methods like ToString(). Records support inheritance, pattern matching, and serialization, enhancing data modeling and manipulation in C# 9.
Angular Expressions: Syntax, Use Cases, and Implementation Method
Apr 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.
Functional programming in C# - Introduction
Apr 02, 2024.
Lets learn the concept of functional programming, its usage and why functional programming is important
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.
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#.
Why we should learn C#?
Feb 26, 2024.
This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
What Are Inline Conditional Expressions in React.js
Feb 26, 2024.
In React, leverage inline conditional expressions like the ternary operator or logical && operator to dynamically render elements based on conditions. Enhance UI flexibility and readability with these versatile techniques.
Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive Forms
Feb 26, 2024.
Steps to add validation for URL using the regex pattern in the angular application. I will explain steps to create a form with text input using the reactive forms in angular. This input field will only accept the URL.
Template Literals In JavaScript
Feb 24, 2024.
JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
.NET Delegates for Mere Mortals: Introduction
Feb 19, 2024.
Explore .NET delegates practically in this article. Learn to use delegates for flexible, reusable code. Follow examples, download source code, and understand delegate syntax, including anonymous methods and lambda expressions.
Local Temp Tables, Global Temp Tables, Table Variables, and CTEs Comparison
Feb 12, 2024.
In SQL database management, optimizing data storage is vital for efficient query execution. Local and global temporary tables, table variables, and CTEs are versatile options for temporary data storage, each with distinct use cases.
Deleting Duplicate Records Using CTE
Jan 09, 2024.
In this article we will understand how to delete duplicate rows and records from table using Common Table Expression (CTE) in SQL Server.
Default Lambda Parameters in C# 12
Jan 05, 2024.
C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
What is Collection Expressions in C# 12?
Jan 03, 2024.
Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you're a coding newbie.
Action and Func Delegates in C#
Jan 02, 2024.
Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
Essential Features of C# 12 You Need to Know
Dec 28, 2023.
Unlock C#'s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
Table(s): Temp Table, Table Variable and CTE (Common Table Expression)
Dec 26, 2023.
This article will discuss SQL Table like items, including temp table, table variable, CTE, Table-valued Parameters.
Collection Expressions in C# 12
Dec 12, 2023.
C# 12.0 introduces collection expressions, streamlining collection initialization syntax. This evolution enhances code conciseness, readability, and performance, simplifying developers' interaction with arrays, lists, and more.
Understanding LIKE vs ILIKE in PostgreSQL
Dec 05, 2023.
In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
Simplify Your Code with Switch Expressions: Patterns and Examples
Nov 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.
Execute XPath expression Action in Desktop flow using Microsoft Power Automate
Nov 04, 2023.
Reading this article, you can learn how to use Execute XPath expression in Desktop flow using Microsoft Power Automate
Getting Started with Regex in C#
Oct 18, 2023.
Regex, or regular expressions, are essential for text processing in C#. They facilitate pattern matching, data extraction, and validation, empowering developers with versatile and powerful text manipulation tools.
How To Show The Power Automate Complete Expressions?
Oct 16, 2023.
Step by step details to show the Microsoft Power Automate complete expressions
Implementing DATEDIFF Function In Data Factory / Synapse Via Pipeline Expressions
Sep 27, 2023.
Implementing DATEDIFF function in Data Factory / Synapse via Pipeline ExpressionsImplementing the DATEDIFF function in Azure Data Factory or Azure Synapse Analytics using pipeline expressions allows you to calculate the difference between two dates and times. This can be helpful for various data integration and transformation tasks, such as calculating the age of records, measuring time intervals, or scheduling data pipelines based on date differences.
What is Threading in C#?
Sep 15, 2023.
Threading in C# empowers concurrent task execution within a single process. Enhance application performance, responsiveness, and scalability for complex operations. Learn the basics and explore advanced topics.
Simplifying Code with Pattern Matching in C#
Sep 11, 2023.
Discover how pattern matching in C# can simplify your code, improve readability, and enhance your development workflow. This comprehensive guide explores various pattern types, including type, constant, property, tuple, and positional patterns, and reveals how they can be applied in real-world scenarios.
Exploring Math - Trig, Parent - Child and Relationship Functions in DAX
Aug 29, 2023.
This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
Exploring Statistical, Table - manipulation and Text Functions in DAX
Aug 29, 2023.
This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
The Role of Java Standard Tag Library- EL (JSTL-EL) in JSP
Aug 23, 2023.
The JSTL EL or JSTL Expression Language is used by JSP Programmer in order to avoid the usage of Java Code for accessing data.
Power BI DAX Top 20 Functions For Beginners
Aug 22, 2023.
Power BI DAX Top 20 Functions For Beginners. Power BI's Data Analysis Expressions (DAX) language is a powerful tool for creating custom calculations, aggregations, and transformations in Power BI. Here are the top 20 DAX functions for beginners.
CTE (Common Table Expression) and Recursive CTE in SQL Server
Jul 10, 2023.
Learn about the Common Table Expression (CTE) in SQL Server with the WITH clause. Simplify code, improve query readability, and use recursive queries with the SQL WITH clause.
New Features In C# 12
Apr 22, 2023.
We're excited to show you three new features for C# 12:
C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
Apr 17, 2023.
C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
The Fastest Way To Use Regular Expressions In Microsoft .NET 7
Apr 06, 2023.
In this article, you will learn about the Fastest Way to Use Regular Expressions in Microsoft .NET 7.
Count Number Of Character Occurrences In A String Using JavaScript
Apr 04, 2023.
In this article, I am going to demonstrate various way to count number of character occurrences in a string javascript
Common Table Expression In SQL Server
Mar 31, 2023.
This article provides a practical guide to SQL CTE (Common Table Expressions), complete with examples that demonstrate how to use this powerful SQL feature to improve query performance and simplify complex queries. It covers the basics of CTE, including syntax and usage, and also delves into advanced topics such as recursive CTEs and using CTEs to implement complex calculations. Whether you're a beginner or an experienced SQL developer, this article is a valuable resource for mastering the use of CTEs in your SQL queries.
Trigger Condition Expression - SharePoint Columns Compare And Trigger Only If Not Equal
Feb 22, 2023.
Power Automate Flow - Trigger condition expression - SharePoint Columns Compare and trigger only if not equal.This article will explain how we can create an automated MS flow with a trigger condition to run only when two column values of a SharePoint List / Library is not equal
Common Table Expression (CTE) In SQL Server
Dec 15, 2022.
Simplify complex joins and subqueries using SQL Server Common Table Expressions or CTEs. It also provides a way to query hierarchical data. This article provides a complete overview of CTEs, types of CTEs, benefits, drawbacks, and how to use them with SQL Server.
Derived Tables Vs Common Table Expressions
Aug 28, 2022.
In this article, you will learn about Derived Tables Vs Common Table Expressions.
Understand Switch Statement In Power Automate
Apr 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.
Handle Nulls In Parse JSON Action In Power Automate
Apr 07, 2022.
Whenever working with json payload’s in power automate, always a possibility of receiving null values inside json, where Parse JSON Action will be errored out because of these null values. To handle this we have to modify Schema of the generated Schema for the provided json.
Understand Bound Action In Power Automate
Mar 25, 2022.
During certain scenarios it is required to call bound action . To call a bound action we can do it with javascript , plugins and power automate. In all the other methods except power automate you have to write explicit logic to call an bound action. As an example, we call a sample bound action which was built for contact entity/table from power automate.
Format Number In Power Automate
Mar 14, 2022.
Number Formatting during few scenarios is required based on the customer requirement. In Power Automate, this can be achieved with Format Number Action. As an example, numeric value ,currency , Mobile numbers were shown using Format Number Action.
CTE (Common Table Expression) and Recursive CTE in MS SQL Server
Mar 11, 2022.
In this article, we going to explore about CTE and Recursive CTE in MS SQL Server and their benefits.
Usage Of Peek Code In Power Automate
Mar 09, 2022.
In Power Automate, at times we need to write expressions manually, a quick way of doing is by using Peek code functionality that is present in every action in Power Automate . Especially this Peek code comes for rescue, when ever we are trying to work on actions like Lists, lookup values, Flow trigger conditions Peek code will be useful.
Understand Flow Trigger Condition In Power Automate
Mar 04, 2022.
In Power Platform, at times we must take care of the number of flow runs per day based on API Limits so that we can run the flow only when it is needed. In Power automate this can be taken care by using Flow trigger condition available on trigger point of the flow.To explain this a basic automated flow was taken where on modification of any contact record if at all discount is equal to 50 then only I want my flow to run in all other cases flow should not be run.
Usage Of Min Function In Power Automate
Feb 28, 2022.
In Power Platform, at times we must compare values to identify the minimum number. In Power Automate, min Function can be used quickly to find out min value in the given set of integers /Array .
Usage Of Less Function In Power Automate
Feb 28, 2022.
In Power Platform, at times we must compare values to identify whether the given number is less or not. In Power Automate, Less Function can be used quickly to find out whether the given integer/float is less or not by comparing with a number.
Usage Of Scheduled Cloud Flow In Power Automate
Feb 18, 2022.
At times we tend to miss important updates especially some reminders, here in order to handle these kinds of things Scheduled cloud flows comes for rescue in Power Automate. As a real time scenario, we tend to forget to take break of 5 min for every hour while working with computers/ Laptops in this example I will try to explain this with Scheduled Cloud Flow.
Usage Of Trim Function In Power Automate
Feb 17, 2022.
In Power Platform, at times we must omit the spaces that are present inside a string. To achieve this functionality Trim function in Power Automate can be used. As an example, String variable name was used to explain Trim functionality.
Usage Of Length Function In Power Automate
Feb 11, 2022.
In Power Platform, at times we must length of a string or elements in an array to perform certain operations on them. In Power Automate, Length Function can be used quickly to find out whether the given string or Array have values or not.
Usage Of Empty Function In Power Automate
Feb 10, 2022.
In Power Platform, at times we must verify whether the given json object or string or array have empty value or not. In Power Automate, Empty Function can be used quickly to find out whether empty value present or not.
Usage Of Union Function In Power Automate
Feb 04, 2022.
In Power Platform, at times we must combine couple of Arrays or objects. In these scenarios, Union function in Power Automate can be used. As an example, Names String Array and Vehicles String Array were used to explain this behaviour.
Usage Of Intersection Function In Power Automate
Feb 04, 2022.
In Power Platform, at times we must take common values present in Arrays or objects. In these scenarios, Intersection function in Power Automate can be used. As an example, Names Array and Names Object and Actual Names Array,Actual Names Objects were used to explain this behaviour.
Simple Paging With FetchXML On Lists In Power Automate
Jan 27, 2022.
In few scenarios when working on List of records for a given entity, we must provide paging to perform certain operations. In order to achieve this, we use different actions in Dataverse and power automate like do until, List Rows, Scope, Initialize, Increment and Set Variables . As an example for contacts entity with the help of changing page number dynamically with logic we can achieve this functionality.
Get Record Count For A List In Power Automate
Jan 21, 2022.
In few scenarios when working on List of records for a given entity it is needed to find out the count of total records present in that table to perform certain manipulations. Here length function in power automate can be used to get record count for a given list. As an example, contact table was considered.
Usage Of ChangeSet Request In Power Automate
Jan 20, 2022.
In certain scenarios we must bundle multiple operations together so that all should pass or fail, in any case if one of the operations fails then all the other operations gets roll backed to make atomic operations. To achieve this functionality in Power Automate we can use ChangeSet Request Action , as a business scenario operations on Contact and Task tables were considered .
Usage Of First And Last Function In Power Automate
Jan 14, 2022.
In Power Platform, for certain business scenarios we must extract first, and last characters of a given string or First and Last items present in an array. First And Last function can be used in power automate to achieve this functionality.