I saw in a lot a different post that Breeze.js is supposed to work with any http served resource.
In Breeze Documentation, you always have references to OData urls.
For example, the following breeze code:
var query = breeze.EntityQuery()
.from("Customers")
.where("CompanyName", "startsWith", "C")
.orderBy("CompanyName");
Will result in the following OData request:
http://www.example.com/api/Northwind/Customers?$filter=startswith(CompanyName,'C') eq true&$orderby=CompanyName
Well That's nice, but I'm Using Django+Tastypie and it does not support OData parameters, so this request fail on my backend.
How am I supposed to change the way breeze.js generate it's request to API backend server? Did I missed something in Breeze doc? IThank you for your help.