Skip to content

Instantly share code, notes, and snippets.

@carterhudson
Created September 14, 2021 02:03
Show Gist options
  • Save carterhudson/237485f40a2433c0a851bdff4f88b577 to your computer and use it in GitHub Desktop.
Save carterhudson/237485f40a2433c0a851bdff4f88b577 to your computer and use it in GitHub Desktop.
data class NutritionDateWithFoodItemsEntity(
@Embedded val nutritionDate: NutritionDateEntity,
@Relation(
parentColumn = "epochDay",
entityColumn = "createdAt",
associateBy = Junction(NutritionDateAndFoodItemCrossRefEntity::class)
)
val foodItems: List<FoodItemEntity>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment