get; set; }
public string Name { get; set; }
public int BookingTypeId { get; set; }
public BookingType BookingType { get; set; }
}
public class BookingType
{
public int Id { get; set; }
public ICollection<Book> Books { get; set; }
}
Привет! Ребята, как я могу игнорировать поле нулевого свойства в Swagger?
[JsonProperty("reserves", NullValueHandling = NullValueHandling.Ignore)] [JsonIgnore(Condition = JsonIgnoreCondition.WhenWriteNull)] Я использовал их, но это не сработало.
public ICollection<Book> Books { get; set; } Вот этот.
Что значит "игнорировать"?
Я использую гугл переводчик. "ignore in english"
Or wait. You mean you wanna make it show up as optional in JSON model?
the reserve array is redundant
Your Swagger model doesn't make any sense
Обсуждают сегодня