I want to display two columns from my List
My code:
BindingSource DatenNameVorfahr = new BindingSource();
BindingSource DatenNameNachfolg = new BindingSource();
DataClasses1DataContext d = new DataClasses1DataContext();
////
var query = from pers in d.Person select pers;
List<Person> personen = query.ToList();
DatenNameVorfahr.DataSource = query;
DatenNameNachfolg.DataSource = query;
clNachfolg.DataSource = DatenNameVorfahr;
clVorfahr.DataSource = DatenNameNachfolg;
clNachfolg.DisplayMember = "Name" + "Nachname"; <----! (doesnt work)
clNachfolg.ValueMember = "ID";
When I do this my CheckedListBox only displayes the "ID" (its the first column in my database / list)
One solution would simply be to use a bit of LINQ to get a new List with the Name and Nachname concatenated and bind to that instead. Something like:
HTH