mesh
mesh copied to clipboard
A model centric persistence framework for Flex.
There's little benefit to rolling and maintaining our own reflections library.
Some things that can be cleaned up to make using data sources easier. ### Required methods Here's a list of methods that the data source needs to create, retrieve, update...
There's a lot of utility classes in the `mesh.core` package. Lets move ones that are not essential to Mesh into a separate project.
Has many associations are empty until you call `HasManyAssociation.load()`. This method invokes the `DataSource.belongsTo()`. I think we can simplify the data source by having the backend pass back an array...
Instead of having to add an event listener to `Record.loadOperation`, instead pass in a responder to `Record.load()`. ``` as3 var person:Person = store.query(Person).find(1); person.load(new RequestResponder(function():void { trace(person.name); }); ```