Breeze will solve all my problems but I'm pretty stucked at the beginning and the doc is a lot confused, at least to me. I just wanna to know how to get data from a web service, follow some question:
What scripts that i need to include? just breeze.js or q.js and angular adapter too?
On brezze doc theres an example to retrieve "employes" like this:
manager.executeQuery(breeze.EntityQuery.from("Employees"))
.then(function(data) { $scope.employees = data.results; });
What this ".from("Employees")" does? I'm dealing with web service this "Employees" should'nt be an URL?