We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
先に
Relationがある場合は、1アクセスで必要な情報が取得できるようにする 1+N問題対策
selectに対する想定しか無い気がする
select
selectは純粋な1+N問題対策
updateはcascadeというか親をarchiveする際に、子も 同じarchivedAtという意味で同時にarchiveされてほしい
update
archivedAt
deleteも同じかも
delete
in
Database.select
Table
out
"childName" : Map(childValues)
Iterable<Map(childValues)>
The text was updated successfully, but these errors were encountered:
zin-
Successfully merging a pull request may close this issue.
先に
をやる
Relationがある場合は、1アクセスで必要な情報が取得できるようにする
1+N問題対策
方針
select
に対する想定しか無い気がするselect
は純粋な1+N問題対策update
はcascadeというか親をarchiveする際に、子も 同じarchivedAt
という意味で同時にarchiveされてほしいdelete
も同じかもin
Database.select
に対して、結合して返却してほしいTable
の情報を渡すout
"childName" : Map(childValues)
で置けば良いIterable<Map(childValues)>
でいいThe text was updated successfully, but these errors were encountered: