我是 web api 的新手,我编写了一段代码,在 IHttpActionResult 中返回数据表,我想知道返回数据表和列表或字典之间有什么区别。
这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using WebApplication2.BLL;
namespace WebApplication2.Controllers
{
public class HomeController : ApiController
{
public IHttpActionResult getpro()
{
var tabla= new Conexion().table();
tabla.TableName = "tablilla";
return Ok(tabla);
}
}
}
我正在邮递员中对此进行测试并且运行良好,但我想知道是否应该在响应或其他对象中发送列表。
繁花不似锦