distinctByRatedCurrent method

QueryBuilder<ComponentModel, ComponentModel, QDistinct> distinctByRatedCurrent()

Implementation

QueryBuilder<ComponentModel, ComponentModel, QDistinct>
    distinctByRatedCurrent() {
  return QueryBuilder.apply(this, (query) {
    return query.addDistinctBy(r'ratedCurrent');
  });
}