Suppose that model X has_many Ys and model Y belongs_to X. Each Y has a date when it has been inserted to the database. Now, is it possible to load all Xs and eager load last Y for each of X (only the last because each X has bazzilions of Ys)?
|
2
|
|
|
|
|
|
Yes, Lets take this example
Add a new association to the Song:
this new association will always return the most recently created Vote for a Song. To eager load it:
|
||||
|
|
|
The previous solution is really great! However, I'm looking for one more feature: is it possible to eager load last subordinate record before a specific date? This is needed so that my users can browse a history a song's votes (with links to previous and next days). |
||
|
|
