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 expressions
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Venkatasubbarao Polisetty (19)
Tural Suleymani (4)
Jaimin Shethiya (4)
Jitendra Mesavaniya (4)
Akshay Phadke (4)
Keyur (3)
Mohammad Hussain (3)
Rikam Palkar (2)
Nandan Hegde (2)
Ishika Tiwari (2)
Ramasagar Pulidindi (2)
Scott Lysle (2)
Baibhav Kumar (1)
Lokendra Singh (1)
Hamed Niazmand (1)
Ziggy Rafiq (1)
Priya Chavadiya (1)
Sandeep Singh Shekhawat (1)
Jay Krishnareddy (1)
Rajeev Kumar (1)
Vijay Yadav (1)
Rajiv Singh (1)
Sreenath Kappoor (1)
Ano Mepani (1)
Ajay Kumar (1)
Abhishek Chadha (1)
Rupesh Kahane (1)
Prakashkumar Sahoo (1)
Prashant Nimbare (1)
Ayush Gupta (1)
Abhishek Arora (1)
Shashank Srivastava (1)
Rohini Parade (1)
Alpesh Maniya (1)
Alkesh Bijarniya (1)
Dinesh Gabhane (1)
Naimish Makwana (1)
Jignesh Kumar (1)
Abiola David (1)
Arun Potti (1)
Andrew Fenster (1)
Jeetendra Gund (1)
Prakash Tripathi (1)
Jean Paul (1)
Tahir Ansari (1)
Amit Choudhary (1)
Neeraj Kumar (1)
Senthilkumar (1)
Hemant Srivastava (1)
Vinay Ayinapurapu (1)
Prasad (1)
C# Curator (1)
Nitin (1)
Amit Mohanty (1)
David Mccarter (1)
Diwakar Tiwari (1)
Pankaj Kumar Choudhary (1)
Paul (1)
Kalyan Bandarupalli (1)
Pawan Pandey (1)
Kailash Chandra Behera (1)
Related resources for expressions
No resource found
Understanding Infix, Postfix, and Prefix Expressions/Notations in DSA
10/10/2024 3:36:19 AM.
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 +
Pattern Matching for Switch in Java 17
10/7/2024 4:17:21 AM.
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
How Func Delegates Work in LINQ
9/27/2024 4:31:27 AM.
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 method
Solid Introduction to Expression Trees in C#
9/26/2024 4:50:55 AM.
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
9/21/2024 3:37:12 PM.
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
Learn Common Table Expressions (CTE) in SQL
9/4/2024 6:25:07 AM.
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 DE
Func, Action And Local Function In C# 7
8/9/2024 12:03:08 PM.
This article covers using Func, Action, and local functions in C# 7. It explains how Func returns a value, Action does not, and how local functions can be defined within other methods. Examples includ
Transitioning from Switch Statements To Switch Expressions in C#
8/9/2024 9:04:25 AM.
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#?
8/5/2024 5:24:18 AM.
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
Essential Regular Expressions for Web Development
7/31/2024 5:03:31 AM.
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
7/11/2024 10:42:11 AM.
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 c
Sort an Array in Fabric Data Pipeline via Pipeline Expressions
7/10/2024 10:53:30 AM.
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 leve
Learn Use of Lambda Operator in C#
7/1/2024 6:28:21 AM.
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 quer
IIF in Microsoft SQL Server
6/28/2024 6:29:20 AM.
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 whet
Predicate Delegates in .NET Core C#: Syntax, Usage and Examples
6/22/2024 10:26:47 AM.
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
Dynamic LINQ Query In C# Using Predicate Builder
6/20/2024 11:42:33 AM.
This technique allows runtime composition of query predicates using logical conditions such as AND, OR, and NOT. By leveraging Expression Trees and lambda expressions, developers can programmatically
Learn Action and Func Delegates in C#
6/19/2024 11:51:33 AM.
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
6/18/2024 5:33:24 AM.
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
6/12/2024 5:23:30 AM.
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, ma
Arrow Function Variants in JavaScript
6/3/2024 8:14:29 AM.
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 fun
The Simplicity of the New Terse Syntax [ Collection Expressions ]
6/3/2024 8:08:47 AM.
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 reada
Common Table Expressions (CTE) Example In SQL SERVER
5/31/2024 10:09:28 AM.
A common table expression i.e CTE which is used to the specific temporary result set by using SELECT, INSERT, UPDATE, or DELETE statement. So the user can do further operations on it. When the user us
Identifying Missing Sequence Numbers in SQL
5/31/2024 9:45:12 AM.
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
Inserting Data in the Database Using LINQ to SQL
5/30/2024 10:28:32 AM.
Using LINQ to SQL, insert data into databases effortlessly. Utilize LINQ query expressions, entity classes, and DataContext to map objects to database tables. Ensure proper error handling and concurre
Understanding Common Table Expressions (CTEs) in SQL
5/29/2024 8:47:55 AM.
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 r
Expression Bodied Members: A New Feature of C# 6.0
5/29/2024 8:11:40 AM.
C# 6.0 introduced Expression Bodied Members, leveraging Lambda expressions to simplify syntax, reduce code, and enhance readability. These members streamline method and property definitions, offering
LINQ Query Syntax vs Method Syntax in Entity Framework
5/29/2024 4:39:33 AM.
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 Met
AngularJS - Basics
5/3/2024 8:56:33 AM.
AngularJS is a JavaScript framework that simplifies web development by extending HTML attributes to define dynamic content. It employs directives to bind data to HTML elements, utilizes controllers to
Exploring String Searching Techniques in C#
5/2/2024 6:46:03 AM.
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
Explain Lambda Functions in .NET C#
4/26/2024 5:02:47 AM.
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 function
ng-Hide And ng-Show In AngularJS
4/22/2024 6:38:58 AM.
ng-hide and ng-show are AngularJS directives for conditional display. ng-hide hides elements based on boolean expressions, while ng-show displays them. They enable dynamic content visibility toggling,
Explain Sorting Data In AngularJS
4/22/2024 6:38:44 AM.
Sorting data in AngularJS involves using the orderBy filter to arrange items based on specific criteria such as alphabetical order, numerical order, or custom sorting functions. This allows for dynami
Learn about Controllers in AngularJS
4/19/2024 11:01:29 AM.
Learn about controllers in Angular JS, their role in separating concerns in model-view-controller architecture, and their behavior. Explore examples, including data binding expressions and error hand
Learn AngularJS ng src Directive
4/19/2024 10:53:58 AM.
The AngularJS ng-src directive dynamically binds the src attribute of an HTML element, typically used for images. It allows seamless integration of data-driven image URLs, enabling conditional loading
Mastering SQL Server Common Table Expressions (CTEs)
4/19/2024 10:50:28 AM.
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 ski
C# 9 Record Types: Immutable Value Types, Syntax, & Usage
4/18/2024 9:30:53 AM.
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(
Angular Expressions: Syntax, Use Cases, and Implementation Method
4/15/2024 9:00:22 AM.
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 cu
Functional programming in C# - Introduction
4/2/2024 8:55:30 AM.
Lets learn the concept of functional programming, its usage and why functional programming is important
Temporary Tables vs Common Table Expressions in SQL Server
3/29/2024 11:07:01 AM.
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 da
Leveraging Compiled Queries for Enhanced Performance in LINQ
3/9/2024 9:17:22 AM.
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 pl
Template Literals In JavaScript
2/27/2024 4:27:38 AM.
JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
What Are Inline Conditional Expressions in React.js
2/26/2024 11:25:43 AM.
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 wi
Why we should learn C#?
2/26/2024 6:11:34 AM.
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 fo
.NET Delegates for Mere Mortals: Introduction
2/19/2024 7:27:20 AM.
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 metho
Default Lambda Parameters in C# 12
1/5/2024 11:16:42 AM.
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 exam
What is Collection Expressions in C# 12?
1/3/2024 7:20:15 AM.
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 fr
Action and Func Delegates in C#
1/2/2024 5:18:03 AM.
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. H
Essential Features of C# 12 You Need to Know
12/28/2023 5:10:38 AM.
Unlock C#'s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
Collection Expressions in C# 12
12/12/2023 4:33:07 AM.
C# 12.0 introduces collection expressions, streamlining collection initialization syntax. This evolution enhances code conciseness, readability, and performance, simplifying developers' interactio
Simplify Your Code with Switch Expressions: Patterns and Examples
11/6/2023 10:45:23 AM.
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 us
Sales Data Analysis using Power Query Expressions
11/3/2023 4:59:08 AM.
This video shows how to analyse sales data using power query expressions.
Getting Started with Regex in C#
10/18/2023 5:30:43 AM.
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 manipu
How To Show The Power Automate Complete Expressions?
10/16/2023 12:03:05 PM.
Step by step details to show the Microsoft Power Automate complete expressions
Implementing DATEDIFF Function In Data Factory / Synapse Via Pipeline Expressions
9/27/2023 5:52:40 AM.
Implementing DATEDIFF function in Data Factory / Synapse via Pipeline ExpressionsImplementing the DATEDIFF function in Azure Data Factory or Azure Synapse Analytics using pipeline expressions all
Lambda Expressions Are Wonderful
9/25/2023 12:00:02 PM.
Lambda expressions are simple to use and make routine tasks such as sorting or filtering Lists much easier.
C# 8.0 Switch Expression
9/25/2023 4:41:58 AM.
In this article, we are going to learn what Switch Expressions in C# and how to use switch expressions in C# 8.
Working With Switch Expressions And Pattern Matching In C# 8.0
9/21/2023 9:58:05 AM.
This article explains how to work with Switch expressions and Pattern matching in C# 8.0 and demonstrates how to use it in application development.
Lambda Expressions with Multiple Parameters
9/18/2023 11:07:41 AM.
Lambda Expressions are getting good recognition among developers and it would be nice to have the next level of information regarding it.
Simplifying Code with Pattern Matching in C#
9/11/2023 5:08:52 AM.
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, constan
Beginners Guide For Expression Trees In C# - Understanding Expressions
9/8/2023 9:24:49 AM.
In this article you will get a beginners guide for Expression Trees in C#.
Lambda Expressions in C#
9/4/2023 10:08:14 AM.
C# Lambda expressions are how anonymous functions are created. Lambda expressions are anonymous functions that contain expressions or sequence of operators.
Exploring Statistical, Table - manipulation and Text Functions in DAX
8/29/2023 4:44:35 AM.
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
Exploring Math - Trig, Parent - Child and Relationship Functions in DAX
8/29/2023 4:29:48 AM.
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
Power BI DAX Top 20 Functions For Beginners
8/22/2023 9:22:22 AM.
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.
Cursors and Alternative to the Cursors in SQL Server
7/26/2023 7:12:56 AM.
In SQL Server, cursors are database objects that allow you to iterate over a result set (query result) one row at a time, processing each row as needed. Cursors are often used when you need to perform
Querying a Data Table Using Select Method and Lambda Expressions in C#
6/7/2023 5:30:53 AM.
In this article, we are explaining how we can perform several queries on a DataTable object using the select method and Lambda expression.
Getting Document ID Using Power Automate
6/1/2023 8:40:59 AM.
This article explains getting document ID using Power Automate.
Regular Expressions In C#
5/21/2023 1:12:45 AM.
C# Regex class provides functions to implement regular expressions. The code example includes how to use Regular Expressions in C# for IsNaturalNumber, IsWholeNumber, IsPositiveNumber, IsInteger, IsNu
C# Regex Examples (2023)
5/18/2023 2:54:25 PM.
C# Regex represents regex in C#. Here are the top 7 C# Regex code examples.
New Features In C# 12
4/22/2023 11:34:16 AM.
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
4/17/2023 9:52:03 AM.
C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
The Fastest Way To Use Regular Expressions In Microsoft .NET 7
4/6/2023 9:01:05 AM.
In this article, you will learn about the Fastest Way to Use Regular Expressions in Microsoft .NET 7.
Common Table Expression In SQL Server
3/31/2023 6:44:32 AM.
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 co
What are CASE Expressions in SQL
3/2/2023 5:30:18 AM.
This article explains Case Expressions in the SQL with examples.
Regular Expressions In .NET
2/7/2023 2:41:41 PM.
Regular Expressions in .NET are implemented using the C# Regex class. Learn here how Regex in .NET works.
Lambda Expressions in C#
11/30/2022 9:33:02 AM.
In this artivle I will explain where to use the Anonymous methods first then we see the example on lambda expressions.
Derived Tables Vs Common Table Expressions
8/28/2022 6:04:15 AM.
In this article, you will learn about Derived Tables Vs Common Table Expressions.
Extend the Textbox Control to Validate Against Regular Expressions
5/4/2022 10:49:13 AM.
This article describes an approach to validating text box entries against a regular expression.
Understand Bound Action In Power Automate
3/25/2022 5:56:22 AM.
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
Usage Of Peek Code In Power Automate
3/9/2022 3:32:50 PM.
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 cod
Understand Flow Trigger Condition In Power Automate
3/4/2022 7:37:59 AM.
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 us
Usage Of Min Function In Power Automate
2/28/2022 1:53:26 PM.
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
2/28/2022 5:53:45 AM.
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
Delegates, Anonymous Functions and Lambda Expressions in C#
2/23/2022 10:43:50 AM.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Usage Of Scheduled Cloud Flow In Power Automate
2/18/2022 6:27:46 AM.
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, w
Usage Of Trim Function In Power Automate
2/17/2022 3:48:25 PM.
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
Validating User Input With Regular Expressions
2/14/2022 9:01:14 AM.
This article explains how to use Regular Expressions (the Regex class of the System.Text.RegularExpressions namespace) in C# and .NET.
Usage Of Length Function In Power Automate
2/11/2022 3:51:27 PM.
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 giv
Usage Of Empty Function In Power Automate
2/10/2022 4:44:27 PM.
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 val
Usage Of Intersection Function In Power Automate
2/4/2022 5:50:57 AM.
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 Objec
Usage Of ChangeSet Request In Power Automate
1/20/2022 3:19:53 PM.
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 atom
List Rows Based On Expand Query In Power Automate
1/13/2022 4:10:36 PM.
In order to get details of related entity for the selected entity without separate retrieve call we can leverage Expand Query .As a business scenario for the same vaccination use case extracting detai
Send Email Messages and Attachments Using C#
1/7/2022 9:26:28 AM.
This article describes an approach to sending email messages with or without attachments. The code required to send the message is contained within a reusable class. In addition to sending messages
List Contacts Based On FetchXMLQuery In Power Automate
1/7/2022 5:31:31 AM.
During certain scenarios we must work on List of records to perform certain operations like sending alerts to list of customers. In these scenarios it is critical to filter records to make sure actual
Usage Of HTML Table In Power Automate
1/6/2022 4:27:54 AM.
In Power Platform for certain scenarios data needs to be represented in HTML Table , in those cases we can work with HTML Table Action, as an example we will show list of contacts in an HTML Table.
Extract Choice Text Value In Power Automate
12/30/2021 5:39:51 AM.
In Power platform for some requirements, it is required to extract Choice values for entities. As an example, on update of Contact record, Status [Choice] Text Value will be extracted.
Get Lookup Field Text In Power Automate
12/24/2021 5:24:05 AM.
In Power Automate one of the common scenarios was to extract Look up Field Text which will be a nightmare for the people who are new to Power Automate about how to extract details of lookup field. As
Update A Row In An Excel Table Onedrive In Power Automate
12/22/2021 4:00:17 AM.
Most of the common usage of storing data in Excel Spread sheets and a common scenario was to update data in Spread Sheet. We can use an action Update a row into a Table in Power Automate under connect
Usage Of Join Function In Power Automate
12/17/2021 12:33:11 PM.
In Power Automate, at times we must join few items which received in the form of strings. As a scenario, response of the user was taken to show this function behavior.
Usage Of If Function In Power Automate
12/10/2021 5:17:22 PM.
In this article, you will learn about how to use If function in Power Automate