Breeze.js error with the inability to load a file or assembly System.Web.Http.OData, Version = 4.0.0.0

I try to execute Breeze.Js and everything compiles, and I have a controller with breezes, but trying to access the data, I get a build error message referenced by breeze.js, but which I cannot find anywhere.

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

The only place I found something about this namespace is at https://github.com/ASP-NET-MVC/aspnetwebstack/tree/master/src/System.Web.Http.OData , but I can’t find the nuget package for it.

Does anyone have a solution for this?

+5
source share
1 answer

nuget http://nuget.org/packages/Microsoft.AspNet.WebApi.OData/.

.

Install-Package Microsoft.AspNet.WebApi.OData
+11

All Articles