You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've read issue #2 but while I can see it working, it requires that each query also serializes json and then it's again de-serialized after the query.
Is there any plan or hint around how to support one-to-many relationships? For example supporting something like:
type (
Addressstruct {
Line1string`db:"line_1"`Citystring
}
Userstruct {
IDuint32NamestringEmailstringAddress []Address`scan:"follow"`// follow inspects the struct and adds the fields without being dot notated.
}
)
and having it just work.
The text was updated successfully, but these errors were encountered:
I've read issue #2 but while I can see it working, it requires that each query also serializes json and then it's again de-serialized after the query.
Is there any plan or hint around how to support one-to-many relationships? For example supporting something like:
and having it just work.
The text was updated successfully, but these errors were encountered: