SqlDataReader - 如何将当前行转换为字典

发布于 2024-07-21 08:08:17 字数 191 浏览 9 评论 0 原文

有没有一种简单的方法可以将 SqlDataReader 当前行的所有列转换为字典?

using (SqlDataReader opReader = command.ExecuteReader())
{
// Convert the current row to a dictionary
}

谢谢

Is there an easy way to convert all the columns of the current row of a SqlDataReader to a dictionary?

using (SqlDataReader opReader = command.ExecuteReader())
{
// Convert the current row to a dictionary
}

Thanks

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

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

发布评论

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

评论(5

北凤男飞 2024-07-28 08:08:18

您可以使用 LINQ:

return Enumerable.Range(0, reader.FieldCount)
                 .ToDictionary(reader.GetName, reader.GetValue);

You can use LINQ:

return Enumerable.Range(0, reader.FieldCount)
                 .ToDictionary(reader.GetName, reader.GetValue);
贪了杯 2024-07-28 08:08:18

比这更容易吗?:

// Need to read the row in, usually in a while ( opReader.Read ) {} loop...
opReader.Read();

// Convert current row into a dictionary
Dictionary<string, object> dict = new Dictionary<string, object>();
for( int lp = 0 ; lp < opReader.FieldCount ; lp++ ) {
    dict.Add(opReader.GetName(lp), opReader.GetValue(lp));
}

我仍然不确定为什么您需要从一种类型的集合到另一种类型的特定转换。

Easier than this?:

// Need to read the row in, usually in a while ( opReader.Read ) {} loop...
opReader.Read();

// Convert current row into a dictionary
Dictionary<string, object> dict = new Dictionary<string, object>();
for( int lp = 0 ; lp < opReader.FieldCount ; lp++ ) {
    dict.Add(opReader.GetName(lp), opReader.GetValue(lp));
}

I'm still not sure why you would need this particular transformation from one type of collection to another.

凉薄对峙 2024-07-28 08:08:18

我在 2016 年 3 月 9 日遇到了这个问题,最终使用了 SLAks 提供的答案。 但是,我需要稍微修改一下:

dataRowDictionary = Enumerable.Range(0, reader.FieldCount).ToDictionary(i => reader.GetName(i), i=> reader.GetValue(i).ToString());

我从这个 StackOverflow 问题中找到了指导:将 dataReader 转换为字典

I came across this question on 3/9/2016 and ended up using the answer provided by SLaks. However, I needed to slightly modify it to:

dataRowDictionary = Enumerable.Range(0, reader.FieldCount).ToDictionary(i => reader.GetName(i), i=> reader.GetValue(i).ToString());

I found guidance from this StackOverflow question: convert dataReader to Dictionary

滥情空心 2024-07-28 08:08:18

它已经是一个 IDataRecord

这应该为您提供与字典相同的访问(通过键)。 由于行通常不会有超过几列,因此查找的性能应该不会有太大不同。 唯一重要的区别是“有效负载”的类型,即使在那里,您的字典也必须使用对象作为值类型,因此我给予 IDataRecord 优势。

It's already an IDataRecord.

That should give you just about the same access (by key) as a dictionary. Since rows don't typically have more than a few handfuls of columns, the performance of the lookups shouldn't be that different. The only important difference is the type of the "payload", and even there your dictionary would have to use object for the value type, so I give the edge to IDataRecord.

幼儿园老大 2024-07-28 08:08:18

GetValues 方法接受 & 输入一维数组中的所有值。
这有帮助吗?

GetValues method accepts & puts in, all the values in a 1D array.
Does that help?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文