Hi Jenilyn,
You should take a look into developing custom filter in documentation. Your filter should be implemented almost in the exact way is in documentation, only SQL query should be different, something like:
if (this.MonthDropDown.SelectedValue != null)
{
// Gets the month as integer
int month = ValidationHelper.GetInteger(this.MonthDropDown.SelectedValue, -1);
if (month > -1)
{
where = $"(DATEPART(MONTH, [DocumentPublishFrom]) = {month})";
}
}
After that, you should add filter on page template and bind it to your repeater.
Best regards,
Dragoljub