未找到与所有表的请求URI(...)匹配的HTTP资源

时间:2015-02-19 21:08:36

标签: asp.net http odata entity-framework-6

this tutorial为指导(OData / EntityFramework / Asp.Net)。

我可以在root上执行一个简单的GET命令。

{
"@odata.context": "http://localhost:49624/$metadata",
"value": [
    {
        "name": "Appointments",
        "kind": "EntitySet",
        "url": "Appointments"
    },

    ......

    {
        "name": "Clients",
        "kind": "EntitySet",
        "url": "Clients"
    }
]
}

但是比这更复杂的东西给了我一个错误信息。 (我正在使用null routePrefix。)

http://localhost:49624/Services

给我:

{
    "Message": "No HTTP resource was found that matches the request URI 'http://localhost:49624/Services'.",
    "MessageDetail": "No type was found that matches the controller named 'Services'."
}

这是我的超级简单GET

[EnableQuery]
public IQueryable<Service> Get()
{
    return db.Services;
}

如果重要,我正在使用Postman来测试这些命令。虽然我认为这是一个非因素。

我有一个数据库&amp;每个表都有一个DbSet。我不知道为什么我不能访问这些。

WebApiConfig:

        config.MapHttpAttributeRoutes();

        ODataModelBuilder builder = new ODataConventionModelBuilder();
        builder.EntitySet<Appointment>("Appointments");
        builder.EntitySet<Service>("Services");
        builder.EntitySet<Employee>("Employees");
        builder.EntitySet<Client>("Clients");

        config.MapODataServiceRoute(
            routeName: "ODataRoute",
            routePrefix: null,
            model: builder.GetEdmModel());

我很抱歉,如果这是一个基本问题,但我对这一切都很陌生,已经在这个墙上已经太久了哈哈。

1 个答案:

答案 0 :(得分:5)

Jan Hommes上面指出控制器类需要多元化(在我的例子中是ServiceController - &gt; ServicesController)