hi :),
i'm trying to add a new contact with asp.net webform and this is the code :
CrmConnection con = new CrmConnection("CRM");
IOrganizationService sevice = new OrganizationService(con);
Account account = new Account();
account.Name = "Bensassi";
account.NumberOfEmployees = 15;
var id = sevice.Create(account);
CreateRequest reqCreate = new CreateRequest();
reqCreate.Target = account;
CreateResponse createResponse = sevice.Execute(reqCreate) as CreateResponse;
and he stok in var id = sevice.Create(account);
with the error "Unable to retrieve target quote entity."
please help i'm dying