Hi!
Is there a way to create a cell with id?
What i expected, because it's mimicking propel:
var myBook = bookstore.books()
.setId(1)
.setTitle('Cold Winds')
.save();
But that obviously not the way how it works now.
Temporarily i added a method named create that just sends record as POST request instead of PUT, so i do:
var myBook = bookstore.books(1)
.setTitle('Cold Winds')
.create();
It works fine, but maybe there is a better way?
Thanks!
Hi!
Is there a way to create a cell with id?
What i expected, because it's mimicking propel:
But that obviously not the way how it works now.
Temporarily i added a method named
createthat just sends record as POST request instead of PUT, so i do:It works fine, but maybe there is a better way?
Thanks!