System.Linq.Dynamic.UntypedQueryable.Where C# (CSharp) Method

Where() public static method

public static Where ( this source, LambdaExpression predicate ) : IQueryable
source this
predicate System.Linq.Expressions.LambdaExpression
return IQueryable
		public static IQueryable Where(this IQueryable source, LambdaExpression predicate)
		{
			if (source == null) throw new ArgumentNullException(nameof(source));
			if (predicate == null) throw new ArgumentNullException(nameof(predicate));

			return source.Provider.CreateQuery(
				Expression.Call(
					typeof(Queryable), "Where",
					new[] { source.ElementType },
					source.Expression, Expression.Quote(predicate)));
		}
UntypedQueryable