using System.Collections.Generic;
using Newtonsoft.Json.Converters;
public static void Main()
""expiryDate"": ""2022-05-28"",
""storeName"": ""Main Store"",
""stockId"": 2018030010140000053,
""batchId"": 2018030010200000033,
var jsonSettings = new JsonSerializerSettings()
DefaultValueHandling = DefaultValueHandling.Ignore,
Formatting = Newtonsoft.Json.Formatting.Indented,
TypeNameHandling = TypeNameHandling.All,
NullValueHandling = NullValueHandling.Include,
Converters = { new ExpandoObjectConverter() }
var dataList = JsonConvert.DeserializeObject<List<ExpandoObject>>(json, jsonSettings);
foreach (IDictionary<string, object> item in dataList)
if (item.TryGetValue("newSaleRate", out value))
Console.WriteLine("Property exists: value = {0}", value == null ? "NULL" : value);
Console.WriteLine("Property does not exist.");