/// <summary> /// 更新一条数据 /// </summary> public void Update(Wuyiju.Model.ArticleComments model) { StringBuilder sql = new StringBuilder(); sql.Append("update ArticleComments set "); sql.Append(" article_id = @article_id , "); sql.Append(" user_id = @user_id , "); sql.Append(" user_name = @user_name , "); sql.Append(" image = @image , "); sql.Append(" content = @content , "); sql.Append(" useful = @useful , "); sql.Append(" status = @status , "); sql.Append(" top = @top , "); sql.Append(" reply = @reply , "); sql.Append(" reply_time = @reply_time , "); sql.Append(" add_time = @add_time "); sql.Append(" where id=@id "); DynamicParameters param = new DynamicParameters(); if (model != null) { param.AddDynamicParams(model); } var rows = db.Execute(sql, param); if (rows < 1) { throw new ApplicationException("更新数据无效"); } }
/// <summary> /// 增加一条数据 /// </summary> public void Add(Wuyiju.Model.ArticleComments obj) { if (obj == null) { throw new ApplicationException("参数不能为空"); } dao.Insert(obj); }
/// <summary> /// 删除一条数据 /// </summary> public void Remove(Wuyiju.Model.ArticleComments obj) { if (obj == null) { throw new ApplicationException("参数不能为空"); } var old = dao.Get(obj.Id); if (old == null) { throw new ApplicationException("非法操作记录不存在"); } dao.Delete(obj.Id); }
/// <summary> /// 增加一条数据 /// </summary> public void Insert(Wuyiju.Model.ArticleComments model) { StringBuilder sql = new StringBuilder(); sql.Append("insert into ec_article_comments("); sql.Append("article_id,user_id,user_name,image,content,useful,status,top,reply,reply_time,add_time"); sql.Append(") values ("); sql.Append("@article_id,@user_id,@user_name,@image,@content,@useful,@status,@top,@reply,@reply_time,@add_time"); sql.Append(") "); DynamicParameters param = new DynamicParameters(); if (model != null) { param.AddDynamicParams(model); } var rows = db.Execute(sql, param); if (rows < 1) { throw new ApplicationException("插入数据无效"); } }