Я успешно настроил управление версиями API в своем проекте API Core 2.1.
http://localhost:8088/api/Camps/ATL2016/speakers?api-version=x.x
Версии 1.1
и 2.0
работают, но 1.0
дает сбой с неоднозначностью Get(string, bool)
Actions.
Базовый веб-сервер ASP.NET:
MyCodeCamp> fail: Microsoft.AspNetCore.Mvc.Routing.DefaultApiVersionRoutePolicy[1]
MyCodeCamp> Request matched multiple actions resulting in ambiguity. Matching actions:
MyCodeCamp.Controllers.Speakers2Controller.Get(string, bool) (MyCodeCamp)
MyCodeCamp> MyCodeCamp.Controllers.SpeakersController.Get(string, bool) (MyCodeCamp)
MyCodeCamp> fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1]
MyCodeCamp> An unhandled exception has occurred while executing the request.
MyCodeCamp> Microsoft.AspNetCore.Mvc.Internal.AmbiguousActionException: Multiple actions
matched. The following actions matched route data and had all constraints satisfied:
Контроллер Speakers2
украшен [ApiVersion("2.0")]
, поэтому действие Get(string, bool)
имеет версию 2.0, так почему же Versioning
не может отличить их друг от друга?
Microsoft.AspNetCore.Mvc.Versioning 3.0.0
(не удается установить более высокую версию из-за конфликтов версий)
Startup.cs:
services.AddApiVersioning(cfg =>
{ cfg.DefaultApiVersion = new ApiVersion(1, 1);
cfg.AssumeDefaultVersionWhenUnspecified = true;
cfg.ReportApiVersions = true; });
Контроллеры:
[Route("api/camps/{moniker}/speakers")]
[ValidateModel]
[ApiVersion("1.0")]
[ApiVersion("1.1")]
public class SpeakersController : BaseController
{
. . .
[HttpGet]
[MapToApiVersion("1.0")]
public IActionResult Get(string moniker, bool includeTalks = false)
[HttpGet]
[MapToApiVersion("1.1")]
public virtual IActionResult GetWithCount(string moniker, bool includeTalks = false)
[Route("api/camps/{moniker}/speakers")]
[ApiVersion("2.0")]
public class Speakers2Controller : SpeakersController
{
...
public override IActionResult GetWithCount(string moniker, bool includeTalks = false)