distinct method
Create a query with distinct rows from this query using the DISTINCT
keyword.
This is equivalent to SELECT DISTINCT * FROM this in SQL.
Implementation
ProjectedOrderedSubQuery<T> distinct() =>
ProjectedOrderedSubQuery._(_query.distinct());