asp.net-web-api2 – Web Api 2 Post – UrlHelper.Link不能返回null

前端之家收集整理的这篇文章主要介绍了asp.net-web-api2 – Web Api 2 Post – UrlHelper.Link不能返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个基本的Web API 2设置与一些基本的路由.

以下是插入的默认路线和帖子.当我调用帖子时,记录在数据库中完美创建,但是“CreatedAtRoute”调用返回500错误,说明:

ExceptionMessage: “UrlHelper.Link must not return null.”
ExceptionType: “System.InvalidOperationException”

为什么会收到这个错误

[RoutePrefix("api/casenotes")]
    public class CasenoteController : ApiController...



// POST api/Casenote
[Route("")]
[ResponseType(typeof(client_admission_casenote))]
    public async Task<IHttpActionResult> Postclient_admission_casenote   (client_admission_casenote client_admission_casenote)
{

  Request.GetRequestContext().IncludeErrorDetail = true;

  if (!ModelState.IsValid)
  {
      return BadRequest(ModelState);
  }

  db.client_admission_casenote.Add(client_admission_casenote);
  await db.SaveChangesAsync();

  return CreatedAtRoute("DefaultApi",new { id = client_admission_casenote.casenote_id },client_admission_casenote);
    }

解决方法

由于您正在使用属性路由..您必须命名您的路由,即
[Route(“api / books / {id}”,Name =“GetBookById”)]

并使用您的url.link()调用的路由名称

看到这里的细节.. http://www.asp.net/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2#route-names

原文链接:https://www.f2er.com/aspnet/250120.html

猜你在找的asp.Net相关文章