Results 5 issues of Vahid Pazirandeh

I'm currently using the domain class marshalling configuration style. Are you planning to add a counterpart to "ignore" called something like "only"? This would behave like Grails 2.3 respond()'s "includes"....

I have an enum class like: public enum Status { not_started("not started"), in_progress("in progress"), done("done"); private String status; Status(String status) { this.status = status; } @Override public String toString() {...

feature

This is a question I've [asked on stackoverflow](https://stackoverflow.com/questions/63165418/jdbi-update-all-columns-automatically) but no one might know the answer other than you, the developers. I currently have this working: @SqlUpdate("update something column1 = :column1,...

I actually haven't used this option at all, but just reading through README.md it looks like there are missing quotes around the values for the new Stringy options. Current: ```...

This is actually not an issue at all but I thought worthwhile to document here in case others land on this page in a web search. If you improperly designed...