如何使用 lambda 表达式或使用任何其他逻辑转换数据?
我有一个数据表,其中包含这种格式的数据。我想将其转换为另一种格式。 实现这一目标的最简单方法是什么?也许使用 lambda 表达式。我正在使用 C# 4.0
dattable1:
seq id Amt
=============================
1 00782 10
2 00782 20
3 00782 30
1 003850 40
2 003850 50
3 003850 60
1 005723 70
2 005723 80
3 005723 90
To be stored in another datatable or list in this format
1 00782 003850 005723 10 40 70
2 00782 003850 005723 20 50 80
3 00782 003850 005723 30 60 90
示例 2
dattable1:
seq id Amt
=============================
1 00782 10
1 003850 40
1 005723 70
To be stored in another datatable or list in this format
1 00782 003850 005723 10 40 70
I have a DataTable which contains data in this format. I want to convert it to another format.
What is the simplest way to achieve this? maybe using lambda expression. I am using
C# 4.0
dattable1:
seq id Amt
=============================
1 00782 10
2 00782 20
3 00782 30
1 003850 40
2 003850 50
3 003850 60
1 005723 70
2 005723 80
3 005723 90
To be stored in another datatable or list in this format
1 00782 003850 005723 10 40 70
2 00782 003850 005723 20 50 80
3 00782 003850 005723 30 60 90
example 2
dattable1:
seq id Amt
=============================
1 00782 10
1 003850 40
1 005723 70
To be stored in another datatable or list in this format
1 00782 003850 005723 10 40 70
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将生成与您要求的内容相匹配的输入。
[编辑]
对于“所有场景”:
输出:
This will generate the input that matches what you asked for.
[Edit]
For "all scenarios":
Output: