Example: If I had two entities Person and Car, and each of them should be linked with an Image entity - how would this have to look like?
Right now, I would make just three Entities: Person, Car, Image. So persons and cars can link to an Image entity. They have a 1:1 relationship to the Image entity.
But now, a Core Data dude said that relationships have to be modeled both ways. That's stupid or not? I need two Image entities then. CarImage and PersonImage. Or one weird Image entity which has two relationships: One to a Car entity, and one to a Person entity.
How would you model that?