DbExpressions.DbSelectQueryExtensions.Select C# (CSharp) Method

Select() public static method

Specifies the projecton of the query.
public static Select ( this dbSelectQuery ) : DbSelectQuery
dbSelectQuery this The target
return DbSelectQuery
        public static DbSelectQuery Select(this DbSelectQuery dbSelectQuery, params Func<DbExpressionFactory, DbExpression>[] expressionSelector)
        {
            return Select(dbSelectQuery, DbExpressionFactory.List(expressionSelector.Select(e => e(DbExpressionFactory))));
        }

Same methods

DbSelectQueryExtensions::Select ( this dbSelectQuery, DbExpression expression ) : DbSelectQuery