예제 #1
0
 /// <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);
 }
예제 #2
0
파일: sites.cs 프로젝트: SuanR/ande
 /// <summary>
 /// 修改一列数据
 /// </summary>
 public bool UpdateField(int id, string strValue)
 {
     return(dal.UpdateField(id, strValue));
 }