我想传递参数详情页面。但我的参数没有通过。在我的表中,主键是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);
}