selectAllDistinct method

  1. @override
SyncSelect selectAllDistinct(
  1. Iterable<SelectResultInterface> results
)
override

Starts a new query, which returns distinct rows and defines the selected columns.

Implementation

@override
SyncSelect selectAllDistinct(Iterable<SelectResultInterface> results) =>
    SyncSelectImpl(results.cast(), distinct: true);