perdumonocle

Results 3 comments of perdumonocle

For example you have a filter on a form. And according of its value you show records from database and pinned records: .or_where("pin") .or_where_like_any(filter) With empty filter you will see...

I have plans to make an universal WHERE query constructor, but I haven't yet decided how to make it convenient and visual

**go-sqlbuilder for golang looks awful:** ```go sb := sqlbuilder.NewSelectBuilder() sb.Select("id", "name", sb.As("COUNT(*)", "c")) sb.From("user") sb.Where(sb.In("status", 1, 2, 5)) ```