I have a list of string which is mapped to database in mongodb.
public List<string> subjects{get;set;}
The problem is when I get values from database for edit display , the magicsuggest shows "System.Collections.Generic.List`1[System.String] " in the html not the values of the field ?
Shouldn't it automatically display it or do i need to manually split the list to array or something and pass it to magicsuggest ?