I am using entity framework 4 and Csharp. I have a datagridview in a windows form. The datagridview has a colomn with a combobox. The combobox is to hold an Entity object.
Usually I do the following:
dataGridViewComboboxColumn.DisplayMember = "DisplayThis" dataGridViewComboboxColumn.ValueMember = "DisplayThisId"
But I want:
dataGridViewComboboxColumn.ValueMember = Entity
Thanks!