我在我的应用程序中使用 linq2sql 我只是坚持这个简单的查询。
我的存储过程返回以下
id order type text
1 1 header Personal details
2 2 body text Name
3 3 body text Address
4 4 body text Pincode
5 5 body text Age
6 6 body text DOB
7 7 header Employment details
8 8 body text company name
9 9 body text role
10 10 body text salary
11 11 header FAQ
12 12 sub header what happens if i leave early?
13 13 body text bonus amount
我喜欢在Dictionary<string,List<myType>>
class mytype
{
string type;
string text;
}
我需要的输出将是
personal details , <body text ,Name>
<body text ,Address>
<body text ,Pincode>
<body text ,age>
<body text ,DOB>
Empolyment details, <body text ,company Name>
<body text ,role>
<body text ,salary>
谁能告诉我如何实现这个linq?