Closed Leihb closed 4 years ago
I love this library so much, it's simple yet powerful. It could even be better if it support "in query" in where method.
for example:
users := make([]*User, 0) gosql.Model(&user).Where("id in (?)", []int{1, 2, 3}).All()
@Leihb Yes, This is Support
See https://github.com/ilibs/gosql/blob/master/model_test.go#L267
@fifsky thank you, that is great.
I love this library so much, it's simple yet powerful. It could even be better if it support "in query" in where method.
for example: