You can do this in aspnetcore using JsonPatchDocument
<a class="postlink" href="http://benfoster.io/blog/aspnet-core-json-patch-partial-api-updates">http://benfoster.io/blog/aspnet-core-js ... pi-updates</a>
Yep looks like you are right, sorry about that. Guess i will move it to the WebAPI version.
Had the same issue as you, its mainly because of the angular-cli latest beta is still having issues.
The current build from ABP is confirmed to work with angular-cli 1.0.0-beta.17
If you wish to make it work, can do this:
npm install -g rimraf
rimraf node_modules
Open up the project.json in the root of the angular abp app, and change
"angular-cli": "^1.0.0-beta.17",
to
"angular-cli": "1.0.0-beta.17",
then run
npm i
npm start
This will force the usage of angular-cli to be the version that works with abp, probably better until it comes out of BETA.
Had the same issue as you, its mainly because of the angular-cli latest beta is still having issues.
The current build from ABP is confirmed to work with angular-cli 1.0.0-beta.17
If you wish to make it work, can do this:
npm install -g rimraf
rimraf node_modules
Open up the project.json in the root of the angular abp app, and change
"angular-cli": "^1.0.0-beta.17",
to
"angular-cli": "1.0.0-beta.17",
then run
npm i
npm start
This will force the usage of angular-cli to be the version that works with abp, probably better until it comes out of BETA.