I’m developing a rich client web application which deals with a large volume of information. After a few stumbling blocks coming up with an application architecture, I’ve boiled down the following list of requirements:
- I need a javascript repository which can pull data from an ASP.NET MVC3 backend.
- I need to lazy-load or fetch-load specific properties of repository entities.
Is there a Javascript library that can do some or all of this – especially the lazy loading?
I reviewed some backbone application architectures and settled on eager loading most of the models upfront.