Serialize JSON to JSON Array (Nested JSON) for POST Request C#

This is what I’m trying to achieve. I’m trying to serialize my model into a JSON for post request to insert records { "Data": [ { "employee_num": "7812345", "code": "333", "startdate": "2020-10-03" }, { "employee_num": "2345789", "code": "444", "startdate": "2020-10-03" } ] } I’m stuck with this { "employee_num": "7812345", "code": "333", "startdate": "2020-10-03" }, … Read more