예제 #1
0
        /// <summary>
        /// 获得分页列表,无论是否是缓存实体都从数据库直接拿取数据
        /// </summary>
        /// <param name="pPageIndex">页数</param>
        /// <param name="pPageSize">每页列表</param>
        /// <param name="pOrderBy">排序</param>
        /// <param name="pSortExpression">排序字段</param>
        /// <param name="pRecordCount">列表行数</param>
        /// <returns>数据分页</returns>
        public static List <ActionMasterInfo> GetPagedList(int pPageIndex, int pPageSize, SortDirection pOrderBy, string pSortExpression, out int pRecordCount)
        {
            if (pPageIndex <= 1)
            {
                pPageIndex = 1;
            }
            List <ActionMasterInfo> list = new List <ActionMasterInfo>();

            Query q = ActionMaster.CreateQuery();

            q.PageIndex = pPageIndex;
            q.PageSize  = pPageSize;
            q.ORDER_BY(pSortExpression, pOrderBy.ToString());
            ActionMasterCollection collection = new  ActionMasterCollection();

            collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (ActionMaster actionMaster  in collection)
            {
                ActionMasterInfo actionMasterInfo = new ActionMasterInfo();
                LoadFromDAL(actionMasterInfo, actionMaster);
                list.Add(actionMasterInfo);
            }
            pRecordCount = q.GetRecordCount();

            return(list);
        }
예제 #2
0
        //数据持久化
        internal static void  SaveToDb(ActionMasterInfo pActionMasterInfo, ActionMaster pActionMaster, bool pIsNew)
        {
            pActionMaster.ActionMasterId = pActionMasterInfo.actionMasterId;
            pActionMaster.ActionId       = pActionMasterInfo.actionId;
            pActionMaster.MasterId       = pActionMasterInfo.masterId;
            pActionMaster.IsPass         = pActionMasterInfo.isPass;
            pActionMaster.IsNew          = pIsNew;
            string UserName = SubsonicHelper.GetUserName();

            try
            {
                pActionMaster.Save(UserName);
            }
            catch (Exception ex)
            {
                LogManager.getInstance().getLogger(typeof(ActionMasterInfo)).Error(ex);
                if (ex.Message.Contains("插入重复键"))               //违反了唯一键
                {
                    throw new AppException("此对象已经存在");          //此处等待优化可以从唯一约束中直接取出提示来,如果没有的话,默认为原始的出错提示
                }
                throw new AppException("保存失败");
            }
            pActionMasterInfo.actionMasterId = pActionMaster.ActionMasterId;
            //如果缓存存在,更新缓存
            if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)))
            {
                ResetCache();
            }
        }
예제 #3
0
        /// <summary>
        /// 获得数据列表
        /// </summary>
        /// <returns></returns>
        public static List <ActionMasterInfo> GetList()
        {
            string cacheKey = GetCacheKey();

            //本实体已经注册成缓存实体,并且缓存存在的时候,直接从缓存取
            if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)) && CachedEntityCommander.GetCache(cacheKey) != null)
            {
                return(CachedEntityCommander.GetCache(cacheKey) as List <ActionMasterInfo>);
            }
            else
            {
                List <ActionMasterInfo> list       = new List <ActionMasterInfo>();
                ActionMasterCollection  collection = new  ActionMasterCollection();
                Query qry = new Query(ActionMaster.Schema);
                collection.LoadAndCloseReader(qry.ExecuteReader());
                foreach (ActionMaster actionMaster in collection)
                {
                    ActionMasterInfo actionMasterInfo = new ActionMasterInfo();
                    LoadFromDAL(actionMasterInfo, actionMaster);
                    list.Add(actionMasterInfo);
                }
                //生成缓存
                if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)))
                {
                    CachedEntityCommander.SetCache(cacheKey, list);
                }
                return(list);
            }
        }
예제 #4
0
 //从后台获取数据
 internal static void  LoadFromDAL(ActionMasterInfo pActionMasterInfo, ActionMaster pActionMaster)
 {
     pActionMasterInfo.actionMasterId = pActionMaster.ActionMasterId;
     pActionMasterInfo.actionId       = pActionMaster.ActionId;
     pActionMasterInfo.masterId       = pActionMaster.MasterId;
     pActionMasterInfo.isPass         = pActionMaster.IsPass;
     pActionMasterInfo.Loaded         = true;
 }
예제 #5
0
 /// <summary>
 /// 复制一个对象,采用硬编码的方式,避免反射的低效
 /// </summary>
 /// <param name="pIndustryTypeInfoFrom"></param>
 /// <param name="pIndustryTypeInfoTo"></param>
 public static void Copy(ActionMasterInfo pActionMasterInfoFrom, ActionMasterInfo pActionMasterInfoTo)
 {
     pActionMasterInfoTo.ActionMasterId = pActionMasterInfoFrom.actionMasterId;
     pActionMasterInfoTo.ActionId       = pActionMasterInfoFrom.actionId;
     pActionMasterInfoTo.MasterId       = pActionMasterInfoFrom.masterId;
     pActionMasterInfoTo.IsPass         = pActionMasterInfoFrom.isPass;
     pActionMasterInfoTo.Loaded         = pActionMasterInfoFrom.Loaded;
 }
예제 #6
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List <ActionMasterInfo> pList, ActionMasterCollection pCollection)
 {
     foreach (ActionMaster actionMaster in pCollection)
     {
         ActionMasterInfo actionMasterInfo = new ActionMasterInfo();
         LoadFromDAL(actionMasterInfo, actionMaster);
         pList.Add(actionMasterInfo);
     }
 }
예제 #7
0
 protected void AddActionMaster(int masterid)
 {
     for (int i = 0; i < ckblRight.Items.Count; i++)
     {
         if (ckblRight.Items[i].Selected)
         {
             ActionMasterInfo am = new ActionMasterInfo();
             am.MasterId = masterid;
             am.ActionId = Convert.ToInt32(ckblRight.Items[i].Value);
             am.IsPass = 0;
             am.Save();
         }
     }
 }
예제 #8
0
        public ActionMasterInfo GetActionMasterInfoById(int ActionMasterId)
        {
            ActionMasterInfo actionMasterInfo = null;             //

            try
            {
                actionMasterInfo = new ActionMasterInfo(ActionMasterId);
            }
            catch (AppException)
            {
                return(null);
            }

            return(actionMasterInfo);
        }
예제 #9
0
        public ActionMasterInfo GetActionMasterInfoById(int ActionMasterId)
        {
            ActionMasterInfo actionMasterInfo  = null;//
            try
            {
                 actionMasterInfo = new ActionMasterInfo(ActionMasterId);

            }
            catch (AppException)
            {
                return null;
            }

            return  actionMasterInfo;
        }
예제 #10
0
 private void LoadFromId(int actionMasterId)
 {
     if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)))
     {
         ActionMasterInfo actionMasterInfo = Find(GetList(), actionMasterId);
         if (actionMasterInfo == null)
         {
             throw new AppException("未能在缓存中找到相应的键值对象");
         }
         Copy(actionMasterInfo, this);
     }
     else
     {
         ActionMaster actionMaster = new ActionMaster(actionMasterId);
         if (actionMaster.IsNew)
         {
             throw new AppException("尚未初始化");
         }
         LoadFromDAL(this, actionMaster);
     }
 }
예제 #11
0
        /// <summary>
        /// 获得分页列表,无论是否是缓存实体都从数据库直接拿取数据
        /// </summary>
        /// <param name="pPageIndex">页数</param>
        /// <param name="pPageSize">每页列表</param>
        /// <param name="pOrderBy">排序</param>
        /// <param name="pSortExpression">排序字段</param>
        /// <param name="pRecordCount">列表行数</param>
        /// <returns>数据分页</returns>
        public static List<ActionMasterInfo> GetPagedList(int pPageIndex,int pPageSize,SortDirection pOrderBy,string pSortExpression,out int pRecordCount)
        {
            if(pPageIndex<=1)
            pPageIndex=1;
            List< ActionMasterInfo> list = new List< ActionMasterInfo>();

            Query q = ActionMaster .CreateQuery();
            q.PageIndex = pPageIndex;
            q.PageSize = pPageSize;
            q.ORDER_BY(pSortExpression,pOrderBy.ToString());
            ActionMasterCollection  collection=new  ActionMasterCollection();
             	collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (ActionMaster  actionMaster  in collection)
            {
                ActionMasterInfo actionMasterInfo = new ActionMasterInfo();
                LoadFromDAL(actionMasterInfo,   actionMaster);
                list.Add(actionMasterInfo);
            }
            pRecordCount=q.GetRecordCount();

            return list;
        }
예제 #12
0
 /// <summary>
 /// 复制一个对象,采用硬编码的方式,避免反射的低效
 /// </summary>
 /// <param name="pIndustryTypeInfoFrom"></param>
 /// <param name="pIndustryTypeInfoTo"></param>
 public static void Copy(ActionMasterInfo pActionMasterInfoFrom, ActionMasterInfo pActionMasterInfoTo)
 {
     pActionMasterInfoTo.ActionMasterId = pActionMasterInfoFrom.actionMasterId;
      		pActionMasterInfoTo.ActionId = pActionMasterInfoFrom.actionId;
      		pActionMasterInfoTo.MasterId = pActionMasterInfoFrom.masterId;
      		pActionMasterInfoTo.IsPass = pActionMasterInfoFrom.isPass;
     pActionMasterInfoTo.Loaded=pActionMasterInfoFrom.Loaded;
 }
예제 #13
0
 /// <summary>
 /// 获得数据列表
 /// </summary>
 /// <returns></returns>
 public static List<ActionMasterInfo> GetList()
 {
     string cacheKey = GetCacheKey();
     //本实体已经注册成缓存实体,并且缓存存在的时候,直接从缓存取
     if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)) && CachedEntityCommander.GetCache(cacheKey) != null)
     {
         return CachedEntityCommander.GetCache(cacheKey) as List< ActionMasterInfo>;
     }
     else
     {
         List< ActionMasterInfo>  list =new List< ActionMasterInfo>();
         ActionMasterCollection  collection=new  ActionMasterCollection();
         Query qry = new Query(ActionMaster.Schema);
         collection.LoadAndCloseReader(qry.ExecuteReader());
         foreach(ActionMaster actionMaster in collection)
         {
             ActionMasterInfo actionMasterInfo= new ActionMasterInfo();
             LoadFromDAL(actionMasterInfo,actionMaster);
             list.Add(actionMasterInfo);
         }
       	//生成缓存
         if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)))
         {
             CachedEntityCommander.SetCache(cacheKey, list);
         }
         return list;
     }
 }
예제 #14
0
 public List <ActionMasterInfo> GetActionMasterInfoList()
 {
     return(ActionMasterInfo.GetList());
 }
예제 #15
0
 public object SaveActionMasterInfo(ActionMasterInfo actionMasterInfo)
 {
     actionMasterInfo.Save();
     return actionMasterInfo . ActionMasterId;
 }
예제 #16
0
 public void DeleteById(ActionMasterInfo pActionMasterInfo)
 {
     ActionMasterInfo actionMasterInfo = new ActionMasterInfo(pActionMasterInfo.ActionMasterId);
     actionMasterInfo.Delete();
 }
예제 #17
0
 public List <ActionMasterInfo> GetPagedList(int pPageIndex, int pPageSize, SortDirection pOrderBy, string pSortExpression, out int pRecordCount)
 {
     return(ActionMasterInfo.GetPagedList(pPageIndex, pPageSize, pOrderBy, pSortExpression, out pRecordCount));
 }
예제 #18
0
 public object  SaveActionMasterInfo(ActionMasterInfo actionMasterInfo)
 {
     actionMasterInfo.Save();
     return(actionMasterInfo.ActionMasterId);
 }
예제 #19
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List< ActionMasterInfo> pList, ActionMasterCollection pCollection)
 {
     foreach (ActionMaster actionMaster in pCollection)
     {
         ActionMasterInfo actionMasterInfo = new ActionMasterInfo();
         LoadFromDAL(actionMasterInfo, actionMaster );
         pList.Add(actionMasterInfo);
     }
 }
예제 #20
0
 /// <summary>
 /// 复制为另一个对象
 /// </summary>
 /// <param name="pIndustryTypeInfoTo"></param>
 public void CopyTo(ActionMasterInfo pActionMasterInfoTo)
 {
     Copy(this,  pActionMasterInfoTo);
 }
예제 #21
0
 //从后台获取数据
 internal static void LoadFromDAL(ActionMasterInfo pActionMasterInfo, ActionMaster  pActionMaster)
 {
     pActionMasterInfo.actionMasterId = pActionMaster.ActionMasterId;
      		pActionMasterInfo.actionId = pActionMaster.ActionId;
      		pActionMasterInfo.masterId = pActionMaster.MasterId;
      		pActionMasterInfo.isPass = pActionMaster.IsPass;
     pActionMasterInfo.Loaded=true;
 }
예제 #22
0
 /// <summary>
 /// 复制为另一个对象
 /// </summary>
 /// <param name="pIndustryTypeInfoTo"></param>
 public void CopyTo(ActionMasterInfo pActionMasterInfoTo)
 {
     Copy(this, pActionMasterInfoTo);
 }
예제 #23
0
 //数据持久化
 internal static void SaveToDb(ActionMasterInfo pActionMasterInfo, ActionMaster  pActionMaster,bool pIsNew)
 {
     pActionMaster.ActionMasterId = pActionMasterInfo.actionMasterId;
      		pActionMaster.ActionId = pActionMasterInfo.actionId;
      		pActionMaster.MasterId = pActionMasterInfo.masterId;
      		pActionMaster.IsPass = pActionMasterInfo.isPass;
     pActionMaster.IsNew=pIsNew;
     string UserName = SubsonicHelper.GetUserName();
     try
     {
         pActionMaster.Save(UserName);
     }
     catch(Exception ex)
     {
         LogManager.getInstance().getLogger(typeof(ActionMasterInfo)).Error(ex);
         if(ex.Message.Contains("插入重复键"))//违反了唯一键
         {
             throw new AppException("此对象已经存在");//此处等待优化可以从唯一约束中直接取出提示来,如果没有的话,默认为原始的出错提示
         }
         throw new AppException("保存失败");
     }
     pActionMasterInfo.actionMasterId = pActionMaster.ActionMasterId;
     //如果缓存存在,更新缓存
     if (CachedEntityCommander.IsTypeRegistered(typeof(ActionMasterInfo)))
     {
         ResetCache();
     }
 }
예제 #24
0
        public void DeleteById(ActionMasterInfo pActionMasterInfo)
        {
            ActionMasterInfo actionMasterInfo = new ActionMasterInfo(pActionMasterInfo.ActionMasterId);

            actionMasterInfo.Delete();
        }