Combine master-detail databinding
- by clawson
I have created data sources from my objects in my project, some of which have other objects as members. When I want to bind a some objects to a data grid I would like to display some of the values from the member objects in the data grid as well but the examples I have come across seem to use an entire other datagrid or controls to display these member object values.
How can I combine these values into one data grid? (Preferably without creating a wrapping class)
Can I achieve this with LINQ somehow?
Your help is greatly appreciated.
Thanks
P.S. C# or VB examples will do.