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 Lambda Expression
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Tural Suleymani (3)
Jean Paul (3)
Hemant Srivastava (3)
Jaimin Shethiya (2)
Jitendra Mesavaniya (2)
Keyur (2)
Aman Gupta (2)
Sekhar Srinivas (2)
Hamed Niazmand (1)
Ziggy Rafiq (1)
Sandeep Singh Shekhawat (1)
Rajiv Singh (1)
Ano Mepani (1)
Ajay Kumar (1)
Abhishek Arora (1)
Mariusz Postol (1)
Alpesh Maniya (1)
Dinesh Gabhane (1)
Ramasagar Pulidindi (1)
Naimish Makwana (1)
Sateesh Arveti (1)
Andrew Fenster (1)
Sachin Kalia (1)
Neeraj Kumar (1)
Ahmad Anas (1)
Sourav Kayal (1)
Nitin (1)
Kalyan Bandarupalli (1)
Pawan Pandey (1)
Akkiraju Ivaturi (1)
Rohit Rao (1)
Amit Choudhary (1)
Abhishek Yadav (1)
Arpit Jain (1)
Shantanu (1)
Manikavelu Velayutham (1)
Rafnas T P (1)
Rupesh Kahane (1)
Banketeshvar Narayan (1)
Kundan Jha (1)
Rajeev Ranjan (1)
Rizwan Ali (1)
Ajay Yadav (1)
Adalat Khan (1)
Mohit Sharma (1)
Vijay Prativadi (1)
Eranda Horanagama (1)
Vinoth Roy SavaridossBosco (1)
Lajapathy Arun (1)
Kapil Deo Malhotra (1)
Ashish Shukla (1)
Mike Gold (1)
Matthew Cochran (1)
Related resources for Lambda Expression
No resource found
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
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
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
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.
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
Programming in Practice - LINQ Expression
5/6/2024 9:05:50 AM.
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 so
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
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
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
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
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!
Secrets Of Accumulator Functions
11/22/2023 9:21:23 AM.
Accumulator functions, also known as aggregation functions or reduce functions, are essential components in functional programming and data processing. These functions operate on a collection of value
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.
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.
Func Delegate Using Lambda Expression In C#
9/15/2023 7:29:10 AM.
In this article I'll try to explain a cool feature introduced with .NET 3.5. Known as Func, also named by some developer as a readymade delegate.
What is Threading in C#?
9/15/2023 6:37:06 AM.
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 advanc
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.
Creating a Lookup From a List of Objects Using Lambda Expression
9/1/2023 9:55:50 AM.
In this article, I describe how to convert a list of objects into a lookup collection.
Delegates, Anonymous Method, And Lambda Expression In C#
8/24/2023 10:58:50 AM.
Delegates, Anonymous Methods, and Lambda Expressions in C# introduces essential concepts in C# programming related to delegates, anonymous methods, and lambda expressions. These features enable develo
Lambda Expression In 15 Minutes
8/17/2023 10:11:20 AM.
This is very short and quick article to demonstrate various uses of lambda expressions in C#.
Using a Lambda Expression Over a List in C#
6/9/2023 6:32:17 AM.
This article exemplifies methods for performing several tasks and queries over a set of records in a List. Lambda expression Sample code is also attached.
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.
New Features In C# 12
4/22/2023 11:34:16 AM.
We're excited to show you three new features for C# 12:
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.
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.
Functional Programming in Simple Terms: Explained
3/25/2021 5:28:42 AM.
In this article we learn about Functional Programming in a very simple manner.
C# Local Functions - Why And When To Use Them
9/11/2020 11:30:56 AM.
In this article you will learn about C# : Local Function Vs Lambda Expression.
Java 8 - Lambda Expressions
7/15/2020 9:23:30 AM.
In this article you will learn about Java 8 - Lambda Expressions .
Introduction To Java 8
7/14/2020 7:57:23 AM.
In this article you will learn about Java 8 features.
Beginners Guide To Lambda Expressions
3/6/2020 1:08:58 AM.
Lambda expressions are similar to anonymous methods introduced in C# 2.0, except that lambda expressions are more concise and more flexible.
Advanced Features In C#
2/13/2020 7:56:00 AM.
In this article, you will learn about advanced features in C#.
Python Basics: Understanding The Functions
1/28/2020 2:31:36 PM.
In this article we will learn about functions in Python, how to create and call functions and how to create a program that uses functions.
MyFluent - A Validation Framework using .Net Generics and Lambda Expressions (Fluent paradigm)
10/1/2019 3:00:49 AM.
In this article you will learn A Validation Framework using .Net Generics and Lambda Expressions (Fluent paradigm).
LINQ Operators And Lambda Expression - Syntax & Examples
7/21/2019 6:20:29 PM.
Here is a list of code examples for LINQ operators and the equivalent Lambda Expressions.
Anonymous Methods And Lambda Expressions In C#
2/21/2019 3:10:04 AM.
In this article, you will learn about anonymous methods and lambda expressions in C#.NET. Anonymous method is a block of code, which is used as a parameter for the delegate.
Get Data From Multiple Tables Using Parameters While Combining LINQ Expressions
1/11/2017 10:41:00 AM.
In this article, you will learn how to get data from mutliple tables using parameters when combining LINQ expressions in ASP.NET MVC 5.
Understanding Delegates In C# - Part 2
1/10/2016 12:13:55 PM.
In this article I will explain about delegates with named method, anonymous method, Lambda Expression, anonymous method with omit parameter list, and delegate inference.
CRUD Operation With GridView Using LINQ And Lambda Expressions
1/6/2016 7:11:00 AM.
In this Article, I am going to explain the DML Operation on GridView using LINQ to SQL Classes.
Func Delegate in C# with Examples
4/25/2015 1:05:19 AM.
This video provides a complete explanation about the Generic Func Delegate and also explains about how to use Func Delegate with Named Method , Using Func Delegate with Anonymous Methods and using Func Delegate with Lambda Expressions with example. Hope this video will help out in using the Func Delegate Properly.
Anonymous Method and Lambda Expression in C#
4/17/2015 1:49:22 AM.
This Video Provides a Complete Introduction about how to convert the Named Method Programming model to Anonymous Method and then Converting the Anonymous Method Programming Model to Lambda Expression in C# so that the every one can understand the migrations between the Named Method Programming to Lambda Expression
New C# Features That Support LINQ
1/9/2015 4:47:13 PM.
In this article we will learn some basic concepts of LINQ and apart from that we can see the C# features that support LINQ.
Debugging Lambda Expression in Visual Studio 2015
12/26/2014 6:27:12 PM.
Here you can learn what lambda expressions are and how to debug them in Visual Studio 2015.
Understanding Lambda Expressions
11/15/2014 5:25:38 PM.
This chapter has introduced the theory behind lambda expressions as well as illustrates its syntax of expressions.
The Anonymous Methods and Lambda Expressions in .NET
7/31/2014 12:24:54 PM.
The purpose of this article is to provide the basic idea of Anonymous methods and Lambda expressions in C#.
A Journey to Lambda Expression: Part 2
7/29/2014 6:11:02 PM.
This article relates a journey to Lambda.
Inner Join Using LINQ With Lambda
10/22/2012 5:47:30 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in LINQ.
Using Lambda expression
10/20/2012 1:54:44 AM.
This article gives you brief description about lambda expression and how to use it
Preview of What's New in C# 3.0
9/29/2012 8:17:51 AM.
This article discusses about the new enhancements expected in C# 3.0.
Practical Usage of Complete Extension Methods in LINQ
4/19/2012 5:53:00 AM.
In this article we are going to see the complete usage of extension methods in LINQ with the help of a Lambda expression.
One Line Lambda-Lookup list of Lambda Expressions for common scenarios
12/8/2010 4:18:40 AM.
I have observed that Lambda Expressions got good steam among developers. It helps us in reducing lot of code and save time.
Speed of Lambda
11/15/2010 8:20:30 AM.
In this article I am trying to compare the speed difference of Lambda expressions with traditional programming. The results are mind-blowing.
Use of Delegate and Lambda Expression
9/16/2010 3:22:49 PM.
Here I would like to discuss about the use of Delegates and Lambda Expression’s. Lambda Expressions has been introduced in C# 3.0 (2008).
Introduction to LINQ, Extension methods and Lambda Expressions
10/19/2009 1:33:03 AM.
This article is an introduction of LINQ, Extension methods and Lambda Expressions. In my following articles, I will delve into more details.
Lambda, Lambda, Lambda - Uncovering the Mystery Behind Lambda Expressions
10/6/2009 10:23:10 AM.
Lambda Expressions are a powerful addition to C# Programming. This article attempts to describe lambda expressions in simple terms to pave the way for some powerful uses of this construct.
Methods, Delegates, Anonymous Delegates, and Lambda Expressions... Oh My!
3/21/2008 8:11:03 PM.
This article covers different syntax we can use for declaring and executing methods.