I am doing json serialization using NewtonSoft.Json
public class CommonBase { [JsonProperty(PropertyName = \"u_customer_id\")] public long CustomerId
I have solved this issue by changing CustomerId property as nullable.
public long? CustomerId { get; set; }