orderByDesc method
Implementation
DbQueryBuilder<T> orderByDesc(String column) {
_orderByCol = column;
_orderByDesc = true;
return this;
}
DbQueryBuilder<T> orderByDesc(String column) {
_orderByCol = column;
_orderByDesc = true;
return this;
}