Я пытаюсь работать с ядром dotnet и MongoDB, это мой код,
[HttpGet]
[Route("/v1/flight/airports")]
[ValidateModelState]
[SwaggerOperation("GetAirports")]
[SwaggerResponse(statusCode: 200, type: typeof(List<Airport>), description: "successful operation")]
public virtual ActionResult<List<Airport>> GetAirports()
{
var air = _airportsService.Get();
return _airportsService.Get();
}
получение всех значений при отладке,
но при возврате получая пустой массив фигурных скобок в почтальоне, что мне здесь не хватает?