无法将类型'a.SaveResult'隐式转换为'System.Action <a.SaveResult>'

时间:2019-08-15 14:20:01

标签: c# entity-framework model-view-controller

我有一个程序,其中使用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 '?

0 个答案:

没有答案