isSameDayAndMonth method
Get db statement to check weather this field has same day and month parts of another DateTime object.
Implementation
ConditionQuery isSameDayAndMonth(DateTime d) {
return day.equals(d.day) & month.equals(d.month);
}
Get db statement to check weather this field has same day and month parts of another DateTime object.
ConditionQuery isSameDayAndMonth(DateTime d) {
return day.equals(d.day) & month.equals(d.month);
}