Convert generic List/Enumerable to DataTable?

后端 未结 27 2225
臣服心动
臣服心动 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:40

    I think it's more convenient and easy to use.

       List _lobj= new List(); 
        var json = JsonConvert.SerializeObject(_lobj);
                    DataTable dt = (DataTable)JsonConvert.DeserializeObject(json, (typeof(DataTable)));
    

提交回复
热议问题