How can I pass a list of objects through an url to an ASP.NET Web API to query a database table?
I need to basically pass a list of objects each has 3 parameters variable name, operator, and value. I have tried using public async Task<ActionResult> GetAPIData([FromQuery] Condition[] conditions) where condition is public class Condition { public string variable { get;…