up vote 21 down vote favorite
8
share [g+] share [fb]

How do I properly convert two columns from SQL (2008) using Linq into a Dictionary (for caching)?

I currently loop through the IQueryable b/c I can't get the ToDictionary method to work. Any ideas? This works:

var query = from p in db.Table
            select p;

Dictionary<string, string> dic = new Dictionary<string, string>();

foreach (var p in query)
{
    dic.Add(sub.Key, sub.Value);
}

What I'd really like to do is something like this, which doesn't seem to work:

var dic = (from p in db.Table
             select new {p.Key, p.Value })
            .ToDictionary<string, string>(p => p.Key);

But I get this error: Cannot convert from 'System.Linq.IQueryable' to 'System.Collections.Generic.IEnumerable'

Answer (thanks!):

var dic = db
        .Table
        .Select(p => new { p.Key, p.Value })
        .AsEnumerable()
        .ToDictionary(k=> k.Key, v => v.Value);
link|improve this question

feedback

4 Answers

up vote 33 down vote accepted
var dictionary = db
    .Table
    .Select(p => new { p.Key, p.Value })
    .AsEnumerable()
    .ToDictionary(kvp => kvp.Key, kvp => kvp.Value)
;
link|improve this answer
Sorry, I may have not been clear, I've tried thie before, but this creates a Dictionary<string, #Anonymous Type>, not Dictionary<string, string> – Codewerks Oct 28 '08 at 22:57
Try kvp => kvp.Value as string. The point of the answer was .AsEnumerable(). – yfeldblum Oct 28 '08 at 23:01
Thanks, yeah I figured AsEnumerable was needed, but the ToDictionary call still doesn't work. Both columns are varchars in SQL, so they come back as strings, but I can't figure out how to get it to stuff into a Dic.... – Codewerks Oct 28 '08 at 23:04
figued it out, thanks for your help! – Codewerks Oct 28 '08 at 23:08
feedback

You are only defining the key, but you need to include the value also:

var dic = (from p in db.Table
             select new {p.Key, p.Value })
            .ToDictionary<string, string>(p => p.Key, p=> p.Value);
link|improve this answer
Tried this as well before, but this throws a build error, "The name 'p' does not exist in the current" – Codewerks Oct 28 '08 at 23:01
figured it out, thanks for your help! – Codewerks Oct 28 '08 at 23:10
You're welcome :-) – CMS Oct 28 '08 at 23:11
post the correction for the rest of us please – Anthony Nov 15 '11 at 14:36
feedback

Thanks guys, your answers helped me fix this, should be:

var dic = db
        .Table
        .Select(p => new { p.Key, p.Value })
        .AsEnumerable()
        .ToDictionary(k=> k.Key, v => v.Value);
link|improve this answer
3  
The reason you need AsEnumerable() is because LINQ to SQL doesn't mix local and remote (SQL) processing so this causes the first part to execute on the SQL server and then the final subsequent part to execute locally using LINQ to Objects which can do Dictionarys :) – DamienG Oct 29 '08 at 0:57
Makes sense. Also, the second parameter in ToDictionary needs its own Func arguments, which was tripping me up earlier. – Codewerks Oct 29 '08 at 1:33
feedback

Why would you create an anonymous object for every item in the table just to convert it?

You could simply use something like: IDictionary<string, string> dic = db.Table.ToDictionary(row => row.Key, row => row.Value); You may need to include an AsEnumerable() call between Table and ToDictionary(). I don't know the exact type of db.Table.


Also correct the first sample, your second loop variable is mismatching at declaration and usage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.