Hi,
I have an Entity with a field of type Enum. I am trying to use KeyValueCollection data container and display the data in dataGrid.
Here is details:
SQL
select e.salesDataSet, sum(e.pd01Amount), sum(e.pd02Amount), sum(e.pd03Amount), sum(e.pd04Amount),
sum(e.pd05Amount), sum(e.pd06Amount), sum(e.pd07Amount), sum(e.pd08Amount), sum(e.pd09Amount),
sum(e.pd10Amount), sum(e.pd11Amount), sum(e.pd12Amount) from erp_SalesSummary e group by e.salesDataSet
Here the salesDataSet is Enum class.
Here are the properties defined in the screen
When I run the application I get no info displayed under the column salesDataSet
if I define the columns as follows,
I get the following outcome, but I need to display the enum name instead.
Thanks for any help.