5
me trató de utilizar LINQ para convertir una fila de diccionario (fieldName -> ValorDelCampo)convertido dataReader Diccionario
return Enumerable.Range(0, reader.FieldCount)
.ToDictionary<string, object>(reader.GetName, reader.GetValue);
pero recibió el mensaje de error:
argumento Instancia: no se puede convertir de 'System.Collections.Generic.IEnumerable<int>'
a 'System.Collections.Generic.IEnumerable<string>'
¿Cómo corregir esto?
Véase también http://stackoverflow.com/a/4286071/292060 – goodeye