如何通过C#或VB.NET在Microsft CRM中插入客户? [英] How to Insert Customer in Microsft CRM By C# or VB.NET?

查看:101
本文介绍了如何通过C#或VB.NET在Microsft CRM中插入客户?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过C#或VB.NET在Microsft CRM中插入客户?

How to Insert Customer in Microsft CRM By C# or VB.NET?
pls help me

推荐答案

嗨khosro,



我们可以使用自定义插件(使用c#)插入帐户(客户),如果我们有任何事件并在插件注册工具上注册相同的话。



或,



如果我们有门户网站,那么我们也可以与CRM建立联系并创建帐户(客户)。



< red> 示例代码:



实体NewCustomer = new Entity();

NewCustomer.LogicalName =account;



service.Create(NewCustomer)
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)


这篇关于如何通过C#或VB.NET在Microsft CRM中插入客户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆