Created
January 20, 2024 20:09
-
-
Save grandsilence/ee80bcaed955520191839526615535a1 to your computer and use it in GitHub Desktop.
C# .WhereIf(bool, predicate) LINQ Queryable Extension Method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq.Expressions; | |
public static class QueryableExtensions | |
{ | |
public static IQueryable<T> WhereIf<T>(this IQueryable<T> queryable, bool condition, Expression<Func<T, bool>> predicate) | |
{ | |
return condition ? queryable.Where(predicate) : queryable; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment