upshot js 是否正在积极开发中?upshot的文章都是2012年3月写的,upshot js稳定吗?Breeze 似乎正在积极开发中。
准备好生产了吗?添加了 vs spa 应用程序模板,后来又删除了。什么时候会重新添加?我猜它会用结果重新添加,因为结果与 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
}