I have this JSON data on my REST API and I want to store it in my MySQL server
JSON Data
[
{
"res_order_num": "1",
"menu_code": "1",
"menu_quantity": "2",
"menu_total_price": "60",
"res_no": "1",
"menu_name": "Adobo Manok"
},
{
"res_order_num": "2",
"menu_code": "5",
"menu_quantity": "2",
"menu_total_price": "90",
"res_no": "1",
"menu_name": "Pritong Bangus"
}
]
So how do I store it in my MySQL.
datagridview? Is you have to fetch json data from api or give it to api to database save ?