Method |
Description |
|
append ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|
difference ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|
except ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|
getExpression ( ) : Expression |
Gets the expression representing the current query scope. |
|
getProvider ( ) : Pinq\Providers\IQueryProvider |
The query provider for the implementation. |
|
getSource ( ) : pinq\IQueryable |
{@inheritDoc} |
|
getSourceInfo ( ) : Pinq\Queries\ISourceInfo |
Gets the source info. |
|
groupBy ( callable $function ) : pinq\IQueryable |
{@inheritDoc} |
|
groupJoin ( $values ) : Pinq\Interfaces\IJoiningOnQueryable |
{@inheritDoc} |
|
indexBy ( callable $function ) : pinq\IQueryable |
{@inheritDoc} |
|
intersect ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|
join ( $values ) : Pinq\Interfaces\IJoiningOnQueryable |
{@inheritDoc} |
|
keys ( ) : pinq\IQueryable |
{@inheritDoc} |
|
orderBy ( callable $function, $direction ) : Pinq\Interfaces\IOrderedQueryable |
{@inheritDoc} |
|
orderByAscending ( callable $function ) : Pinq\Interfaces\IOrderedQueryable |
{@inheritDoc} |
|
orderByDescending ( callable $function ) : Pinq\Interfaces\IOrderedQueryable |
{@inheritDoc} |
|
reindex ( ) : pinq\IQueryable |
{@inheritDoc} |
|
select ( callable $function ) : pinq\IQueryable |
{@inheritDoc} |
|
selectMany ( callable $function ) : pinq\IQueryable |
{@inheritDoc} |
|
skip ( $amount ) : pinq\IQueryable |
{@inheritDoc} |
|
slice ( $start, $amount ) : pinq\IQueryable |
{@inheritDoc} |
|
take ( $amount ) : pinq\IQueryable |
{@inheritDoc} |
|
union ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|
unique ( ) : pinq\IQueryable |
{@inheritDoc} |
|
where ( callable $predicate ) : pinq\IQueryable |
{@inheritDoc} |
|
whereIn ( $values ) : pinq\IQueryable |
{@inheritDoc} |
|