Ejemplo n.º 1
0
        /// <summary>
        /// 对象实体绑定数据
        /// </summary>
        public Lebi_ProPerty_Tag ReaderBind(IDataReader dataReader)
        {
            Lebi_ProPerty_Tag model = new Lebi_ProPerty_Tag();
            object            ojb;

            ojb = dataReader["id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.id = Convert.ToInt32(ojb);
            }
            model.Name = dataReader["Name"].ToString();
            ojb        = dataReader["Sort"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Sort = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Supplier_id"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Supplier_id = Convert.ToInt32(ojb);
            }
            ojb = dataReader["Type_id_ProPertyType"];
            if (ojb != null && ojb != DBNull.Value)
            {
                model.Type_id_ProPertyType = Convert.ToInt32(ojb);
            }
            return(model);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(Lebi_ProPerty_Tag model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update " + TableName + " set ");
            List <string> cols = new List <string>();

            if (("," + model.UpdateCols + ",").IndexOf(",Name,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Name") + "= @Name");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Sort,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Sort") + "= @Sort");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Supplier_id,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Supplier_id") + "= @Supplier_id");
            }
            if (("," + model.UpdateCols + ",").IndexOf(",Type_id_ProPertyType,") > -1 || model.UpdateCols == "")
            {
                cols.Add(LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_ProPertyType") + "= @Type_id_ProPertyType");
            }
            strSql.Append(string.Join(",", cols));
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id",                   model.id),
                new SqlParameter("@Name",                 model.Name),
                new SqlParameter("@Sort",                 model.Sort),
                new SqlParameter("@Supplier_id",          model.Supplier_id),
                new SqlParameter("@Type_id_ProPertyType", model.Type_id_ProPertyType)
            };
            LB.DataAccess.DB.Instance.TextExecuteNonQuery(strSql.ToString().Replace(", where id=@id", " where id=@id"), parameters);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Lebi_ProPerty_Tag model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into " + TableName + " (");
            strSql.Append(LB.DataAccess.DB.BaseUtilsInstance.ColName("Name") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Sort") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Supplier_id") + "," + LB.DataAccess.DB.BaseUtilsInstance.ColName("Type_id_ProPertyType") + ")");
            strSql.Append(" values (");
            strSql.Append("@Name,@Sort,@Supplier_id,@Type_id_ProPertyType);select @@identity;");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Name",                 model.Name),
                new SqlParameter("@Sort",                 model.Sort),
                new SqlParameter("@Supplier_id",          model.Supplier_id),
                new SqlParameter("@Type_id_ProPertyType", model.Type_id_ProPertyType)
            };

            object obj = LB.DataAccess.DB.Instance.TextExecute(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 得到一个对象实体 by where条件
        /// </summary>
        public Lebi_ProPerty_Tag GetModel(string strWhere, int seconds = 0)
        {
            if (strWhere.IndexOf("lbsql{") > 0)
            {
                SQLPara para = new SQLPara(strWhere, "", "");
                return(GetModel(para, seconds));
            }
            string strTableName = TableName;
            string strFieldShow = "*";
            string cachekey     = "";
            string cachestr     = "";

            if (BaseUtils.BaseUtilsInstance.MemcacheInstance != null && seconds > 0)
            {
                cachestr = "select * " + TableName + " where " + strWhere + "|" + seconds;
                cachekey = LB.Tools.Utils.MD5(cachestr);
                var obj = LB.DataAccess.DB.Instance.GetMemchche(cachekey);
                if (obj != null)
                {
                    return(obj as Lebi_ProPerty_Tag);
                }
            }
            Lebi_ProPerty_Tag model = null;

            using (IDataReader dataReader = LB.DataAccess.DB.Instance.TextExecuteReaderOne(strTableName, strFieldShow, strWhere, null))
            {
                if (dataReader == null)
                {
                    return(null);
                }
                while (dataReader.Read())
                {
                    model = ReaderBind(dataReader);
                    if (cachekey != "")
                    {
                        LB.DataAccess.DB.Instance.SetMemchche(cachekey, model, "Lebi_ProPerty_Tag", model.id, cachestr, seconds);
                    }
                    return(model);
                }
            }
            return(null);
        }
Ejemplo n.º 5
0
 /// <summary>
 /// 安全方式绑定对象表单
 /// </summary>
 public Lebi_ProPerty_Tag SafeBindForm(Lebi_ProPerty_Tag model)
 {
     if (HttpContext.Current.Request["Name"] != null)
     {
         model.Name = LB.Tools.RequestTool.RequestSafeString("Name");
     }
     if (HttpContext.Current.Request["Sort"] != null)
     {
         model.Sort = LB.Tools.RequestTool.RequestInt("Sort", 0);
     }
     if (HttpContext.Current.Request["Supplier_id"] != null)
     {
         model.Supplier_id = LB.Tools.RequestTool.RequestInt("Supplier_id", 0);
     }
     if (HttpContext.Current.Request["Type_id_ProPertyType"] != null)
     {
         model.Type_id_ProPertyType = LB.Tools.RequestTool.RequestInt("Type_id_ProPertyType", 0);
     }
     return(model);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public static void Update(Lebi_ProPerty_Tag model)
 {
     D_Lebi_ProPerty_Tag.Instance.Update(model);
 }
Ejemplo n.º 7
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public static int Add(Lebi_ProPerty_Tag model)
 {
     return(D_Lebi_ProPerty_Tag.Instance.Add(model));
 }
Ejemplo n.º 8
0
 /// <summary>
 /// 安全方式绑定表单数据
 /// </summary>
 public static Lebi_ProPerty_Tag SafeBindForm(Lebi_ProPerty_Tag model)
 {
     return(D_Lebi_ProPerty_Tag.Instance.SafeBindForm(model));
 }