I have a DataGridView being populated using CoolStorage (ORM) CSList class as its DataSource. It is displaying Contacts and it's the ContactType column that instead of displaying the underlying ContactTypeName just displays "ContactType" for every record.
I cannot change the value of that cell by stepping through the rows as it's data bound, although when hovering over DataSource I can see that it has the ContactTypeName is available as a property of ContactType.
Is there a way I can change what value is displayed in the ContactType cells (I'm thinking something like an equivalent to ComboBox's DisplayMember) without having to manually constuct a DataTable from my result set?
Many thanks.