I have an entity named Visitors which is populated through a workflow from another entity named Bookings.
In the Visitors entity I want a functionality where one can update the Visitors record again and again by adding visitors that come to visit that particular person in the Visitors record.
How come I keep adding updating the same record by adding new visitors?
Do I create a new entity which contains the form with information about the visitors and create a 1:N relationship with Visitors entity? I did this but this only allows me to add the items once and after I save the record it does not allow me to add a new visitor again.
What about a N:N relationship? would that help?