Отобразить объект JSON в массив свойств класса C # - PullRequest
0 голосов
/ 13 октября 2019

JSON

{
"SoftHoldIDs": 444,
"AppliedUsages": [
    {
        "SoftHoldID": 444,
        "UsageYearID": 223232,
        "DaysApplied": 0,
        "PointsApplied": 1
    }
],
"Guests": [
    1,
    2
]

} В приведенном выше JSON SoftholdIDs является целым числом, а AppliedUsages является свойством массива класса в C # Model

Проблема заключается в том, как мы можем сопоставить JSON со свойством класса. Код класса

  public class ReservationDraftRequestDto
{

    public int SoftHoldIDs { get; set; }
    public int[] Guests { get; set; }
    public AppliedUsage[] AppliedUsages { get; set; }

}


public class AppliedUsage
{
    public int SoftHoldID { get; set; }
    public int UsageYearID { get; set; }
    public int DaysApplied { get; set; }
    public int PointsApplied { get; set; }
}

Ниже приведен код для отображения

ReservationDraftRequestDto reservationDto = null;

        dynamic data  = await reservationDraftRequestDto.Content.ReadAsAsync<object>();
                    reservationDto = JsonConvert.DeserializeObject<ReservationDraftRequestDto>(data.ToString());

Ответы [ 2 ]

1 голос
/ 13 октября 2019

Вам нужно изменить

dynamic data  = await reservationDraftRequestDto.Content.ReadAsAsync<object>();

на

string data = await reservationDraftRequestDto.Content.ReadAsStringAsync();

, это будет читать ваш ответ как строку

, затем делать

reservationDto = JsonConvert.DeserializeObject<ReservationDraftRequestDto>(data);
0 голосов
/ 13 октября 2019

эта работа

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp2
{
         class Program
    {
        static void Main(string[] args)
        {
            string json = @"{""SoftHoldIDs"": 444,""AppliedUsages"": [    {""SoftHoldID"": 444,""UsageYearID"": 223232,""DaysApplied"": 0,""PointsApplied"": 1}],""Guests"": [ 1, 2]}";

            Rootobject reservationDto = JsonConvert.DeserializeObject<Rootobject>(json.ToString());

            Debug.WriteLine(reservationDto.SoftHoldIDs);
            foreach (var guest in reservationDto.Guests)
            {

                Debug.WriteLine(guest);
            }

        }
    }

    public class Rootobject
    {
        public int SoftHoldIDs { get; set; }
        public Appliedusage[] AppliedUsages { get; set; }
        public int[] Guests { get; set; }
    }

    public class Appliedusage
    {
        public int SoftHoldID { get; set; }
        public int UsageYearID { get; set; }
        public int DaysApplied { get; set; }
        public int PointsApplied { get; set; }
    }


}

Сначала создайте класс, копирующий json как класс с visualstudio. Затем у вас есть двойная кавычка в JSON Response, так что справьтесь с этим Json.NET: десерилизация с двойными кавычками

...