如何使用预定义的 Id 创建实体记录?
How to create Entity record with the predefined Id?
是否可以使用预定义的 Id 重新创建实体记录?
这个问题的目的是弄清楚如何使用您提供的 ID 创建实体记录。
例如,当我删除 ID 为“00-00-02”的帐户记录时,它不再存在于 MS Dynamics CRM 中。所以现在我想使用 REST API 和它的旧 ID ('00-00-02') 重新创建这个帐户记录。
谁能建议我怎么做(或者不可能)?
D365允许您设置实体的主键Guid。通常,在将数据从一个 D365 组织迁移到另一个组织时,我们会将 ID 推过去。
下面是一个通过 Web 在新帐户上设置 accountId 的示例 API。 (创建于 Jason Lattimer's CRMRESTBuilder):
var entity = {};
entity.accountid = "008A5AD9-59B7-43BB-BA41-BA59CB5B4769";
entity.name = "Acme Inc.";
var req = new XMLHttpRequest();
req.open("POST", Xrm.Page.context.getClientUrl() + "/api/data/v9.1/accounts", true);
req.setRequestHeader("OData-MaxVersion", "4.0");
req.setRequestHeader("OData-Version", "4.0");
req.setRequestHeader("Accept", "application/json");
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.onreadystatechange = function() {
if (this.readyState === 4) {
req.onreadystatechange = null;
if (this.status === 204) {
var uri = this.getResponseHeader("OData-EntityId");
var regExp = /\(([^)]+)\)/;
var matches = regExp.exec(uri);
var newEntityId = matches[1];
} else {
Xrm.Utility.alertDialog(this.statusText);
}
}
};
req.send(JSON.stringify(entity));
这是相同代码的 OrganizationService 版本:
Entity account = new Entity("account");
account.Id = new Guid("008A5AD9-59B7-43BB-BA41-BA59CB5B4769");
account["name"] = "Acme Inc.";
service.Create(account);
是否可以使用预定义的 Id 重新创建实体记录? 这个问题的目的是弄清楚如何使用您提供的 ID 创建实体记录。
例如,当我删除 ID 为“00-00-02”的帐户记录时,它不再存在于 MS Dynamics CRM 中。所以现在我想使用 REST API 和它的旧 ID ('00-00-02') 重新创建这个帐户记录。 谁能建议我怎么做(或者不可能)?
D365允许您设置实体的主键Guid。通常,在将数据从一个 D365 组织迁移到另一个组织时,我们会将 ID 推过去。
下面是一个通过 Web 在新帐户上设置 accountId 的示例 API。 (创建于 Jason Lattimer's CRMRESTBuilder):
var entity = {};
entity.accountid = "008A5AD9-59B7-43BB-BA41-BA59CB5B4769";
entity.name = "Acme Inc.";
var req = new XMLHttpRequest();
req.open("POST", Xrm.Page.context.getClientUrl() + "/api/data/v9.1/accounts", true);
req.setRequestHeader("OData-MaxVersion", "4.0");
req.setRequestHeader("OData-Version", "4.0");
req.setRequestHeader("Accept", "application/json");
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.onreadystatechange = function() {
if (this.readyState === 4) {
req.onreadystatechange = null;
if (this.status === 204) {
var uri = this.getResponseHeader("OData-EntityId");
var regExp = /\(([^)]+)\)/;
var matches = regExp.exec(uri);
var newEntityId = matches[1];
} else {
Xrm.Utility.alertDialog(this.statusText);
}
}
};
req.send(JSON.stringify(entity));
这是相同代码的 OrganizationService 版本:
Entity account = new Entity("account");
account.Id = new Guid("008A5AD9-59B7-43BB-BA41-BA59CB5B4769");
account["name"] = "Acme Inc.";
service.Create(account);