Surya Asriadie

Results 101 comments of Surya Asriadie

> Of course an workaround might be to remove the autosave:"true" between Product and PropertyGroup, but this would break the insert when the PropertyGroup doesn't exist. one possible fix that...

maybe you can use raw query as workaround? ``` var result struct {Sum float64} sql := rel.SQL("SELECT ....") err := repo.Find(ctx, &result, sql) ```

Run the same issue too, adding `aws-java-sdk-sts` doesnt help

I created a kotlin port from this library and also encountered the same issue I fixed it like this (https://github.com/Fs02/gitignore-parser/commit/08b83f1f425c1a470c357411ec20ca54b066324a), although I'm not sure if this will break other things...

are you using sqlite? is the issue still happen if you use string in your struct? if yes, then it's possibly related to this issue: https://github.com/mattn/go-sqlite3/issues/951

> The PR title and body remain unaffected by this change. will be very useful for me if this also supports PR title

Hi Ingwie, you can run raw query just like this: ```go sql := rel.SQL("SELECT id, title, price, orders = (SELECT COUNT(t.id) FROM [transactions] t WHERE t.book_id = b.id) FROM books...

the query builder is an internal adapter implementation right now, so there's no direct way to access it from rel as of now

Hi, Is sending the field on the same function call is what you need? Currently REL will include the field based on whether it's an association field or not. A...

deleting association in structset not currently implemented ([code](https://github.com/go-rel/rel/blob/e5555d0cb11d016ab4bcd74e8df478321d1956ea/structset.go#L108-L110)) need to do delete it manually for now if you are interested to submit PR, you can follow this [map.go](https://github.com/go-rel/rel/blob/e5555d0cb11d016ab4bcd74e8df478321d1956ea/map.go#L53) code to...