While with ASP.NET Core 2.2 it works perfectly, with ASP.NET Core 3.0 Preview 9, with the same Controller, I get 405 Method Not Allowed:
[HttpPost]
public async Task<ActionResult<LocalizedString>> Add(ViewModel viewModel)
Why I have to add [HttpPost("{id}")] now to get it works?