I would modify detached entity with associated collection, ex :
Person and Address are POCO.
When I attach entity and save changes, the collection changes isn't detected, how can I update Person with Address (added and deleted items) ?
Do I to track my collection manually ?
Edit
The synchronization of detached POCO must be manual... EF doesn't purpose merge solution of collection (navigation properties and relations) :(
I compare the current and original collections and I detect the differences