I have problem consuming my OData with Breeze. My api is hosted on another server, and I\'m using asp.net web api 2.0 (which comes with VS 2013 preview). I know web api is prope
var cors = new EnableCorsAttribute( "http://localhost:7122/", "*", "*", "DataServiceVersion, MaxDataServiceVersion" ); config.EnableCors(cors);
Try adding DataServiceVersion and MaxDataServiceVersion to your EnableCorsAttribute. This worked for me. I found it here.
DataServiceVersion
MaxDataServiceVersion
EnableCorsAttribute