Hi
Is it possible to use a table placeholder in @SQLDelete annotation ? To move from this :
@SQLDelete(sql = "UPDATE assess_answer SET deleted = true WHERE id = ?", check = ResultCheckStyle.COUNT)
to
@SQLDelete(sql = "UPDATE {table} SET deleted = true WHERE id = ?", check = ResultCheckStyle.COUNT)
Most of our tables are going to have the same SQLDelete and Where content for the annotations, adding this to inheritance to those 2 annotations that would reduce repetition .