字符串参数没有传入mvc?

时间:2014-01-22 06:29:24

标签: asp.net-mvc database petapoco

我想传递参数详情页面。但我的参数没有通过。在我的表中,主键是ExpRef。我如何在详细信息页面中传递此字符串参数...

public ActionResult Details(string id)
        {
            var db = new PetaPoco.Database("Cboofinal");
            var d = db.Query<OdeExport>("select * from OdeExport where ExpRef=@0",id);
            return View(d);
        }

0 个答案:

没有答案