SqlDataReader - 如何将当前行转换为字典
有没有一种简单的方法可以将 SqlDataReader 当前行的所有列转换为字典?
using (SqlDataReader opReader = command.ExecuteReader())
{
// Convert the current row to a dictionary
}
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 LINQ:
You can use LINQ:
比这更容易吗?:
我仍然不确定为什么您需要从一种类型的集合到另一种类型的特定转换。
Easier than this?:
I'm still not sure why you would need this particular transformation from one type of collection to another.
我在 2016 年 3 月 9 日遇到了这个问题,最终使用了 SLAks 提供的答案。 但是,我需要稍微修改一下:
我从这个 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:
I found guidance from this StackOverflow question: convert dataReader to Dictionary
它已经是一个
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.
GetValues 方法接受 & 输入一维数组中的所有值。
这有帮助吗?
GetValues method accepts & puts in, all the values in a 1D array.
Does that help?