Hello!
I have added a Company property on the Contact Object in Commerce Manager, but i don-t get it to save!! whats wrong?
EntityObjectProperty EO = CustomerContact["company"] as EntityObjectProperty; if (EO == null) { CustomerContact["company"] = new EntityObjectProperty("company",Company.Text); } else { CustomerContact.Properties["company"].Value = Company.Text; } CustomerContact.SaveChanges();
Ive also tried
CustomerContact["company"] = Company.Text;
oh sk*t, it is case sensitive, this is enough:
CustomerContact["Company"] = Company.Text;
Hello!
I have added a Company property on the Contact Object in Commerce Manager, but i don-t get it to save!! whats wrong?
Ive also tried