예제 #1
0
        //数据持久化
        internal static void  SaveToDb(ClientTypeInfo pClientTypeInfo, ClientType pClientType, bool pIsNew)
        {
            pClientType.ClientTypeId   = pClientTypeInfo.clientTypeId;
            pClientType.ClientTypeName = pClientTypeInfo.clientTypeName;
            pClientType.IsNew          = pIsNew;
            string UserName = SubsonicHelper.GetUserName();

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

            //本实体已经注册成缓存实体,并且缓存存在的时候,直接从缓存取
            if (CachedEntityCommander.IsTypeRegistered(typeof(ClientTypeInfo)) && CachedEntityCommander.GetCache(cacheKey) != null)
            {
                return(CachedEntityCommander.GetCache(cacheKey) as List <ClientTypeInfo>);
            }
            else
            {
                List <ClientTypeInfo> list       = new List <ClientTypeInfo>();
                ClientTypeCollection  collection = new  ClientTypeCollection();
                Query qry = new Query(ClientType.Schema);
                collection.LoadAndCloseReader(qry.ExecuteReader());
                foreach (ClientType clientType in collection)
                {
                    ClientTypeInfo clientTypeInfo = new ClientTypeInfo();
                    LoadFromDAL(clientTypeInfo, clientType);
                    list.Add(clientTypeInfo);
                }
                //生成缓存
                if (CachedEntityCommander.IsTypeRegistered(typeof(ClientTypeInfo)))
                {
                    CachedEntityCommander.SetCache(cacheKey, list);
                }
                return(list);
            }
        }
예제 #3
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 <ClientTypeInfo> GetPagedList(int pPageIndex, int pPageSize, SortDirection pOrderBy, string pSortExpression, out int pRecordCount)
        {
            if (pPageIndex <= 1)
            {
                pPageIndex = 1;
            }
            List <ClientTypeInfo> list = new List <ClientTypeInfo>();

            Query q = ClientType.CreateQuery();

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

            collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (ClientType clientType  in collection)
            {
                ClientTypeInfo clientTypeInfo = new ClientTypeInfo();
                LoadFromDAL(clientTypeInfo, clientType);
                list.Add(clientTypeInfo);
            }
            pRecordCount = q.GetRecordCount();

            return(list);
        }
예제 #4
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List <ClientTypeInfo> pList, ClientTypeCollection pCollection)
 {
     foreach (ClientType clientType in pCollection)
     {
         ClientTypeInfo clientTypeInfo = new ClientTypeInfo();
         LoadFromDAL(clientTypeInfo, clientType);
         pList.Add(clientTypeInfo);
     }
 }
예제 #5
0
        public ClientTypeInfo GetClientTypeInfoById(int ClientTypeId)
        {
            ClientTypeInfo clientTypeInfo = null;             //

            try
            {
                clientTypeInfo = new ClientTypeInfo(ClientTypeId);
            }
            catch (AppException)
            {
                return(null);
            }

            return(clientTypeInfo);
        }
예제 #6
0
        public ClientTypeInfo GetClientTypeInfoById(int ClientTypeId)
        {
            ClientTypeInfo clientTypeInfo  = null;//
            try
            {
                 clientTypeInfo = new ClientTypeInfo(ClientTypeId);

            }
            catch (AppException)
            {
                return null;
            }

            return  clientTypeInfo;
        }
예제 #7
0
 private void LoadFromId(int clientTypeId)
 {
     if (CachedEntityCommander.IsTypeRegistered(typeof(ClientTypeInfo)))
     {
         ClientTypeInfo clientTypeInfo = Find(GetList(), clientTypeId);
         if (clientTypeInfo == null)
         {
             throw new AppException("未能在缓存中找到相应的键值对象");
         }
         Copy(clientTypeInfo, this);
     }
     else
     {
         ClientType clientType = new ClientType(clientTypeId);
         if (clientType.IsNew)
         {
             throw new AppException("尚未初始化");
         }
         LoadFromDAL(this, clientType);
     }
 }
예제 #8
0
 //从后台获取数据
 internal static void  LoadFromDAL(ClientTypeInfo pClientTypeInfo, ClientType pClientType)
 {
     pClientTypeInfo.clientTypeId   = pClientType.ClientTypeId;
     pClientTypeInfo.clientTypeName = pClientType.ClientTypeName;
     pClientTypeInfo.Loaded         = true;
 }
예제 #9
0
 /// <summary>
 /// 复制一个对象,采用硬编码的方式,避免反射的低效
 /// </summary>
 /// <param name="pIndustryTypeInfoFrom"></param>
 /// <param name="pIndustryTypeInfoTo"></param>
 public static void Copy(ClientTypeInfo pClientTypeInfoFrom, ClientTypeInfo pClientTypeInfoTo)
 {
     pClientTypeInfoTo.ClientTypeId   = pClientTypeInfoFrom.clientTypeId;
     pClientTypeInfoTo.ClientTypeName = pClientTypeInfoFrom.clientTypeName;
     pClientTypeInfoTo.Loaded         = pClientTypeInfoFrom.Loaded;
 }
예제 #10
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<ClientTypeInfo> GetPagedList(int pPageIndex,int pPageSize,SortDirection pOrderBy,string pSortExpression,out int pRecordCount)
        {
            if(pPageIndex<=1)
            pPageIndex=1;
            List< ClientTypeInfo> list = new List< ClientTypeInfo>();

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

            foreach (ClientType  clientType  in collection)
            {
                ClientTypeInfo clientTypeInfo = new ClientTypeInfo();
                LoadFromDAL(clientTypeInfo,   clientType);
                list.Add(clientTypeInfo);
            }
            pRecordCount=q.GetRecordCount();

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

            clientTypeInfo.Delete();
        }