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

时间:2019-04-11 17:24:09

标签: c# datatable datacolumn

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

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

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

类似

GetColumn(dataTable, "foo")

那会回来

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

有什么可以做的吗?

2 个答案:

答案 0 :(得分:2)

尝试关注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();

        }
    }
}

答案 1 :(得分:-1)

不完全是。但您可以执行以下操作:

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,十进制,布尔等)一起使用,则可能需要阅读C# generics并实现一个通用方法。