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
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Abhishek Yadav (13)
Kamal Rawat (4)
Tural Suleymani (3)
Hemant Srivastava (3)
Vijai Anand Ramalingam (3)
Lokendra Singh (2)
Jaimin Shethiya (2)
Jitendra Mesavaniya (2)
Bohdan Stupak (2)
Keyur (2)
Gurpreet Arora (2)
Sandeep Nandey (2)
Rajkumar Jain (2)
Viral Jain (2)
Ashirwad Satapathi (2)
Aman Gupta (2)
Anas Chaudhary (2)
Hamed Niazmand (1)
Ziggy Rafiq (1)
Sandeep Singh Shekhawat (1)
Jejji Arora (1)
Rajiv Singh (1)
Ano Mepani (1)
Ajay Kumar (1)
Abhishek Arora (1)
Mariusz Postol (1)
Alpesh Maniya (1)
Dinesh Gabhane (1)
Mamta M (1)
Ramasagar Pulidindi (1)
Naimish Makwana (1)
Aravind Govindaraj (1)
Sateesh Arveti (1)
Andrew Fenster (1)
Jean Paul (1)
Sachin Kalia (1)
Matthew Cochran (1)
Neeraj Kumar (1)
Ahmad Anas (1)
Gul Md Ershad (1)
Sourav Kayal (1)
Miguel Teheran (1)
Saravanan Ganesan (1)
Aashina Arora (1)
Ravikant Sahu (1)
Nitin (1)
Amit Mohanty (1)
Kalyan Bandarupalli (1)
François Bouteruche (1)
Pawan Pandey (1)
Sameer Shukla (1)
Akkiraju Ivaturi (1)
Sean Franklin (1)
Akshay Deshmukh (1)
Jin Necesario (1)
Aadarsh Sharma (1)
Rohit Rao (1)
Arindam Dawn (1)
Vipul Poojara (1)
Amit Choudhary (1)
Arpit Jain (1)
Shantanu (1)
Satendra Singh Bhati (1)
Ajay Mor (1)
Akhil Mittal (1)
Manikavelu Velayutham (1)
Rafnas T P (1)
Related resources for Lambda
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
working with map and flatMap Transformations in PySpark
9/19/2024 4:45:13 AM.
This article explores the differences between the map and flatMap transformations in PySpark. The map function applies a one-to-one transformation to each element, while flatMap allows for multiple ou
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
Lambda Functions and High Order Functions in Android kotlin
7/11/2024 4:59:01 PM.
The provided Kotlin examples demonstrate basic and high-order functions. In lambda. kt, a lambda function adds two integers. In HighOrder.kt, a high-order function accepts another function as a parame
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
Working with Lambda Functions in Python
5/21/2024 6:08:29 AM.
Lambda functions in Python are concise, anonymous functions defined with the lambda keyword. They're ideal for short, disposable tasks and commonly used with map(), filter(), and reduce() function
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
Organizing AWS Lambda dependencies with layers
3/27/2024 8:51:21 AM.
Optimize AWS Lambda deployments by organizing dependencies with layers. Simplify management, enhance performance, and streamline updates for serverless applications, ensuring efficient resource utiliz
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
Understanding Action and Func Delegates in C#
1/17/2024 10:02:38 AM.
Two commonly used delegates in C# are the Action and Func delegates. Let's explore what they are and how to use them. Delegates in C# have some features that distinguish them from normal methods.
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
Exploring Default Lambda Parameters in C# 12
1/1/2024 7:32:09 AM.
Default Lambda Parameters in C# 12.
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!
Create and Debug Lambda Function in VS Code
12/22/2023 8:34:09 AM.
Create an AWS lambda function in the local environment and debug it before pushing it to a cloud environment. With the help of a few tools such as AWS SAM or serverless framework, developers can emula
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
Deploy .Net Core AWS Lambda Function using AWS CodeBuild Pipeline
10/29/2023 6:15:30 AM.
Deploy .Net Core AWS Lambda Function using AWS CodeBuild Pipeline.
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
Functional Programming in C#: Currying
9/6/2023 9:34:01 AM.
Currying is a way to re-write a function with multiple arguments in such a way as it can be called as a chain of functions each with a single argument. This article covers using a few simple utility m
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.
AWS Lambda: Serverless Computing
8/25/2023 9:29:17 AM.
Discover AWS Lambda's power in cloud computing. Develop serverless apps without server management, ensuring scalability, cost-efficiency, and event-driven operations. Learn with practical Node.js
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
Different Ways To Create Delegates In C#
8/21/2023 6:06:47 AM.
This article is intended to explain the idea and concept to create Delegate with different approach.
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#.
What is new in C# 12?
8/9/2023 4:49:17 AM.
Let’s explore the new features in C# 12 with .NET 8 and how we can use it.
Intelligent IoT Solutions with Azure IoT Lambda Architecture
7/27/2023 6:08:15 AM.
Discover the power of Azure IoT Lambda architecture for IoT solutions. Process real-time and historical data efficiently, gain valuable insights, ensure scalability, reliability, and security, and emb
Paramiko Python Library Setup with AWS Lambda Layer
6/18/2023 8:46:45 AM.
Paramiko SFTP Python Library Setup
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.
Learn About Functions In Python
6/8/2023 4:35:07 AM.
This article illustrates the use of functions in Python. We will learn about different types of arguments and functions in Python and their uses.
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.
Schedule AWS Lambda Function
5/9/2023 11:42:40 AM.
Article to schedule AWS Lambda Function using EventBridge Rule
Functions in Kotlin
4/28/2023 6:13:43 AM.
This article will explain functions and how they can be used in Kotlin.
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 Preview Features: Improving Productivity and Performance
4/17/2023 6:37:02 AM.
C# 12 Preview Features: Improving Productivity and Performance
Create A Lambda Function With AWS Console
4/7/2023 10:34:51 AM.
In this article, you will learn how to create a Lambda function with AWS console and Test function.
When To Use AWS Lambda?
3/27/2023 8:38:14 AM.
In this article, you will learn about AWS Lambda and its advantages.
How To Create Item In Amazon DynamoDB Using AWS Lambda With Python
1/30/2023 4:36:46 AM.
In this article, you will learn how to create item in Amazon DynamoDB using AWS Lambda with Python.
How To Read Files From S3 Bucket Using Lambda Function And Python
1/24/2023 1:22:26 PM.
In this article, you will learn how to read the file from S3 bucket and return the JSON response using Lambda function with Python.
AWS Lambda SnapStart For Java Functions
12/2/2022 5:47:41 AM.
New feature added to AWS Lambda function to boost up java function speed
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.
50 Shades Of .NET On AWS
6/2/2022 4:38:02 PM.
This article describes how you can decide which AWS services to use to host your .NET applications.
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.
How To Create Files In AWS Lambda Tmp Directory Using C#
2/11/2022 5:25:09 PM.
In this article, you will learn how to list and create test files in AWS Lambda tmp directory using C#.
Demystifying ‘var’ In Java
1/19/2022 1:58:08 PM.
The article explains the internals of the keyword 'var' in Java.
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.
Getting Started with Serverless
2/22/2021 4:40:21 AM.
In this session, we will cover a high-level overview of AWS Lambda, a serverless compute platform that has changed the way that developers around the world build applications. We’ll explore how Lambda
AWS Lambda And Serverless Computing
2/11/2021 3:33:40 PM.
Before we learn and understand one of the great features provided by AWS known as AWS lambdas, let’s try to understand what Serverless Computing is.
Using Serverless In Full Stack Development
2/9/2021 6:48:38 AM.
Using serverless reduces time spent managing infrastructure and provides developers more time to focus on code. In this session The speaker will cover tooling, frameworks, and architectural patterns f
AWS - API Gateway - 🔒 Only Allow Requests From Your IP
1/21/2021 2:59:56 PM.
In this short reference, I will describe how to quickly secure your API Gateway so that it will only accept requests from your IP address. This will effectively prevent any malicious attacks to your A
Deploy .NET Lambda Functions As Containers
1/20/2021 8:00:04 PM.
In this article, we will create lambda function (dotnet core 3.1) and deploy it to AWS using docker container.
Beginner's Guide To Data Pipelines
1/14/2021 10:55:14 AM.
In this article, you will learn about data pipelines and their different types.
Use Of Session Attributes In A Custom Alexa Skill
11/2/2020 7:38:15 AM.
In this article I am going to demonstrate how to use a session attribute in a custom Alexa skill
Create A Custom Skill To Extract Values From A Slot In Alexa
10/24/2020 8:37:07 AM.
In this article, I am going to demonstrate how to create a custom Alexa skill on Alexa Hosted node.js server to extract slot values for different slots defined in an interaction model of an Alexa skil
Create A Custom Skill To Demonstrate Dialog Delegation In Alexa
10/24/2020 8:35:21 AM.
In this article on custom Alexa skills, I am going to demonstrate how to create a custom Alexa skill on Alexa Hosted node.js server.
Serverless On AWS
9/25/2020 1:26:01 PM.
In this article, you will learn about serverless on AWS.
Getting A Mobile Number In An Alexa Skill
9/12/2020 11:38:48 AM.
In this article on custom Alexa skills, I am going to demonstrate how to get a user’s mobile number for use in a custom Alexa skill.
Getting An Email Address In An Alexa Skill
9/12/2020 11:34:14 AM.
In this article on custom Alexa skills, I am going to demonstrate how to get a user’s email address for use in a custom Alexa skill.
Getting A Username In An Alexa Skill
9/11/2020 12:23:13 PM.
In this article on custom Alexa skills, I am going to demonstrate how to get a user’s name for use in a custom Alexa skill
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.
Creating Custom Food Fact Skill Using Fact Skill Template
9/5/2020 1:50:01 PM.
In this article, I am demonstrating how to use a fact skill template to create a custom food fact skill.
Creating An Alexa Skill That Calls An API
9/2/2020 2:34:40 PM.
In this article, I am creating a custom Alexa skill that calls an external API to fetch information.
Creating A Custom Random Dessert Skill Using Alexa Hosted NodeJS
8/30/2020 2:16:15 PM.
in this article, a custom Alexa skill has been created which fetches a random dessert for the user.
Slot Values Comparison Using Comparison Operators In Alexa Skill
8/27/2020 9:51:20 AM.
In this article, a custom skill is created and comparison triple equals operator is used to compare slot value and execute statements accordingly.
Creating Custom Rock Paper Scissor Game Alexa Skill Using Alexa Hosted NodeJS
8/25/2020 7:39:50 AM.
in this article, i have created a custom rock paper scissor game alexa skill.
30 Days Of Python 👨💻 - Day 12 - Lambda Expression And Comprehensions
7/28/2020 8:15:03 AM.
In this article, you will learn about Lambda Expression and Comprehensions.
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.
Introduction To Building An Amazon Alexa Skill Using Alexa Skills Kit In ASP.NET Core
6/10/2020 8:57:52 AM.
In this article, I will explain how to develop Amazon Alexa Skills using AWS Lambda function or Web Service as an end point.
Invoking AWS Lambda Function Using AWS API Gateway
5/25/2020 3:19:39 AM.
In this article we will learn how Lambda function can be invoked through AWS API Gateway.
Overview Of The AWS Lambda Structure
5/25/2020 3:11:16 AM.
In this article we will dive deep into AWS Lambda and learn its structure as well as the execution.
Write Serverless Functions Using AWS Lambda And C#
5/25/2020 2:47:36 AM.
Write Serverless Functions using AWS Lambda and C#.
Passing Data To AWS Lambda Function And Invoking It Using AWS CLI
5/25/2020 1:59:23 AM.
In previous article, we learnt about AWS lambda structure and how a lambda function can be invoked. Before we go further, there are couple of things which are very important to consider while doing lo
Building Auth Endpoint with Go and AWS Lambda
5/6/2020 9:30:09 PM.
In this article, you will learn how to build an Auth Endpoint with Go and AWS Lambda.
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).
Lambda Expressions in Java SE 8
9/30/2019 3:28:20 AM.
In this article you will learn how to implement Lambda Expressions.
Features of Java 8
9/28/2019 7:37:25 AM.
This article explains additional features of Java SE 8.
A New Version of Java - Java 8
9/20/2019 5:22:34 AM.
In this article you will learn about java 8 and the features adding to java 8.
Action Delegate Using Lambda Expression In C#
8/9/2019 11:25:02 AM.
This video shows the practical usage of Action Delegate in C# using Lambda expression.
Creating A Chatbot Using Amazon Lex Service - Day Two - AWS Lambda Functions
8/1/2019 10:12:48 PM.
In the last article of this tutorial series, we learned what chatbots are and how we can create a basic chatbot using Amazon Lex service. In this article, we will learn how to create Lambda functions
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.