Convert generic List/Enumerable to DataTable?

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

    To convert a generic list to data table, you could use the DataTableGenerator

    This library lets you convert your list into a data table with multi-feature like

    • Translate data table header
    • specify some column to show

提交回复
热议问题