DbExpressions.DbSelectQueryExtensions.SelectDistinct C# (CSharp) Method

SelectDistinct() public static method

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

Same methods

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