XtremeKevinChow / PredicateExtensions

Predicate extensions C#, LINQ and EntityFramework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#PredicateExtensions

PredicateExtensions is a C# utility that will take two Lambda expressions and combine them using .And or .Or extension methods. Expressions be joined at runtime for dynamic LINQ queries. PredicateExtensions can be used with EntityFramework to refactor and create dynamic queries.

##Example Expression<Func<string, bool>> equalsA = str => str == "A"; Expression<Func<string, bool>> equalsB = str => str == "B";

IQueryable<string> myValues = {"A", "B", "C", "D" };
myValues.Where(equalsA.Or(equalsB)); //"A", "B"

For more information see: Giving Clarity to LINQ Queries by Extending Expressions

About

Predicate extensions C#, LINQ and EntityFramework

License:Other


Languages

Language:C# 100.0%