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值。
我对实体键的功能不了解什么?