如何使用其列名从数据表中检索整个列



我有一个看起来像这样的数据表

|id | foo | bar |
| 0 | 321 | 33  |
| 1 | 100 |  4  |
| 2 | 355 | 23  |

我想使用列名作为参数检索整个列

类似的东西

GetColumn(dataTable, "foo")

那会回来

| foo | 
| 321 | 
| 100 | 
| 355 |

有什么东西可以做到这一点吗?

尝试以下 linq :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace ConsoleApplication108
{
    class Program
    {
        static void Main(string[] args)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("id", typeof(int));
            dt.Columns.Add("foo", typeof(int));
            dt.Columns.Add("bar", typeof(int));
            dt.Rows.Add(new object[] { 0 , 321 , 33  });
            dt.Rows.Add(new object[] { 1 , 100 , 4  });
            dt.Rows.Add(new object[] { 2 , 355 , 23  });
            List<int> results = dt.AsEnumerable().Select(x => x.Field<int>("foo")).ToList();
        }
    }
}

不完全是。但你可以做这样的事情:

private List<string> GetColumnValues(string columnName, DataTable dataTable)
{
    var colValues = new List<string>();
    foreach (DataRow row in datatable.Rows)
    {
        var value = row[columnName];
        if (value != null)
        {
            colValues.Add((string)value);
        }
    }
    return colValues;
}

如果你想要一些可以与其他基元类型(int、decimal、bool 等(一起使用的东西,你可能想要阅读 C# generics 并实现一个泛型方法。

相关内容

  • 没有找到相关文章

最新更新