D365 OData GET返回重复的密钥

时间:2020-02-19 17:51:41

标签: odata dynamics-365

D365FO的架构表示实体类型ProductBarcode具有由九个属性组成的键。

<EntityType Name="ProductBarcode">
        <Key>
          <PropertyRef Name="dataAreaId" />
          <PropertyRef Name="ItemNumber" />
          <PropertyRef Name="ProductConfigurationId" />
          <PropertyRef Name="ProductColorId" />
          <PropertyRef Name="ProductSizeId" />
          <PropertyRef Name="ProductStyleId" />
          <PropertyRef Name="ProductQuantityUnitSymbol" />
          <PropertyRef Name="BarcodeSetupId" />
          <PropertyRef Name="Barcode" />
        </Key>
        …
</EntityType>

我们的ProductBarcode集包含几个实体,这些实体的键属性与其他实体的键属性重复。每个实体确实具有唯一的etag值。

我对实体键的功能不了解什么?

0 个答案:

没有答案