Jay Traband
My feedback
2 results found
-
2 votes
This is not an error.
Breeze ‘complex objects’ have a ‘complexAspect’ property that is analogous to the ‘entityAspect’ that is found on ‘entities’.
All complex objects ALSO have a GetEntityAspect() method. The GetEntityAspect method returns the top level EntityAspect associated with the complexObject ( complex objects can be nested so this may go thru multiple parent objects before returning the final parent EntityAspect – this is why this is a method and not a property).
Entity objects by comparision have only a single entityAspect property.
An error occurred while saving the comment -
4 votes
An error occurred while saving the comment Jay Traband commented
The Breeze Server is already available on other platforms. We have a Node/Mongo implementation of the server as well as Alpha releases of Java and Ruby implementations. See the https://github.com/Breeze/breeze.server.node and and https://github.com/Breeze/breeze.server.java repos.
You are right, I will fix the documentation. entityAspect => getEntityAspect() and propertyPath => getPropertyPath(propName). We made these changes several releases back because our general rule is that properties do very little processing and are highly performant, whereas methods often have more overhead and both of these methods require more internal work than a simple property access. And ... thanks for catching this