Hi
I am trying to create a Contact via the SDK in C#. All I have is:
_sp = new OrganizationServiceProxy(this._uri, null, cc, null); Entity new_contact = new Entity("contact"); new_contact.Attributes["firstname"] = "Test"; new_contact.Attributes["lastname"] = "Test"; _sp.Create(new_contact);
Yet I get the given key error when running this. Any ideas?