I've been porting an application from DevForce 3 (Classic) to DevForce v5. I've successfully modified the code to compile with DevForce 5, but I have a hard time to bind the data (Entities) to the WPF application.
There are a lot of DataGrids used in the WPF application and I haven't been able to bind the data to the ItemsSource element of the DataGrid.
The entities were previously accessed via an EntityList which could easily be assigned to the ItemsSource element since it derived from an IList.
The EntityLists were replaced by EntityGroups and I'm trying to find a way to assign the entities to the DataGrid as previously described.
Is there a way to do so? Or should I make an EntityQuery and use the ToList() method and then assign that list to the DataGrid? (I want to avoid this solution as it will take a lot more time to refactor the project)
Thank you and good day!
Edited by watah - 31-Jul-2012 at 8:07am