Room @Relation annotation with a One To Many relationship
I have a POJO I'd like to get from the database which has a list of POJO's as a property.
This, according to docs is doable via a @Relationship annotation. However, it's a one to many relationship where I don't directly reference the table/entity in question.
How would I go about getting this back from the DB directly from the DAO? Is this even possible, or do I have to implement some intermediary binding logic manually?
The POJO I'd like to get from DB:
data class Chore(
var name:...