Convert generic List/Enumerable to DataTable?

后端 未结 27 2182
臣服心动
臣服心动 2020-11-21 23:20

I have few methods that returns different Generic Lists.

Exists in .net any class static method or whatever to convert any list into a datatable? The only thing tha

27条回答
  •  时光说笑
    2020-11-21 23:45

    Another approach is the above:

      List lst = getdata();
      string json = Newtonsoft.Json.JsonConvert.SerializeObject(lst);
      DataTable pDt = JsonConvert.DeserializeObject(json);
    

提交回复
热议问题