I have added new contact for account
Entity contact = new Entity("contact");
contact["parentcustomerid"] = new EntityReference("account", fact.AccountId.Value);
contact["jobtitle"] = cnt.Title;
contact["firstname"] = cnt.FirstName;
contact["lastname"] = cnt.Surname;
Contact has added in crm but don't show in Accounts contacts grid.
How to make visible in grid ?
Thank you.