Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Breeze.js failing with Could not load file or assembly System.Web.Http.OData, Version=4.0.0.0

I'm trying out Breeze.Js and everything compiles and i have a breeze-decorated controller, but when trying to access the data I receive an error about an assembly which breeze.js has referenced, but which i cannot find anywhere.

The assembly in question is System.Web.Http.OData, Version=4.0.0.0

The only place i've found something about this namespace is at https://github.com/ASP-NET-MVC/aspnetwebstack/tree/master/src/System.Web.Http.OData but I cannot find any nuget package for it.

Does anyone have a solution for this?

like image 339
Mixitrixi Avatar asked Apr 11 '13 12:04

Mixitrixi


1 Answers

Check out the nuget package at http://nuget.org/packages/Microsoft.AspNet.WebApi.OData/.

Or do this from your package manager console.

Install-Package Microsoft.AspNet.WebApi.OData
like image 173
RaghuRam Nadiminti Avatar answered Oct 17 '22 07:10

RaghuRam Nadiminti