I still do not know what to do. Do I need to store in another List?
This not working.
holdRow.Add(det);
Thanks for the help.
arep
holdRow.Add(det);
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Mar 15, 2013, 6:28 PM
I'd try moving this line:
DetailRecord det = new DetailRecord();
within the while loop so you create a new object for each read:
DetailRecord det = new DetailRecord();
A RepaskyPosted Mar 15, 2013, 10:37 PM
arep