Skip to content

Instantly share code, notes, and snippets.

@grandsilence
Created January 20, 2024 20:09
Show Gist options
  • Save grandsilence/ee80bcaed955520191839526615535a1 to your computer and use it in GitHub Desktop.
Save grandsilence/ee80bcaed955520191839526615535a1 to your computer and use it in GitHub Desktop.
C# .WhereIf(bool, predicate) LINQ Queryable Extension Method
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