使用 c# 将 excel 文件附加到 Salesforce 中的备注和附件

Attach excel file to Notes and attachments in Salesforce using c#

我无法使用 c# 在 Salesforce 中的特定记录的 "notes and attachments" 部分附加 excel(.xls) 文件。我是销售人员的初学者。我将不胜感激任何帮助。先感谢您。

代码如下:

    const string qry = "SELECT ID, Name FROM Contact";
    var result=  sfdcBinding.query(qry);
    byte[] inbuff = File.ReadAllBytes(@"filename");

    Attachment attach = new Attachment();
    attach.Body = inbuff;
    attach.Name = "test";
    attach.IsPrivate = false;
    attach.Parent = result.records[0];
    attach.ParentId = result.records[0].Id;

    sObject[] InsertAttcment = new sObject[] { attach };

   sfdcBinding.create(InsertAttcment);

不要同时设置 Parent 和 ParentId,您只需要设置 ParentId,所以删除 attach.Parent 行就可以了