Good Day Guys,
How to pass multiple parameter in blazor GetFromJsonAsync, I get error when using this code.
blazor webassembly
data= await http.GetFromJsonAsync<dataobject[]>($"api/Sample/Get/{id}/{date}");
.net core api
[HttpGet("Get/{id}/{date}")]
public ActionResult<List<dataobject>> Get(string id, string date)
{
}