我有一个程序,其中使用MVC控制器从服务中调用方法。我现在想通过此代码调用方法
[HttpPost("testname")]
[SwaggerOperation(OperationId = "a_testname")]
public Action<SaveResult> test(int i, List<lDTO> list)
{
return _Service.test(i, list);
}
方法
test(int i, List<lDTO> list)
只返回NotImplementedException。
我的问题是为什么我会收到错误消息无法将类型'a.SaveResult'隐式转换为'System.Action