使用Entity Framework从数据库返回数据,以通过api控制器

时间:2016-02-16 08:49:09

标签: asp.net-mvc

我正在尝试使用带Web Api的ASP.Net MVC实现一个项目。我可以使用Entity Framework Database第一种方法生成.edmx文件和设计图。我添加了API控制器,然后尝试运行像http://localhost:52078/api/City这样的应用程序。它应该以xml或json格式返回表格数据。但我得到的结果如下:

<ArrayOfcity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/testAPI2.Models"/>

我无法收到City表的字段值。请帮我解决这个问题。

2 个答案:

答案 0 :(得分:1)

有关web api的基本知识,请点击下面的网址。 http://www.codeproject.com/Articles/659131/Understanding-and-Implementing-ASPNET-WebAPI

或发送问题的适当代码

答案 1 :(得分:0)

Api控制器:

 [HttpGet]
            public RestaurantMenuCompleteModel GetRestaurantMenu(int RestaurantId)
            {
                return _restaurantRepository.GetRestaurantComleteMenu(RestaurantId);
            }

<强> WebApi.config -

public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
          config.Routes.MapHttpRoute(
          name: "ActionApi",
          routeTemplate: "api/{controller}/{action}/{id}",
          defaults: new { id = RouteParameter.Optional }
          );
            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );
        }
    }

<强> URL:

的http:/本地主机:2031 / API /餐厅/ GetRestaurantMenu RestaurantId = 28