GetEntityMetadata returns 0 个属性

GetEntityMetadata returns 0 attributes

我需要获取特定实体的所有字段。我目前正在使用 Xrm.Utility.getEntityMetadata("entity_name").then(success, failure); 但成功时返回的数据没有属性。知道为什么吗?

您必须传递属性列表的字符串数组作为第二个参数才能获取它们。

Xrm.Utility.getEntityMetadata("account", ["accountname", "createdon"]).then(success);

Read more