Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


This code block retrieves a Contact record from Salesforce:


Code Block
languagec#
ContactService contactService = new ContactService(salesforceSession);
 
//This is the Id for a contact directly from the browsers address bar
Id contactId = new Id("00390000001TjMHAA0");
 
Contact contact = contactService.GetByEntityId(contactId, new SObjectField[] {Contact.Fields.Id, Contact.Fields.FirstName, Contact.Fields.LastName});
Assert.IsNotNull(contact);
Assert.AreEqual(contactId, contact.Id);