breeze Questions

2

Solved

I'm trying to filter entities based on a collection of child entities. Here are my entities (EF POCO's): public class Customer { public int Id { get; set; } public string Name { get; set; } pub...
Pardon asked 29/4, 2013 at 12:41

2

I'm trying to send an object as a parameter through Breeze without success. Using the following code I can send a primitive type: Client: var query = EntityQuery .from('account/authenticate') ...
Shroyer asked 4/4, 2013 at 15:21

1

Solved

This is my trial project using breeze/angular/EF. I don't understand why I get this error because I thought I had the same structure working before. public class TshirtOrder { public int Id { get...
Dele asked 7/11, 2013 at 5:16

3

I am using the Angular/Breeze SPA template in visual studio 2012. I have added an unmapped property in the TodoList server model. [NotMapped] public string MyUnmappedProperty{ get{return "testStri...
Rawdan asked 2/8, 2013 at 7:31

2

Solved

I have the following Entity: public class Invoice { [Key] public int Id { get; set; } public DateTime? ArchiveDate { get; set; } public DateTime? ClotureDate { get; set; } ... } I would lik...
Groscr asked 31/10, 2013 at 16:21

1

Solved

I have recently updated all of my nuget packages to the latest for EF6, breeze 1.4.5, system.web.http.odata 5.0.0.0, and all the other good bits available. Now, with one query that contains an exp...
Bellied asked 29/10, 2013 at 20:43

3

Solved

I've still not quite got a complete understanding of promises so apologies if this is a simple misunderstanding. I have a function for deleting an item on a page but I have a specific behaviour de...
Apraxia asked 21/10, 2013 at 22:45

1

I am so impressed with Breeze that I decided to start collecting JavaScript frameworks / libraries which are Breeze compatible like http://www.asp.net/single-page-application/overview/templates/bre...
Certitude asked 21/10, 2013 at 21:16

1

I have a .net 4.5 Web Api with OData EntitySetController In client side I got the following js files loaded jquery.min.js q.min.js datajs-1.1.1.min.js breeze.debug.js toastr.min.js angular.js w...
Brinson asked 1/8, 2013 at 6:36

3

Solved

I'm looking into BreezeJs and there samples are using Q.js for promises to handle asynchronous calls. John Papa is also using Q. JQuery has promises as well. What are the differences between the tw...
Assizes asked 28/11, 2012 at 17:15

2

Solved

Hopefully someone has a better insight into Breeze's Extended entities, because I'm stumped! So, I have created a partial class (WO_Rout) on the server side (Web API using Breeze's API) and created...
Bedard asked 19/9, 2013 at 15:10

4

Solved

Inspired by John Papa's video at Pluralsight, I started learning SPA. It appears pretty interesting. However, before I fully jump in, I'd like to clarify some of my questions. From what I learnt,...
Peabody asked 25/7, 2013 at 22:45

1

I have a parent-child relationship (one-to-many). I am able to create children but the delete fails. I create a child, save it, but when I delete I get: A foreign key value cannot be inserted beca...
Kingcraft asked 31/8, 2013 at 16:55

2

Solved

We are adding additional properties to our objects on the server that we do not track in the database. The data gets returned to the client but the object materialized by breeze does not have it as...
Irksome asked 23/7, 2013 at 18:12

1

Solved

We are trying to develop a SPA using similar techniques and technologies as John Papa's Pluralsight courses (e.g., Web API, knockout, jquery, etc.). However, as a company, we decided to not use Ent...

1

Solved

I am using Breeze.js without the server side components and have the entities being created on the client side with the following code. Per Ward's request I have simplified everything and am includ...
Cnemis asked 26/7, 2013 at 22:38

3

Some of the Single Page Application (SPA) templates in VS2012 MVC4 have built-in authentication. HotTowel SPA Template does not. What is the proper way to implement user authentication (login scr...

1

Solved

Question: What value does breeze provide when I need to implement my own POST/PUT/GET endpoints per entity in WebAPI? Background: This seems to be a common implementation of a serverside Breez...
Azeria asked 21/6, 2013 at 14:48

3

Solved

I work on a asp.net mvc project with the durandal template + breeze. I would like to define validation logic on my view for adding/editing operations. So far, it works for texts, dropdown populat...
Neuter asked 31/3, 2013 at 8:51

1

I am trying to use breeze to call a wcf service, bij config breeze to use OData. But still I got the error: Unable to initialize OData, Needed to support remote OData services I also tried: bre...
Sapid asked 13/6, 2013 at 20:7

2

Solved

First off I have read as many articles as I can find on this topic and installed several "route debug" plugins. I am more familiar with Java/Spring so I really have no idea how to debug this thing,...
Sock asked 31/5, 2013 at 2:44

1

Solved

I am having trouble combining the foreach binding with a sort. I have a list bound like so: <article data-bind="foreach: widgets"> Widgets is a simple obvservable array: var widgets= ko....
Tesler asked 3/6, 2013 at 2:17

2

Solved

I'm writing a simple "todo - helloworld" with jqueryMobile + knockout + breeze + WebAPI to learn about SPAs (Single Page Application) in a mobile context (unreliable internet connection) To enable...

1

Solved

I am considering using Breeze.js for a client-side SPA project, but using Dapper ORM instead of Entity Framework for the server-side data access. I know Breeze.js is marketed as not relying on EF,...
Ragged asked 21/5, 2013 at 12:35

1

Solved

I'm experimenting with BreezeJS with Web API using the BreezeControllerAttribute. How should calculated properties on an entity be exposed? The only way I've found to do this reliably is to create ...
Destrier asked 13/5, 2013 at 14:6

© 2022 - 2024 — McMap. All rights reserved.