wpliang
Results
2
issues of
wpliang
Now the latest version is 0.5 but don't support Agile API, which version will support it? thanks.
type Post struct { Id int Title string User *User `orm:"rel(fk)"` Tags []*Tag `orm:"rel(m2m)"` } type Tag struct { Id int Name string Posts []*Post `orm:"reverse(many)"` } var posts []*Post...