Reposting deleted stuff...
As we all see... question wasn't clear enough and needed clarification...
But still... I answered the question making assumption that all of answers will be "yes".
And still author of the question marked my post for deletion... and moderator Did It even though another fellow disagreed with author.
We need more info.
Do you use or could use INotifyPropertyChanged in your Person, EmailAddress, and Address classes?
Do you really require IsPrimary property to be part of your classes?
IF YOU DO
Then you could be listening to all PropertyChanged events(which are part of that interface) on your items and intercept changes to IsPrimary, then you would check if it's switching to ON and then switch IsPrimary on all other items to OFF.
Keep in mind that it is the proper way of achieving behavior you asked for. SO YES it is proper answer.
PS. You could also use CollectionView class if you are only interested in "CurrentItem" behavior.