我很难摆脱自动完成中出现的重复条目。自动完成是从数据库动态生成的。
这是控件中用于自动完成的代码:
public ActionResult AutoCompletefootball()
{
var db = new footEntities();
string selection = this.Request.Params["term"].ToString();
return Json(db.football.Where(a => a.player.Name.StartsWith(selection)).Select(Adds => a.Player.Name), JsonRequestBehavior.AllowGet);
}
欢迎所有建议