It's pretty clear that we need both a Person and a Photo entity. The
photo should have name and path attributes, as well as a user
attribute that somehow links to the Person entity - possibly via a
relationship?
The person entity has to have a name attribute, as well as a set of
photos. Is this just set by a one-to-many relationship to the photo
entity?
Am I on the right track? Any hints appreciated.
I find it easiest to determine if its a one to one or one to many
relationship by asking the question, "Can EntityA have one or many
EntityB's" and use that to determine the appropriate relationship
type.