将 DataRowCollection 转换为 NameValueCollection
我需要一种优雅的方法将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要循环遍历行并手动添加所需的列。
如果您对
Dictionary
感兴趣,您可以使用ToDictionary
,但是如果允许重复键,则这将不起作用。在这种情况下,另一个优雅的解决方案是使用ToLookup
。You need to loop over the rows and add the desired columns manually.
If you're interested in a
Dictionary
you could useToDictionary
, however this won't work if duplicate keys are allowed. In that case another elegant solution would be to useToLookup
.