Hello All!!
I have a quick question about the windows form datagrid.
I have a simple example..I have a project table, and a customer table. The project table has a ProjectID, a ProjectName, and a CustomerID. The customer table has a CustomerID and CustomerName.
In the datagrid, I want to see the ProjectName, and CustomerName. I created a ProjectCollection, retrieved them all, and then created DataGridTableStyle that used only the two columns I needed. For MappingName for the CustomerName DataGridColumnTextBoxColumn, I am using "Custmer.CustomerName". This works in ASP.NET datagrids, but doesn't seem to work for windows ones.
Is there a way I can get the CustomerName to show on the windows datagrid?
Thanks!
Jason