score:2

Accepted answer

Augmenting the answer of @AleksAndreev a bit:

myObjects
    .Where(x => sampleDictionary.ContainsKey(x))
    .Select(x => new Referencer { name = x.name, objectDictionary = sampleDictionary[x.name] });

Related Query

More Query from same tag