CRM Example
- Search for an individual with the first name of 'Aaron'
- Get a list of the individual's phones.
- Change the first phone number to '123.'
- Save the individual
var aaron = _individualRepository.Find<Individual>(x => x.FirstName=="Aaron").First(); var phoneNumber = aaron.Phones.First(); phoneNumber.Number = "123"; _generalRepository.SaveAndReload(aaron);