Beispiel #1
0
        //数据持久化
        internal static void  SaveToDb(StampFileTypeInfo pStampFileTypeInfo, StampFileType pStampFileType, bool pIsNew)
        {
            pStampFileType.StampFileTypeId   = pStampFileTypeInfo.stampFileTypeId;
            pStampFileType.StampFileTypeName = pStampFileTypeInfo.stampFileTypeName;
            pStampFileType.IsNew             = pIsNew;
            string UserName = SubsonicHelper.GetUserName();

            try
            {
                pStampFileType.Save(UserName);
            }
            catch (Exception ex)
            {
                LogManager.getInstance().getLogger(typeof(StampFileTypeInfo)).Error(ex);
                if (ex.Message.Contains("插入重复键"))               //违反了唯一键
                {
                    throw new AppException("此对象已经存在");          //此处等待优化可以从唯一约束中直接取出提示来,如果没有的话,默认为原始的出错提示
                }
                throw new AppException("保存失败");
            }
            pStampFileTypeInfo.stampFileTypeId = pStampFileType.StampFileTypeId;
            //如果缓存存在,更新缓存
            if (CachedEntityCommander.IsTypeRegistered(typeof(StampFileTypeInfo)))
            {
                ResetCache();
            }
        }
Beispiel #2
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 <StampFileTypeInfo> GetPagedList(int pPageIndex, int pPageSize, SortDirection pOrderBy, string pSortExpression, out int pRecordCount)
        {
            if (pPageIndex <= 1)
            {
                pPageIndex = 1;
            }
            List <StampFileTypeInfo> list = new List <StampFileTypeInfo>();

            Query q = StampFileType.CreateQuery();

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

            collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (StampFileType stampFileType  in collection)
            {
                StampFileTypeInfo stampFileTypeInfo = new StampFileTypeInfo();
                LoadFromDAL(stampFileTypeInfo, stampFileType);
                list.Add(stampFileTypeInfo);
            }
            pRecordCount = q.GetRecordCount();

            return(list);
        }
Beispiel #3
0
 /// <summary>
 /// 保存
 /// </summary>
 public override void Save()
 {
     if (!m_Loaded)           //新增
     {
         StampFileType stampFileType = new StampFileType();
         SaveToDb(this, stampFileType, true);
     }
     else            //修改
     {
         StampFileType stampFileType = new StampFileType(stampFileTypeId);
         if (stampFileType.IsNew)
         {
             throw new AppException("该数据已经不存在了");
         }
         SaveToDb(this, stampFileType, false);
     }
 }
Beispiel #4
0
        /// <summary>
        /// 删除
        /// </summary>
        /// <returns>是否成功</returns>
        public override void Delete()
        {
            if (!m_Loaded)
            {
                throw new AppException("尚未初始化");
            }
            bool result = (StampFileType.Delete(StampFileTypeId) == 1);

            //更新缓存
            if (result && CachedEntityCommander.IsTypeRegistered(typeof(StampFileTypeInfo)))
            {
                ResetCache();
            }
            if (!result)
            {
                throw new AppException("删除失败,数据可能被删除");
            }
        }
Beispiel #5
0
 private void LoadFromId(int stampFileTypeId)
 {
     if (CachedEntityCommander.IsTypeRegistered(typeof(StampFileTypeInfo)))
     {
         StampFileTypeInfo stampFileTypeInfo = Find(GetList(), stampFileTypeId);
         if (stampFileTypeInfo == null)
         {
             throw new AppException("未能在缓存中找到相应的键值对象");
         }
         Copy(stampFileTypeInfo, this);
     }
     else
     {
         StampFileType stampFileType = new StampFileType(stampFileTypeId);
         if (stampFileType.IsNew)
         {
             throw new AppException("尚未初始化");
         }
         LoadFromDAL(this, stampFileType);
     }
 }
Beispiel #6
0
        public static DataTable getStampFileTypeList()
        {
            Query q = StampFileType.Query();

            return(q.ExecuteDataSet().Tables[0]);
        }
Beispiel #7
0
 //从后台获取数据
 internal static void  LoadFromDAL(StampFileTypeInfo pStampFileTypeInfo, StampFileType pStampFileType)
 {
     pStampFileTypeInfo.stampFileTypeId   = pStampFileType.StampFileTypeId;
     pStampFileTypeInfo.stampFileTypeName = pStampFileType.StampFileTypeName;
     pStampFileTypeInfo.Loaded            = true;
 }
Beispiel #8
0
 private void LoadFromId(int stampFileTypeId)
 {
     if (CachedEntityCommander.IsTypeRegistered(typeof(StampFileTypeInfo)))
     {
         StampFileTypeInfo stampFileTypeInfo=Find(GetList(), stampFileTypeId);
         if(stampFileTypeInfo==null)
             throw new AppException("未能在缓存中找到相应的键值对象");
         Copy(stampFileTypeInfo, this);
     }
     else
     {	StampFileType stampFileType=new StampFileType( stampFileTypeId);
         if(stampFileType.IsNew)
         throw new AppException("尚未初始化");
        	LoadFromDAL(this, stampFileType);
     }
 }
Beispiel #9
0
 //数据持久化
 internal static void SaveToDb(StampFileTypeInfo pStampFileTypeInfo, StampFileType  pStampFileType,bool pIsNew)
 {
     pStampFileType.StampFileTypeId = pStampFileTypeInfo.stampFileTypeId;
      		pStampFileType.StampFileTypeName = pStampFileTypeInfo.stampFileTypeName;
     pStampFileType.IsNew=pIsNew;
     string UserName = SubsonicHelper.GetUserName();
     try
     {
         pStampFileType.Save(UserName);
     }
     catch(Exception ex)
     {
         LogManager.getInstance().getLogger(typeof(StampFileTypeInfo)).Error(ex);
         if(ex.Message.Contains("插入重复键"))//违反了唯一键
         {
             throw new AppException("此对象已经存在");//此处等待优化可以从唯一约束中直接取出提示来,如果没有的话,默认为原始的出错提示
         }
         throw new AppException("保存失败");
     }
     pStampFileTypeInfo.stampFileTypeId = pStampFileType.StampFileTypeId;
     //如果缓存存在,更新缓存
     if (CachedEntityCommander.IsTypeRegistered(typeof(StampFileTypeInfo)))
     {
         ResetCache();
     }
 }
Beispiel #10
0
 //从后台获取数据
 internal static void LoadFromDAL(StampFileTypeInfo pStampFileTypeInfo, StampFileType  pStampFileType)
 {
     pStampFileTypeInfo.stampFileTypeId = pStampFileType.StampFileTypeId;
      		pStampFileTypeInfo.stampFileTypeName = pStampFileType.StampFileTypeName;
     pStampFileTypeInfo.Loaded=true;
 }
Beispiel #11
0
 /// <summary>
 /// 保存
 /// </summary>
 public override void Save()
 {
     if(!m_Loaded)//新增
     {
         StampFileType stampFileType=new StampFileType();
         SaveToDb(this, stampFileType,true);
     }
     else//修改
     {
         StampFileType stampFileType=new StampFileType(stampFileTypeId);
         if(stampFileType.IsNew)
             throw new AppException("该数据已经不存在了");
         SaveToDb(this, stampFileType,false);
     }
 }