我无法在"笔记和附件中附加excel(.xls)文件"使用c#在Salesforce中的特定记录中的部分。我是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);
答案 0 :(得分:0)
不要同时设置Parent和ParentId,只需设置ParentId,所以删除attach.Parent行,你应该好好去