public ActionResult GetTags() { List <Models.OmgevingsBoek_Models.Tag> tags = bs.GetTagList(); List <SimpleTag> stl = new List <SimpleTag>(); List <String> tagList = new List <String>(); foreach (Models.OmgevingsBoek_Models.Tag tag in tags) { stl.Add(new SimpleTag() { Id = tag.ID, Naam = tag.Naam }); tagList.Add(tag.Naam); } return(Json(JsonConvert.SerializeObject(tagList), JsonRequestBehavior.AllowGet)); }