Example #1
0
 public ADeeWu.HuoBi3J.Model.BaseData GetEntity(string where)
 {
     DataTable dt = this.Select(where,"");
     if(dt.Rows.Count==0) return null;
     DataRow dr = dt.Rows[0];
     ADeeWu.HuoBi3J.Model.BaseData Entity = new ADeeWu.HuoBi3J.Model.BaseData();
     Entity.ID = long.Parse(dr["ID"].ToString());
     Entity.Name = dr["Name"] as string;
     Entity.Value = dr["Value"] as string;
     Entity.IDentity = dr["IDentity"] as long?;
     return Entity;
 }
Example #2
0
        public ADeeWu.HuoBi3J.Model.BaseData[] GetEntityList(string orderBy,string[] columns,params object[] values)
        {
            StringBuilder builder = new StringBuilder();
            builder.Append("select * from [BaseData] where 1=1");
            db.Parameters.Clear();
            for(int i=0;i<columns.Length;i++)
            {
                builder.AppendFormat(" and [{0}]=@{0}", columns[i]);
                db.Parameters.Append("@"+columns[i],values[i]);
            }

            if (!string.IsNullOrEmpty(orderBy))
            {
                builder.AppendFormat(" order by {0}", orderBy);
            }

            DataTable dt = db.Select(builder.ToString());

            ADeeWu.HuoBi3J.Model.BaseData[] EntityList = new ADeeWu.HuoBi3J.Model.BaseData[dt.Rows.Count];
             if (dt.Rows.Count == 0) return EntityList;
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DataRow dr = dt.Rows[i];
                ADeeWu.HuoBi3J.Model.BaseData Entity = new ADeeWu.HuoBi3J.Model.BaseData();
                Entity.ID = long.Parse(dr["ID"].ToString());
                Entity.Name = dr["Name"] as string;
                Entity.Value = dr["Value"] as string;
                Entity.IDentity = dr["IDentity"] as long?;
                EntityList[i] = Entity;
            }
             return EntityList;
        }
Example #3
0
 public ADeeWu.HuoBi3J.Model.BaseData GetEntity(long  ID)
 {
     db.Parameters.Clear();
     db.Parameters.Append("@ID",ID);
     DataTable dt = db.Select("select * from [BaseData] where 1=1  and [ID]=@ID");
     if(dt.Rows.Count==0) return null;
     DataRow dr = dt.Rows[0];
     ADeeWu.HuoBi3J.Model.BaseData Entity = new ADeeWu.HuoBi3J.Model.BaseData();
     Entity.ID = long.Parse(dr["ID"].ToString());
     Entity.Name = dr["Name"] as string;
     Entity.Value = dr["Value"] as string;
     Entity.IDentity = dr["IDentity"] as long?;
     return Entity;
 }