Search results for query: *

  1. P

    Send Http Get request to a web api

    I am trying to send a get request to my web api project: [HttpGet] public async Task<IActionResult> GetArtists() { var artists = await (from artist in _dbContext.Artists select new { Id = artist.Id, Name =...
Back
Top Bottom