vote up 6 vote down star
3

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);
flag

3 Answers

vote up 10 vote down check
var dictionary = db
    .Table
    .Select(p => new { p.Key, p.Value })
    .AsEnumerable()
    .ToDictionary(kvp => kvp.Key, kvp => kvp.Value)
;
link|flag
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(). – Justice 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
vote up 3 vote down

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|flag
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
vote up 1 vote down

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|flag
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

Your Answer

Get an OpenID
or

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