Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
420
How to display nested class properties in pivot data selector using flat data source
posted

Hi,

I have a collection of one class which has "nested collection of another class" as its property. Consider following class for example,

public class SOHoldingUIEntity
{
   public StockOptimisationStockHoldingEntity soh { get; set; }
   public string group_header { get; set; }
   public ObservableCollection<StockOptimisationStockHoldingItemEntity> soitems { get; set; }
   public SOHoldingUIEntity()
   {
      soitems = new ObservableCollection<StockOptimisationStockHoldingItemEntity>();
    }
}

I need to display pivot using Observable Collection of SOHoldingUIEntity class (using flat data source). How to bring up properties of StockOptimisationStockHoldingEntity in pivot data selector?

Has anyone created such pivot? Could someone please help me on this? 

Thanks in advance...

Parents Reply Children
No Data