我正在编写webAPI控制器,并尝试从数据库中获取所有值
这是提醒课程:
public class Reminder
{
public Guid Id { get; set; }
public string Subject { get; set; }
public string Notes { get; set; }
public DateTime RemindDate { get; set; }
public Guid AuthorId { get; set; }
public bool IsActive { get; set; }
public bool IsCancelled { get; set; }
}
并且有控制代码:
[HttpGet]
public ActionResult<List<Reminder>> GetAll()
{
return _context.TodoItems.ToList();
}
我收到此错误:
严重性代码描述项目文件行抑制状态 错误CS0308非通用类型'ActionResult'不能与类型参数RemindersApi C:\ Users \ nemes \ Source \ Repos \ GlobalMediatorTest \ RemindersApi \ RemindersApi \ Controllers \ ReminderController.cs 29一起使用
我该如何解决?