What are the benefits of using inline objects?
In my practice, this is very rare when I do not use inline objects outside my parent. I mean a general example with commentswhich are nested in post_in: I need to show the latest comments in the list of updates, I need to show comments for current_user, etc. So comments cannot be embedded or it will be a pain in the ass.
Thus, there are very few use cases when I need to use inline objects.
The question is, why should I use inline objects even in those rare use cases, what are the benefits of embedding?
source
share