嗨,我有一个 ModelView
public class GridUser
{
public long id { get; set; }
public string username { get; set; }
public string name { get; set; }
public string email { get; set; }
public string surname { get; set; }
public DateTime createDate { get; set; }
public List<string> customfields { get; set; }
}
我无法绑定在 foreach 内部编写的字符串的字符串列表
.Columns(columns =>{
拜托,有人可以发布带有列表绑定的示例代码吗?