Click here to Skip to main content
16,015,108 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to Insert Customer in Microsft CRM By C# or VB.NET?
pls help me
Posted

1 solution

Hi khosro,

We can make custom plugins(using c#) for inserting accounts(customer) if we have any event and register the same on plugin registration tool.

or,

If we have portal then also we can make connection with CRM and create account(customer).

<red>Sample code:

Entity NewCustomer = new Entity();
NewCustomer.LogicalName = "account";

service.Create(NewCustomer)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900