Add this attribute to your data interface to select what property should be used as label when enumerating data.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the LabelPropertyName attribute.
CopyC#

[LabelPropertyName("Title")] // (other IData attributes) interface IMyDataType : IData { string Title { get; set; } // other data type properties }