データベースからasp.net mvcのビューに値を渡そうとしていますが、非常に単純なものです
public ActionResult SettingsList() {
using (podio_doc_db db = new podio_doc_db() ) {
string app_id = db.Configs.Where(r => r.Key == "app.id").Select(r => r.Value).First();
ViewBag["app_id"] = app_id;
}
return View();
}
ただし、このエラーが発生し続けます
Cannot apply indexing with [] to an expression of type 'System.Dynamic.DynamicObject'