摘要:
昨天在学习的过程中,偶然间改了下数据表,然后就出现了一个问题:用dataset方式绑定的数据在ext:grid中能正确显示,然而直接查询的则是只能显示最初没有改动过的数据。具体如下图:1、dataset:DataSet ds = new Select().From(Guardianf.Schema).ExecuteDataSet();Grid1.DataSource = ds;Grid1.DataBind(); 2、查询方式:SqlQuery q = new Select().From(Guardianf.Schema);GuardianfCollection test = q.Execute 阅读全文