Gentlemen, I have generated a Linq List which contains about 130 or so records. Each record contains a center code and it's postal (Zip) code. I also have a SQL DB and table which provides the longitude and latitude of all postal codes. I am trying to iterate through the list, extract one record at a time and then run its zip code by the database to obtain its gps coordinates. I can build the list but the second "foreach" continues looping through the same record. I have tried nesting the second
Read More...