C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
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]
Dhanushka Athukorala(1)
Vandita Pandey(1)
Rohatash Kumar(1)
Ng Cheehou(1)
Riya Patel(1)
Ajay Narkhedkar(1)
Jaimin Shethiya(1)
Jitendra Mesavaniya(1)
Shivam Payasi(1)
Nagaraj M(1)
Rikam Palkar(1)
Jignesh Kumar(1)
Ano Mepani(1)
Arunava Bhattacharjee(1)
Chris Eargle(1)
Akkiraju Ivaturi(1)
Resources
No resource found
Understanding Delegates Predicates and Lambda
Feb 22, 2013.
To have a clear undestanding of Predicates, you must have a good understanding og delegates.
Using Predicates Over Foreach In Arrays
Oct 24, 2006.
We generally use foreach blocks to iterate through Arrays n Lists in order to operate on them which not only makes our code long n confusing but also makes us compromise on performance. The solution to this lies in Predicates...
Predicates in SQL Server 2012
Sep 27, 2012.
This article demonstrates use of predicates with SQL queries in a SQL Server database.
Understanding Predicate, Anonymous Methods, and Lambda Expressions in C#
Jun 28, 2026.
Master C# Predicates, Anonymous Methods, and Lambda Expressions for reusable, maintainable, and expressive code. Elevate your filtering logic!
Implementing Row-Level Security in SQL Server
Jun 03, 2026.
Learn how to implement Row-Level Security in SQL Server. Secure data access, restrict rows by user, and simplify multi-tenant application security.
Introduction to Delegates in C#
Dec 28, 2025.
Unlock C# delegates: Learn how to declare, use, and master single-cast, multicast, and built-in delegates (Func, Action, Predicate) for flexible code!
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).
Understanding Func, Action, and Predicate in C# .NET
May 21, 2024.
In C# .NET, delegates are a powerful feature that allows you to pass methods as arguments to other methods. Among the most commonly used delegates are Func<T>, Action<T>, and Predicate<T>. This article will delve into each of these delegates, exploring their definitions, use cases, and examples.
Generic Delegates In C#
May 17, 2022.
Here ill describe that why we need Generic Delegates what are Generic Delegates, keyword used in Generic Delegates and their type with example
Delegates - Action vs Func vs Predicate
Sep 02, 2020.
In this article, we will see the usage for 3 types of delegates.
Func, Action And Predicate Delegates In C#
Jun 08, 2020.
If you don't want to declare delegates every time, you can use some built-in delegates.
Enhance SQL Server Stored Procedure Performance – Tuning Tips
Aug 22, 2018.
Covering indexes and filtered indexes in SQL optimize database performance by efficiently retrieving data for queries. Covering indexes include all needed columns, while filtered indexes target specific rows.
Dynamic LINQ Query In C# Using Predicate Builder
Jun 23, 2015.
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 build flexible queries for filtering data in applications, enhancing adaptability and performance.
Func<> Delegates in LINQ
Sep 10, 2014.
Learn how Func<> Delegates in LINQ work. Func delegates are pointers to methods that take one or more parameters and must return a value.
Predicate Combinators in LINQ
Apr 28, 2014.
In this article you will learn how to use Predicate Combinators in LINQ.
Functional Programming in Simple Terms: Explained
Aug 25, 2012.
In this article we learn about Functional Programming in a very simple manner.