what is the best Approach to save a List Object?
Lets say I have a custom Object Person and then I have a Person Collection Object which is basically a List or a collection of Person.
Now I want to save the collection object into Database.
Should I loop though the entire collection object and save one person by peron into the database? or is there any other method?
Thanks!