आप एक DataTable को जेनेरिक सूची में कैसे परिवर्तित करते हैं?


185

वर्तमान में, मैं उपयोग कर रहा हूँ:

DataTable dt = CreateDataTableInSomeWay();

List<DataRow> list = new List<DataRow>(); 
foreach (DataRow dr in dt.Rows)
{
    list.Add(dr);
}

क्या कोई बेहतर / जादुई तरीका है?


2
क्या आप एक सूची के साथ पूरा करने की कोशिश कर रहे हैं जो आप अपने DataRowCollection के साथ नहीं कर सकते हैं?
जेसन केली

मेरा देर हो चुकी है लेकिन आशा है कि उपयोगी हो जाएगा। वर्किंग सॉल्यूशन .. stackoverflow.com/a/58607820/9048996
Thameem

जवाबों:


276

यदि आप .NET 3.5 का उपयोग कर रहे हैं, तो आप DataTableExtensions.AsEnumerable(एक एक्सटेंशन विधि) का उपयोग कर सकते हैं और यदि आपको वास्तव में जरूरत है तो List<DataRow>इसके बजाय IEnumerable<DataRow>आप कॉल कर सकते हैं Enumerable.ToList:

IEnumerable<DataRow> sequence = dt.AsEnumerable();

या

using System.Linq;
...
List<DataRow> list = dt.AsEnumerable().ToList();

कैसे इसे बदलने के listलिए।
एसीपी

6
@ पांडिया: .NET में JSON में डेटा परिवर्तित करने के विभिन्न तरीके हैं। व्यक्तिगत रूप से मैंने हमेशा JSON.NET पुस्तकालय का उपयोग किया है, लेकिन अन्य दृष्टिकोण भी हैं।
जॉन स्कीट


1
@Jon Skeet: मैं DataRow में मूल्य प्राप्त करना चाहता हूं। क्या कोई विधि है? सूची की तरह पाने के बजाय। ItemArray [को ०]।
रमेश दुराई

@Jon, FYI: dt.AsEnumerable ()। ToList () 'System.Data.EnumerableRowCollection <System.Data.DataRow>' में 'ToList' की परिभाषा नहीं है
प्रदीप

66
List<Employee> emp = new List<Employee>();

//Maintaining DataTable on ViewState
//For Demo only

DataTable dt = ViewState["CurrentEmp"] as DataTable;

//read data from DataTable 
//using lamdaexpression


emp = (from DataRow row in dt.Rows

   select new Employee
   {
       _FirstName = row["FirstName"].ToString(),
       _LastName = row["Last_Name"].ToString()

   }).ToList();

ऊपर कोड बीसीएस काम नहीं कर सकता है। dt.Rows ने 'AsEnumerable' लागू नहीं किया है। इसे नीचे के रूप में ठीक किया जा सकता है: emp = (dt.AsEnumerable () में DataRow पंक्ति से नया कर्मचारी {_FirstName = row ["FirstName"] चुनें। ToString (), _astastName = row ["Last_Name"]। ToString ())}। ।सूची बनाने के लिए();
नवीन पंडित

37

C # 3.0 और System.Data.DataSetExtensions.dll के साथ,

List<DataRow> rows = table.Rows.Cast<DataRow>().ToList();

3
ऐसा करने से केवल 50% समय तक डेटारो पर एक फ़ॉर्चेक का उपयोग करने से प्रदर्शन में मदद मिली है।
लॉयड

33

आप उपयोग कर सकते हैं

List<DataRow> list = new List<DataRow>(dt.Select());

dt.Select()डेटा सारणी की एक सरणी के रूप में, आपकी तालिका में सभी पंक्तियों को वापस कर देगा, और Listनिर्माता शुरू में आपकी सूची को भरने के लिए तर्क के रूप में वस्तुओं के उस सरणी को स्वीकार करता है।


चुनें () को किसी भी पैरामीटर की आवश्यकता नहीं है। पैरामीटर रहित अधिभार सभी पंक्तियों को लौटाएगा।
कोन

धन्यवाद, मेरा उत्तर समायोजित करने से sugguestion फिट करने के लिए
Kibbee

15

आप एक एक्सटेंशन फ़ंक्शन बना सकते हैं:

public static List<T> ToListof<T>(this DataTable dt)
{
    const BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
    var columnNames = dt.Columns.Cast<DataColumn>()
        .Select(c => c.ColumnName)
        .ToList();
    var objectProperties = typeof(T).GetProperties(flags);
    var targetList = dt.AsEnumerable().Select(dataRow =>
    {
        var instanceOfT = Activator.CreateInstance<T>();

        foreach (var properties in objectProperties.Where(properties => columnNames.Contains(properties.Name) && dataRow[properties.Name] != DBNull.Value))
        {
            properties.SetValue(instanceOfT, dataRow[properties.Name], null);
        }
        return instanceOfT;
    }).ToList();

    return targetList;
}


var output = yourDataInstance.ToListof<targetModelType>();

काम नहीं करता है - dotnetfiddle.net/I22r2c देखें यह भी ध्यान दिया जाना चाहिए कि परावर्तन का उपयोग धीमा है और प्रदर्शन महत्वपूर्ण कोड में फिर से जोड़ा नहीं गया है।
एलमेन

आपको कॉलम के लिए डेटा प्रकार की जानकारी जोड़ने की आवश्यकता है। DataTable dt = new DataTable (); dt.Columns.Add ("id", टाइपोफ़ (Int32)); dt.Columns.Add ( "नाम", typeof (स्ट्रिंग)); dt.Columns.Add ("फू", टाइपोफ़ (डेटाइम)); for (int i = 0; मैं <= 1000; i ++) {dt.Rows.Add (i, "foo", DateTime.Now);}
राहुल गर्ग

अब काम करता है। धन्यवाद।
एलमेन

14

यदि आप "ID" int फ़ील्ड से मानों की एक सूची चाहते हैं, तो आप उपयोग कर सकते हैं ...

List<int> ids = (from row in dt.AsEnumerable() select Convert.ToInt32(row["ID"])).ToList();

12

मैंने इस उत्तर ( https://stackoverflow.com/a/24588210/4489664 ) से कोड में कुछ संशोधन किया है क्योंकि अशक्त प्रकारों के लिए यह अपवाद को लौटाएगा

public static List<T> DataTableToList<T>(this DataTable table) where T: new()
{
    List<T> list = new List<T>();
    var typeProperties = typeof(T).GetProperties().Select(propertyInfo => new
        {
            PropertyInfo = propertyInfo,
            Type = Nullable.GetUnderlyingType(propertyInfo.PropertyType) ?? propertyInfo.PropertyType
        }).ToList();

    foreach (var row in table.Rows.Cast<DataRow>())
    {
        T obj = new T();
        foreach (var typeProperty in typeProperties)
        {
            object value = row[typeProperty.PropertyInfo.Name];
            object safeValue = value == null || DBNull.Value.Equals(value)
                ? null
                : Convert.ChangeType(value, typeProperty.Type);

            typeProperty.PropertyInfo.SetValue(obj, safeValue, null);
        }
        list.Add(obj);
    }
    return list;
}

मैंने कक्षा को हटा दिया क्योंकि यह संरचना के साथ भी काम कर सकता है।
मिकी पेरेलस्टीन

यह बहुत अच्छा काम करता है, अच्छी नौकरी। अगर कोई भी कोड के साथ खेलना चाहता है, तो मैंने इस लिंक पर एक .net फिडेल
एलमेन

@Almenon मैंने छोटे संशोधन को जोड़ा है, इसमें प्रदर्शन में थोड़ी वृद्धि होनी चाहिए
बॉन्डरीक व्लादिमीर

11
using System.Data;


var myEnumerable = myDataTable.AsEnumerable();

List<MyClass> myClassList =
    (from item in myEnumerable
     select new MyClass{
         MyClassProperty1 = item.Field<string>("DataTableColumnName1"),
         MyClassProperty2 = item.Field<string>("DataTableColumnName2")
    }).ToList();

प्रतिभाशाली! आपने मेरा दिन बचा लिया
एनिनोमस खान


4

यहाँ एक DataTable एक्सटेंशन विधि है जो DataTable को जेनेरिक सूची में परिवर्तित करती है।

https://gist.github.com/gaui/a0a615029f1327296cf8

उपयोग:

List<Employee> emp = dtTable.DataTableToList<Employee>();

4

एक अधिक 'जादू' तरीका है, और इसके लिए .NET 3.5 की आवश्यकता नहीं है।

उदाहरण के लिए, यदि आप DBDatatable(एसक्यूएल में अद्वितीय व्यक्ति) का एक कॉलम वापस कर रहे थे , तो आप उपयोग कर सकते हैं:

Dim gList As New List(Of Guid)
gList.AddRange(DirectCast(DBDataTable.Select(), IEnumerable(Of Guid)))

4
// this is better suited for expensive object creation/initialization
IEnumerable<Employee> ParseEmployeeTable(DataTable dtEmployees)
{
    var employees = new ConcurrentBag<Employee>();

    Parallel.ForEach(dtEmployees.AsEnumerable(), (dr) =>
    {
        employees.Add(new Employee() 
        {
            _FirstName = dr["FirstName"].ToString(),
            _LastName = dr["Last_Name"].ToString()
        });
    });

    return employees;
}

3

DataTable.Select() वे उस क्रम में पंक्तियाँ नहीं देते हैं, जिस क्रम में वे मौजूद थे।

यदि आदेश महत्वपूर्ण है, तो मुझे लगता है कि डेटारो संग्रह पर पुनरावृत्ति हो रही है और सूची बनाना एक सही तरीका है कि आप जा सकते हैं या आप ओवरलोड का भी उपयोग कर सकते हैं DataTable.Select(string filterexpression, string sort)

लेकिन यह अधिभार SQL को प्रदान करने वाले सभी ऑर्डर (जैसे ऑर्डर द्वारा ऑर्डर ...) को संभाल नहीं सकता है।


3
DataTable dt;   // datatable should contains datacolumns with Id,Name

List<Employee> employeeList=new List<Employee>();  // Employee should contain  EmployeeId, EmployeeName as properties

foreach (DataRow dr in dt.Rows)
{
    employeeList.Add(new Employee{EmployeeId=dr.Id,EmplooyeeName=dr.Name});
}


1
        /* This is a generic method that will convert any type of DataTable to a List 
         * 
         * 
         * Example :    List< Student > studentDetails = new List< Student >();  
         *              studentDetails = ConvertDataTable< Student >(dt);  
         *
         * Warning : In this case the DataTable column's name and class property name
         *           should be the same otherwise this function will not work properly
         */

निम्नलिखित दो कार्य हैं जिनमें यदि हम एक डेटाटेबल और एक उपयोगकर्ता परिभाषित वर्ग पास करते हैं। इसके बाद डेटाटेबल डेटा के साथ उस वर्ग की सूची वापस आ जाएगी।

        public static List<T> ConvertDataTable<T>(DataTable dt)
        {
            List<T> data = new List<T>();
            foreach (DataRow row in dt.Rows)
            {
                T item = GetItem<T>(row);
                data.Add(item);
            }
            return data;
        }


        private static T GetItem<T>(DataRow dr)
        {
            Type temp = typeof(T);
            T obj = Activator.CreateInstance<T>();

            foreach (DataColumn column in dr.Table.Columns)
            {
                foreach (PropertyInfo pro in temp.GetProperties())
                {
                   //in case you have a enum/GUID datatype in your model
                   //We will check field's dataType, and convert the value in it.
                    if (pro.Name == column.ColumnName){                
                    try
                    {
                        var convertedValue = GetValueByDataType(pro.PropertyType, dr[column.ColumnName]);
                        pro.SetValue(obj, convertedValue, null);
                    }
                    catch (Exception e)
                    {         
                       //ex handle code                   
                        throw;
                    }
                        //pro.SetValue(obj, dr[column.ColumnName], null);
                }
                    else
                        continue;
                }
            }
            return obj;
        }

यह विधि फ़ील्ड के डेटाटाइप की जाँच करेगी, और डेटाटेबल मान को उस डेटाटाइप में परिवर्तित करेगी।

    private static object GetValueByDataType(Type propertyType, object o)
    {
        if (o.ToString() == "null")
        {
            return null;
        }
        if (propertyType == (typeof(Guid)) || propertyType == typeof(Guid?))
        {
            return Guid.Parse(o.ToString());
        }
        else if (propertyType == typeof(int) || propertyType.IsEnum) 
        {
            return Convert.ToInt32(o);
        }
        else if (propertyType == typeof(decimal) )
        {
            return Convert.ToDecimal(o);
        }
        else if (propertyType == typeof(long))
        {
            return Convert.ToInt64(o);
        }
        else if (propertyType == typeof(bool) || propertyType == typeof(bool?))
        {
            return Convert.ToBoolean(o);
        }
        else if (propertyType == typeof(DateTime) || propertyType == typeof(DateTime?))
        {
            return Convert.ToDateTime(o);
        }
        return o.ToString();
    }

पूर्ववर्ती विधि को कॉल करने के लिए, निम्नलिखित सिंटैक्स का उपयोग करें:

List< Student > studentDetails = new List< Student >();  
studentDetails = ConvertDataTable< Student >(dt); 

अपनी आवश्यकताओं के आधार पर छात्र वर्ग का नाम और dt मान बदलें। इस स्थिति में डेटाटेबल कॉलम का नाम और क्लास प्रॉपर्टी का नाम समान होना चाहिए अन्यथा यह फ़ंक्शन ठीक से काम नहीं करेगा।


1
आपके उत्तर के लिए धन्यवाद। यह बहुत अच्छा होगा यदि आप अपने कोड में एक छोटी व्याख्या और कुछ टिप्पणियाँ भी जोड़ेंगे। इससे लोगों को आपके उत्तर को बेहतर तरीके से समझने में मदद मिलती है।
आंद्रे हॉफमिस्टर

0

इसने मेरे लिए काम किया: कम से कम .Net फ्रेमवर्क 3.5 की आवश्यकता, नीचे दिए गए कोड प्रदर्शित करता है DataRow Generic.IEnumerable में बदल गया, comboBox1 का उपयोग बेहतर चित्रण के लिए किया गया है।

using System.Linq;

DataTable dt = new DataTable();            
dt = myClass.myMethod();                 
List<object> list = (from row in dt.AsEnumerable() select (row["name"])).ToList();
comboBox1.DataSource = list;

0

उत्पादन

public class ModelUser
{
    #region Model

    private string _username;
    private string _userpassword;
    private string _useremail;
    private int _userid;

    /// <summary>
    /// 
    /// </summary>
    public int userid
    {
        set { _userid = value; }
        get { return _userid; }
    }


    /// <summary>
    /// 
    /// </summary>

    public string username
    {
        set { _username = value; }
        get { return _username; }
    }

    /// <summary>
    /// 
    /// </summary>
    public string useremail
    {
        set { _useremail = value; }
        get { return _useremail; }
    }

    /// <summary>
    /// 
    /// </summary>
    public string userpassword
    {
        set { _userpassword = value; }
        get { return _userpassword; }
    }
    #endregion Model
}

public List<ModelUser> DataTableToList(DataTable dt)
{
    List<ModelUser> modelList = new List<ModelUser>();
    int rowsCount = dt.Rows.Count;
    if (rowsCount > 0)
    {
        ModelUser model;
        for (int n = 0; n < rowsCount; n++)
        {
            model = new ModelUser();

            model.userid = (int)dt.Rows[n]["userid"];
            model.username = dt.Rows[n]["username"].ToString();
            model.useremail = dt.Rows[n]["useremail"].ToString();
            model.userpassword = dt.Rows[n]["userpassword"].ToString();

            modelList.Add(model);
        }
    }
    return modelList;
}

static DataTable GetTable()
{
    // Here we create a DataTable with four columns.
    DataTable table = new DataTable();
    table.Columns.Add("userid", typeof(int));
    table.Columns.Add("username", typeof(string));
    table.Columns.Add("useremail", typeof(string));
    table.Columns.Add("userpassword", typeof(string));

    // Here we add five DataRows.
    table.Rows.Add(25, "Jame", "Jame@hotmail.com", DateTime.Now.ToString());
    table.Rows.Add(50, "luci", "luci@hotmail.com", DateTime.Now.ToString());
    table.Rows.Add(10, "Andrey", "Andrey@hotmail.com", DateTime.Now.ToString());
    table.Rows.Add(21, "Michael", "Michael@hotmail.com", DateTime.Now.ToString());
    table.Rows.Add(100, "Steven", "Steven@hotmail.com", DateTime.Now.ToString());
    return table;
}

protected void Page_Load(object sender, EventArgs e)
{
    List<ModelUser> userList = new List<ModelUser>();

    DataTable dt = GetTable();

    userList = DataTableToList(dt);

    gv.DataSource = userList;
    gv.DataBind();
}[enter image description here][1]

</asp:GridView>
</div>

0

हम परिवर्तित करने के लिए एक सामान्य विधि का उपयोग कर सकते DataTableकरने के लिए Listके बजाय स्वयं एक परिवर्तित DataTableकरने के लिएList

नोट: DataTable's ColumnNameऔर Type' s PropertyNameसमान होना चाहिए।

नीचे दी गई विधि को बुलाओ:

long result = Utilities.ConvertTo<Student>(dt ,out listStudent);

// Generic Method
public class Utilities
{
    public static long ConvertTo<T>(DataTable table, out List<T> entity)
    {
        long returnCode = -1;
        entity = null;

        if (table == null)
        {
            return -1;
        }

        try
        {
            entity = ConvertTo<T>(table.Rows);
            returnCode = 0;
        }

        catch (Exception ex)
        {
            returnCode = 1000;
        }

        return returnCode;
    }

    static List<T> ConvertTo<T>(DataRowCollection rows)
    {
        List<T> list = null;
        if (rows != null)
        {
            list = new List<T>();

            foreach (DataRow row in rows)
            {
                T item = CreateItem<T>(row);
                list.Add(item);
            }
        }

        return list;
    }

    static T CreateItem<T>(DataRow row)
    {
        string str = string.Empty;
        string strObj = string.Empty;

        T obj = default(T);

        if (row != null)
        {
            obj = Activator.CreateInstance<T>();
            strObj = obj.ToString();
            NameValueCollection objDictionary = new NameValueCollection();

            foreach (DataColumn column in row.Table.Columns)
            {
                PropertyInfo prop = obj.GetType().GetProperty(column.ColumnName);

                if (prop != null)
                {
                    str = column.ColumnName;

                    try
                    {
                        objDictionary.Add(str, row[str].ToString());
                        object value = row[column.ColumnName];
                        Type vType = obj.GetType();

                        if (value == DBNull.Value)
                        {
                            if (vType == typeof(int) || vType == typeof(Int16)
                                                     || vType == typeof(Int32)
                                                     || vType == typeof(Int64)
                                                     || vType == typeof(decimal)
                                                     || vType == typeof(float)
                                                     || vType == typeof(double))
                            {
                                value = 0;
                            }

                            else if (vType == typeof(bool))
                            {
                                value = false;
                            }

                            else if (vType == typeof(DateTime))
                            {
                                value = DateTime.MaxValue;
                            }

                            else
                            {
                                value = null;
                            }

                            prop.SetValue(obj, value, null);
                        }

                        else
                        {
                            prop.SetValue(obj, value, null);
                        }
                    }

                    catch(Exception ex)
                    {

                    }
                }
            }

            PropertyInfo ActionProp = obj.GetType().GetProperty("ActionTemplateValue");

            if (ActionProp != null)
            {
                object ActionValue = objDictionary;
                ActionProp.SetValue(obj, ActionValue, null);
            }
        }

        return obj;
    }
}

0

आप जेनेरिक सूची के लिए उपयोग करने के लिए जेनेरिक विधि का उपयोग कर सकते हैं

public static List<T> DataTableToList<T>(this DataTable table) where T : class, new()
{
    try
    {
        List<T> list = new List<T>();

        foreach (var row in table.AsEnumerable())
        {
            T obj = new T();

            foreach (var prop in obj.GetType().GetProperties())
            {
                try
                {
                    PropertyInfo propertyInfo = obj.GetType().GetProperty(prop.Name);
                    if (propertyInfo.PropertyType.IsEnum)
                    {
                        propertyInfo.SetValue(obj, Enum.Parse(propertyInfo.PropertyType, row[prop.Name].ToString()));
                    }
                    else
                    {
                        propertyInfo.SetValue(obj, Convert.ChangeType(row[prop.Name], propertyInfo.PropertyType), null);
                    }                          
                }
                catch
                {
                    continue;
                }
            }

            list.Add(obj);
        }

        return list;
    }
    catch
    {
        return null;
    }
}

0

DataTableजेनेरिक में परिवर्तितDictionary

public static Dictionary<object,IList<dynamic>> DataTable2Dictionary(DataTable dt)
{
    Dictionary<object, IList<dynamic>> dict = new Dictionary<dynamic, IList<dynamic>>();

    foreach(DataColumn column in dt.Columns)
    {
        IList<dynamic> ts = dt.AsEnumerable()
                              .Select(r => r.Field<dynamic>(column.ToString()))
                              .ToList();
        dict.Add(column, ts);
    }
    return dict;
}

0

एक्सटेंशन का उपयोग करें:

public static class Extensions
{
    #region Convert Datatable To List
    public static IList<T> ToList<T>(this DataTable table) where T : new()
    {
        IList<PropertyInfo> properties = typeof(T).GetProperties().ToList();
        IList<T> result = new List<T>();

        foreach (var row in table.Rows)
        {
            var item = CreateItemFromRow<T>((DataRow)row, properties);
            result.Add(item);
        }
        return result;
    }
    private static T CreateItemFromRow<T>(DataRow row, IList<PropertyInfo> properties) where T : new()
    {
        T item = new T();
        foreach (var property in properties)
        {
            property.SetValue(item, row[property.Name], null);
        }
        return item;
    }
    #endregion
}

0

DataTable पंक्तियों को कक्षा की सामान्य सूची में निर्दिष्ट करने के लिए

  List<Candidate> temp = new List<Candidate>();//List that holds the Candidate Class,
    //Note:The Candidate class contains RollNo,Name and Department
    //tb is DataTable
    temp = (from DataRow dr in tb.Rows
                        select new Candidate()
                        {
                            RollNO = Convert.ToInt32(dr["RollNO"]),
                            Name = dr["Name"].ToString(),
                            Department = dr["Department"].ToString(),

                        }).ToList();

0

डेटाटेबल को क्लास की जेनेरिक सूची में बदलने का सबसे आसान तरीका है

Newtonsoft.Json का उपयोग करना;

var json = JsonConvert.SerializeObject(dataTable);
var model = JsonConvert.DeserializeObject<List<ClassName>>(json);

0

आप दो सामान्य कार्यों का उपयोग कर सकते हैं

private static List<T> ConvertDataTable<T>(DataTable dt)
    {
        List<T> data = new List<T>();
        foreach (DataRow row in dt.Rows)
        {
            T item = GetItem<T>(row);
            data.Add(item);
        }
        return data;
    }
    private static T GetItem<T>(DataRow dr)
    {

        Type temp = typeof(T);
        T obj = Activator.CreateInstance<T>();

        foreach (DataColumn column in dr.Table.Columns)
        {
            foreach (PropertyInfo pro in temp.GetProperties())
            {
                if (pro.Name == column.ColumnName)
                    pro.SetValue(obj, dr[column.ColumnName].ToString(), null);
                else
                    continue;
            }
        }
        return obj;
    }

और निम्नलिखित के रूप में उपयोग करें

List<StudentScanExamsDTO> studentDetails = ConvertDataTable<StudentScanExamsDTO>(dt);

0
lPerson = dt.AsEnumerable().Select(s => new Person()
        {
            Name = s.Field<string>("Name"),
            SurName = s.Field<string>("SurName"),
            Age = s.Field<int>("Age"),
            InsertDate = s.Field<DateTime>("InsertDate")
        }).ToList();

काम करने के लिए लिंक DotNetFiddle उदाहरण

using System;
using System.Collections.Generic;   
using System.Data;
using System.Linq;
using System.Data.DataSetExtensions;

public static void Main()
{
    DataTable dt = new DataTable();
    dt.Columns.Add("Name", typeof(string));
    dt.Columns.Add("SurName", typeof(string));
    dt.Columns.Add("Age", typeof(int));
    dt.Columns.Add("InsertDate", typeof(DateTime));

    var row1= dt.NewRow();
    row1["Name"] = "Adam";
    row1["SurName"] = "Adam";
    row1["Age"] = 20;
    row1["InsertDate"] = new DateTime(2020, 1, 1);
    dt.Rows.Add(row1);

    var row2 = dt.NewRow();
    row2["Name"] = "John";
    row2["SurName"] = "Smith";
    row2["Age"] = 25;
    row2["InsertDate"] = new DateTime(2020, 3, 12);
    dt.Rows.Add(row2);

    var row3 = dt.NewRow();
    row3["Name"] = "Jack";
    row3["SurName"] = "Strong";
    row3["Age"] = 32;
    row3["InsertDate"] = new DateTime(2020, 5, 20);
    dt.Rows.Add(row3);

    List<Person> lPerson = new List<Person>();
    lPerson = dt.AsEnumerable().Select(s => new Person()
    {
        Name = s.Field<string>("Name"),
        SurName = s.Field<string>("SurName"),
        Age = s.Field<int>("Age"),
        InsertDate = s.Field<DateTime>("InsertDate")
    }).ToList();

    foreach(Person pers in lPerson)
    {
        Console.WriteLine("{0} {1} {2} {3}", pers.Name, pers.SurName, pers.Age, pers.InsertDate);
    }
}   

public class Person
{
    public string Name { get; set; }
    public string SurName { get; set; }
    public int Age { get; set; }
    public DateTime InsertDate { get; set; }
}

}

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.