我试图从数据库中的表中检索所有不同的月份,但它一直在System.Collections.Generic.List1[System.String]前端给我文本而不是数据。
System.Collections.Generic.List1[System.String]
var months = _db.Users.ToList().Select(o => o.dt_created.ToString("MMMM")).ToList(); ViewBag.Months = months;
我究竟做错了什么?
陪伴而非守候
相关分类