Exemplo n.º 1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(Wuyiju.Model.Message model)
        {
            StringBuilder sql = new StringBuilder();

            sql.Append("update ec_message set ");

            sql.Append(" userid = @userid , ");
            sql.Append(" type = @type , ");
            sql.Append(" name = @name , ");
            sql.Append(" mail = @mail , ");
            sql.Append(" message = @message , ");
            sql.Append(" ip = @ip , ");
            sql.Append(" time = @time , ");
            sql.Append(" status = @status , ");
            sql.Append(" admin = @admin , ");
            sql.Append(" mobile = @mobile , ");
            sql.Append(" qq = @qq , ");
            sql.Append(" msgtitle = @msgtitle  ");
            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("更新数据无效");
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public void Add(Wuyiju.Model.Message obj)
        {
            if (obj == null)
            {
                throw new ApplicationException("参数不能为空");
            }

            dao.Insert(obj);
        }
Exemplo n.º 3
0
        /// <summary>
        /// 删除一条数据
        /// </summary>
        public void Remove(Wuyiju.Model.Message obj)
        {
            if (obj == null)
            {
                throw new ApplicationException("参数不能为空");
            }

            var old = dao.Get(obj.Id);

            if (old == null)
            {
                throw new ApplicationException("非法操作记录不存在");
            }

            dao.Delete(obj.Id);
        }
Exemplo n.º 4
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public void Insert(Wuyiju.Model.Message model)
        {
            StringBuilder sql = new StringBuilder();

            sql.Append("insert into ec_message(");
            sql.Append("userid,type,name,mail,message,ip,time,status,admin,mobile,qq,msgtitle");
            sql.Append(") values (");
            sql.Append("@userid,@type,@name,@mail,@message,@ip,@time,@status,@admin,@mobile,@qq,@msgtitle");
            sql.Append(") ");

            DynamicParameters param = new DynamicParameters();

            if (model != null)
            {
                param.AddDynamicParams(model);
            }

            var rows = db.Execute(sql, param);

            if (rows < 1)
            {
                throw new ApplicationException("插入数据无效");
            }
        }