aurelia-breeze
aurelia-breeze copied to clipboard
Everything you need to use Breeze with Aurelia
Would be very helpful to update the aurelia-breeze plugin to breezejs 2.0 and update readme to include installation with aurelia-cli
aurelia-binding has a new major version, so to avoid jspm forks should change dependency to "aurelia-binding": "^1.0.0-rc.1.0.0 || ^2.0.0" However jspm does allow semver ranges, so have to change dependency...
If I call an API (which throws an exception) using breeze's executeQuery method, the errorCallback function is never called. `var eq = new breeze.EntityQuery('TestError'); instance.manager.executeQuery( eq, function(data) { console.log('success') },...
I want to build an app with the skeleton-typescript-aspnetcore and use breeze. The skeleton works fine, but when I followed the aurelia-breeze guide to set breeze up, I used `...
The current aurelia-breeze.d.ts file has this as the first line: `import breeze from 'breeze-client';` This gives me the error: >ERROR in C:\my\path\my-project\node_modules\aurelia-breeze\dist\aurelia-breeze.d.ts (1,8): error TS1192: Module '"C:/my/path/my-project/node_modules/breeze-client/index"' has no default...
fetch error.data is not set Reinstate aurelia-fetch catch error processing removed in 2.2.0 Closes #44
The "ajax adapter didn't report error properly" v2.2.0 commit no longer sets an error's data. Use case: 500 errors (e.g. invalid save) no longer return error.message. The commit no longer...
I am trying to implement the aurelia-breeze library into a new aurelia application, and when the first query is run, the library is trying to download the Metadata and it...
I have tried everything I can think of and cannot get aurelia-breeze, breeze and typescript to play together. I've tried re-editing the type definitions and all sorts... I just always...
The readme.md file only shows how to setup using JSPM. It would be really nice to see how this should be setup for Webpack. (I get a `breeze is not...