使用c#将excel文件附加到Salesforce中的Notes和附件中
本文关键字:中的 Notes Salesforce excel 文件 使用 | 更新日期: 2023-09-27 18:01:49
我无法使用c#在Salesforce的特定记录的"备注和附件"部分附加excel(.xls)文件。我是salesforce的初学者。我将感激任何帮助。提前谢谢你。
代码如下:
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,因此删除附件。父行,你应该可以进入