I have a problem I cant make a Linq query which intersect my dictionary keys with list, and back to the origin dictionray without this which are gone.
var gg = request
.Number_Name
.Keys
.Intersect(_context.Users.Select(x => x.Phone))
.ToDictionary(t => t);
I tried something like this, but it doesnt work.