Ich bin mit MVC 4 Web-Api, die mit Visual Studio 2012 kommt.
Wie ich verstanden habe, werden Odata nicht automatisch geparst, aber wir müssen jetzt das Attribut [Queryable] zur Aktion hinzufügen.
Also habe ich es hinzugefügt:
public class TestController : ApiController
{
[Queryable]
public IQueryable<MyClass> GetMyClasses()
{
return ...;
}
}
aber ich erhalte einen Kompilierungsfehler:
The type or namespace name 'Queryable' could not be found (are you missing a using directive or an assembly reference?)
Wird odata noch unterstützt? und warum wird Queryable nicht als Attribut erkannt, wie hier aufgeführt.
Dankeschön