Is upshot js an active development? All published articles were written in March 2012. Is js stable? The breeze seems to be in active development.
Is it ready for production? The vs spa app template was added and then removed. when will it be re-added? I assume it will be added using upshot, since upshot is bound to ms.
public class TodosController : ApiController { readonly EFContextProvider<TodosContext> contextProvider = new EFContextProvider<TodosContext>("TodosContext"); // ~/api/todos/Metadata [AcceptVerbs("GET")] public string Metadata() { return contextProvider.Metadata(); } // ~/api/todos/Todos // ~/api/todos/Todos?$filter=IsArchived%20eq%20false&$orderby=CreatedAt [AcceptVerbs("GET")] public IQueryable<TodoItem> Todos() { return contextProvider.Context.Todos; } // ~/api/todos/SaveChanges [AcceptVerbs("POST")] public SaveResult SaveChanges(JArray saveBundle) { return contextProvider.SaveChanges(saveBundle); } // other miscellaneous actions of no interest to us here }
single-page-application upshot breeze
Clive
source share