whereMonth method

  1. @override
QueryBuilderInterface<T> whereMonth(
  1. String column,
  2. int month
)
override

WHERE MONTH(column) = month

Implementation

@override
QueryBuilderInterface<T> whereMonth(String column, int month) {
  return _addDateCondition('Month', column, '=', month, 'AND');
}