ViewBag分配

时间:2012-06-28 18:20:32

标签: asp.net-mvc asp.net-mvc-3 viewbag

我正在尝试将数据库中的值传递给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' 

1 个答案:

答案 0 :(得分:12)

应该是这样:

ViewBag.app_id = app_id;

ViewBag是一种动态类型,这意味着您可以在运行时添加app_id等参数。