将 DataRowCollection 转换为 NameValueCollection

发布于 2024-10-13 02:54:47 字数 100 浏览 3 评论 0原文

我需要一种优雅的方法将 DataRowCollection 转换为 NameValueCollection。

注意:在转换过程中,我需要一个可以调用变形器来整理键名的部分

I need an elegant way to convert a DataRowCollection to a NameValueCollection.

note: during the conversion I need a section where I can invoke an inflector to tidy up key names

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若能看破又如何 2024-10-20 02:54:47

您需要循环遍历行并手动添加所需的列。

var dt = new DataTable();
dt.Columns.Add("Id", typeof(int));
dt.Columns.Add("Name", typeof(string));
dt.Rows.Add(1, "Hello");
dt.Rows.Add(2, "World");
dt.Rows.Add(1, "Foo"); // dupe key

var nvc = new NameValueCollection();
foreach (DataRow row in dt.Rows)
{
    string key = row[0].ToString();
    // tidy up key here
    nvc.Add(key, row[1].ToString());
}

// display nvc
foreach (var key in nvc.AllKeys)
    Console.WriteLine("{0}: {1}", key, nvc[key]);

如果您对 Dictionary 感兴趣,您可以使用 ToDictionary,但是如果允许重复键,则这将不起作用。在这种情况下,另一个优雅的解决方案是使用 ToLookup

// optionally use a Func to do the tidying up
// or call an existing method or do it inline for simple operations
Func<string, string> tidyFunc = (s) => s.Trim();
var lookup = dt.Rows.Cast<DataRow>()
               .ToLookup(r => tidyFunc(r[0].ToString()), r => r[1].ToString());

foreach (var g in lookup)
{
    Console.WriteLine("Key: " + g.Key);
    foreach (var item in g)
        Console.WriteLine(item);
}

You need to loop over the rows and add the desired columns manually.

var dt = new DataTable();
dt.Columns.Add("Id", typeof(int));
dt.Columns.Add("Name", typeof(string));
dt.Rows.Add(1, "Hello");
dt.Rows.Add(2, "World");
dt.Rows.Add(1, "Foo"); // dupe key

var nvc = new NameValueCollection();
foreach (DataRow row in dt.Rows)
{
    string key = row[0].ToString();
    // tidy up key here
    nvc.Add(key, row[1].ToString());
}

// display nvc
foreach (var key in nvc.AllKeys)
    Console.WriteLine("{0}: {1}", key, nvc[key]);

If you're interested in a Dictionary you could use ToDictionary, however this won't work if duplicate keys are allowed. In that case another elegant solution would be to use ToLookup.

// optionally use a Func to do the tidying up
// or call an existing method or do it inline for simple operations
Func<string, string> tidyFunc = (s) => s.Trim();
var lookup = dt.Rows.Cast<DataRow>()
               .ToLookup(r => tidyFunc(r[0].ToString()), r => r[1].ToString());

foreach (var g in lookup)
{
    Console.WriteLine("Key: " + g.Key);
    foreach (var item in g)
        Console.WriteLine(item);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文