upshot jsはアクティブ開発中ですか?すべての最新記事は2012年3月に書かれました。 アップショットjsは安定していますか? Breezeは積極的に開発されているようです。upshot js vs. breeze js
生産準備完了ですか? vs spaアプリケーションテンプレートが追加され、後で削除されました。いつ再追加されますか?私はupshotがmsに結びついているので、それがupshotで再追加されると思います。
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
}