我有下表
+-------+--------+----------+
| catid | name | quantity |
+-------+--------+----------+
| 1 | table | 10 |
| 2 | chair | 5 |
| 2 | chair | 10 |
| 1 | table | 10 |
| 2 | chair | 15 |
| 3 | pencil | 20 |
+-------+--------+----------+
使用 LINQ 我想对具有相同名称 catid 的行的数量求和并将其保存到同一个数据表中
所以结果就是这张表
+-------+--------+----------+
| catid | name | quantity |
+-------+--------+----------+
| 1 | table | 20 |
| 2 | chair | 30 |
| 3 | pencil | 20 |
+-------+--------+----------+