Sorry but I'm at a loss. I'm trying to loop the following JSON object using Newtonsoft so that I can process some code
[{"FirstName":"Andrea","Middlename":"M.","LastName":"Smith"},{"FirstName":"Ronald","Middlename":"E.","LastName":"Jones"}]
What I need is a simple loop that will read the names and send to a database. So I want to
For .....
Dim FirstName as string =
Dim Middlename =""
Dim LastName = ""
Send to data base FirstName + " " + MiddleName + " " + LastName
Loop
Thanks for the help and if this is listed somewhere else I have not been able to find it