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

Select() public static method

public static Select ( this source, LambdaExpression selector ) : IQueryable
source this
selector System.Linq.Expressions.LambdaExpression
return IQueryable
		public static IQueryable Select(this IQueryable source, LambdaExpression selector)
		{
			if (source == null) throw new ArgumentNullException(nameof(source));
			if (selector == null) throw new ArgumentNullException(nameof(selector));
			return source.Provider.CreateQuery(
				Expression.Call(
					typeof(Queryable), "Select",
					new[] { source.ElementType, selector.Body.Type },
					source.Expression, Expression.Quote(selector)));
		}
	}
UntypedQueryable