Skip to content

AdminAdmin (Product Manager, Breeze.js)

My feedback

15 results found

  1. 79 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 
  2. 7 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Agree that this is a good idea. Why not contribute it yourself?

  3. 72 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Michael,

    We're definitely looking into this. In the meantime, please have a look at this previous request:

    http://breezejs.uservoice.com/forums/173093-breeze-feature-suggestions/suggestions/3618196-use-websockets-signalr-to-push-updated-objects-ins

  4. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Recent updates to Visual Studio 2012 (specifically Update 3) have broken the Breeze SPA VSIX templates, and with Visual Studio Update 4 just around the corner, we expect unanticipated changes to Visual Studio will break the templates yet again.

    We plan to update the Breeze SPA templates to be compatible with Visual Studio 2012 Update 4 shortly after it goes live.

  5. 26 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Related to this topic, Infragistics blogged about how they are using one of their solutions to enable grids in SPAs.

    It's worth checking out:

    http://www.infragistics.com/community/blogs/angel_todorov/archive/2013/08/06/using-the-ignite-ui-grid-and-breeze-js-in-a-hot-towel-spa-a-complete-crud-app.aspx

  6. 932 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    To accelerate the development of this particular feature we are seeking user support through crowdfunding.

    Want to learn more? Send us an email at breezeadmin@ideablade.com and we’ll send you details on how you can participate.

    Thanks for helping us make BreezeJS the best open source project on the planet!

  7. 214 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    The reason we create a single POST for saves with WebApi is that it is by far the easiest and most compact way to send a complete bundle of entities to the server for the purpose of a save. However, nothing in Breeze is tied down to this. In fact, the Breeze OData adapter does exactly what you suggests, except that in order to accomplish it we have to create a multipart-mime message that internally contains a collection of put/patch and delete requests. The multipart-mime is necessary for transactional support. We do it this way because this is what the OData spec specifies.

    In your request, you seem to be saying that the developer could use a REST API for saving a single entity, and a batch API (WebApi or OData batch) for saving all changes at once. This seems like the road to partial saves and all their problems.

    I like the idea of supporting REST urls. Our WebApi implementation supports GET in a RESTful manner (e.g. /breeze/northwind/Customers), and we could add support for the getting a single customer via /breeze/northwind/Customer/4321.

    Updates are another matter. The answers to this SO question about REST transactions imply that you should treat a “transaction” as its own resource. However, the answers disagree in the specifics. Some suggest that the transaction should first be created, then the resources added to it in separate requests, then committed in a final request. Painful.

    http://stackoverflow.com/questions/147207/transactions-in-rest

    We already give SaveChanges its own URL, to which we POST, which appropriately captures the non-idempotent semantics of the save.

  8. 6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Roger that. Moving this back to under review.

    Frizzy, will you please give us more information on your use case for this request?

    Given that Breeze supports auto-generated keys, and Breeze supports multi-part keys, what scenarios do you find using both at the same time to be helpful?

    Thanks,

    John

  9. 76 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    It isn't KO specific, but this our validation topic (and the DocCode sample) might help you:

    http://www.breezejs.com/documentation/validation

    http://www.breezejs.com/samples/doccode

    Please let us know.

    Thanks,

    John

  10. 14 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    Ed, can you provide a bit more information on what you'd like to see. A use case perhaps?

    Thanks,

    John

  11. 74 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    AdminAdmin (Product Manager, Breeze.js) commented  · 

    You can reuse the same EDMX with Breeze and DevForce (provided you're not using inheritance or complex types at this time). The one down side is that you can’t share the server-side query and save interceptors.

  12. 95 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    AdminAdmin (Product Manager, Breeze.js) shared this idea  · 
  13. 8 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    AdminAdmin (Product Manager, Breeze.js) shared this idea  · 
  14. 5 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    AdminAdmin (Product Manager, Breeze.js) shared this idea  · 
  15. 6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    AdminAdmin (Product Manager, Breeze.js) shared this idea  · 

Feedback and Knowledge Base