我正在学习.net应用程序中的crm开发。
我正在尝试将联系人与帐户关联。但是我在联系实体的文档中找不到$(document).ready(function()
{
$("#myButton").click(myFunction);
});
function myFunction()
{
$.ajax({
url: "ajax2.py",
type: "post",
datatype: "data",
data: {name: $("#inputName").val(), pass: $("#inputPassword").val()},
success: function(response){
console.log(response.message);
console.log(response.keys);
console.log(response.data);
}
});
}
。
尝试关联这些记录时如何工作?
这是我的联系人控制器代码。
accountid
答案 0 :(得分:1)
您必须使用EntityReference
对象进行分配,如下所示:
var contact = new Entity("contact");
{
contact["firstname"] = newContact.firstname;
contact["parentcustomerid"] = new EntityReference("account", <GUID>);
}