/// <summary> /// 修改一列数据 /// </summary> public bool UpdateField(int id, string strValue) { if (dal.UpdateField(id, strValue)) { Model.sites model = dal.Get(id); if (model != null) { SetCache(model); } } return(false); }
/// <summary> /// 修改一列数据 /// </summary> public bool UpdateField(int id, string strValue) { return(dal.UpdateField(id, strValue)); }