Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You can, however, use a BusinessBindingSource wrapped around the business object and use it as your DataSource on the combo box (forgoing the PopulationDataSourceSettings) and only set the DisplayMember. Then, when you access the SelectedValue, it will return an instance of the business object you used to populate the list, and you will have access to all of your properties on the business object. The downside is that you can only select one field as the DisplayMember (you cannot concatenate more than one of them together), so you will have to concatenate the fields on SQL Server or somewhere else.
|