将SQL表数据提取到嵌套字典中

时间:2019-01-11 15:44:26

标签: c#

我是C#编程的新手,将对解决此linq查询有所帮助。

我想使用linq查询将SQL数据库表拉入嵌套字典,其中表ID将是字典中的键,而嵌套字典将具有其他表列及其各自的行条目值。

示例:

column1, column2, column3,  column4.....etc
'1',          23,   'abc'    'Loise'
'2',          56,   'def'    'Nary'
'3',          34,   'ghi'    'John'
'4',          67,   'jkl'    'Grace' 


var query = (from d in c.xxxxxxx 
             select d).ToDictionary(s => s.indx); 

我只希望提取非空列值。

0 个答案:

没有答案