{
public string Search { get; set; } = null;
public int GuildNum { get; set; } = -1;
public string SortingPropertyName { get; set; } = null;
public bool IsDescending { get; set; } = false;
public int? TpStatus { get; set; } = null;
public int[] Guilds { get; set; } = null;
}
отправляю GET'ом http://localhost/api/Tp?search=&page=0&pageSize=10&sortingPropertyName=&isDescending=false&tpStatus=&guilds=1%2C2%2C3%2C4%2C45
core 2.1 правда
А попробуй так http://localhost/api/Tp?search=&page=0&pageSize=10&sortingPropertyName=&isDescending=false&tpStatus=&guilds=1&guilds=2&guilds=3
попробуй атрибут на роутинг поставить и HttpGet. И укажи конктретный параметр из кверя в атрибуте fromQuery - у тебя имя аргумента и имя параметра в запросе не совпадают
Обсуждают сегодня