I'm trying to load a list of KeyValuePairs from an EF / Linq query like this: ...return (from o in context.myTable
select new KeyValuePair<int, string>(o.columnA, o.columnB)).ToList();
...My problem is that this results in the error ..."Only parameterle...