gpt4 book ai didi

c# - 非泛型类型 'ActionResult' 不能与类型参数一起使用

转载 作者:太空宇宙 更新时间:2023-11-03 22:42:10 24 4
gpt4 key购买 nike

<分区>

我编写 webAPI Controller 并尝试从数据库中获取所有值

这是提醒类:

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; }
}

还有 Controller 代码:

[HttpGet]
public ActionResult<List<Reminder>> GetAll()
{
return _context.TodoItems.ToList();
}

我收到这个错误:

Severity Code Description Project File Line Suppression State Error CS0308 The non-generic type 'ActionResult' cannot be used with type arguments RemindersApi C:\Users\nemes\Source\Repos\GlobalMediatorTest\RemindersApi\RemindersApi\Controllers\ReminderController.cs 29 Active

我该如何解决这个问题?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com