ViewData["dropDown_ViewOwnerShare"] = correspondingDropDownValue.Select(j => new SelectListItem { Text = j.ListOfValue, Value = j.ListOfValue, Selected = j.ListOfValue == x.DefaultValue }).ToList();
Base on the above code, the viewdata["dropDown_e"] which is a dropdownlist successfully been generated. And now for each of the element, instead of using j.ListOfValue as Value, I want to use j.UserID as Value. Problem is j.UserID is a long type returned from database and Value is always expecting a string. I've tried j.UserID.ToString() but it has compile error. May I know how should I handle it?
What is a type of
correspondingDropDownValue
? Suppose it'sIQueryable<T>
, right? At first, you need to get all required fields from the database, then cast result toIEnumerable<T>
and only then - createSelectListItems
list. Something like this: