Hello
I have created a MultiSelectList like this:
MultiSelectList UsergroupID = new MultiSelectList(_ug.GetUsergroups(), "UsergroupID", "UsergroupName", u.Usergroups);
problem is the getting the list from u.Usergroups (that is EntitySet) to make the items selected.
Do I need to cast "u.Usergroups" to something in order for it to select those?
/M