Beispiel #1
0
        /// <summary>
        /// 获得数据列表
        /// </summary>
        /// <returns></returns>
        public static List <OfferPriceTypeInfo> GetList()
        {
            string cacheKey = GetCacheKey();

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

            Query q = OfferPriceType.CreateQuery();

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

            collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (OfferPriceType offerPriceType  in collection)
            {
                OfferPriceTypeInfo offerPriceTypeInfo = new OfferPriceTypeInfo();
                LoadFromDAL(offerPriceTypeInfo, offerPriceType);
                list.Add(offerPriceTypeInfo);
            }
            pRecordCount = q.GetRecordCount();

            return(list);
        }
Beispiel #3
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List <OfferPriceTypeInfo> pList, OfferPriceTypeCollection pCollection)
 {
     foreach (OfferPriceType offerPriceType in pCollection)
     {
         OfferPriceTypeInfo offerPriceTypeInfo = new OfferPriceTypeInfo();
         LoadFromDAL(offerPriceTypeInfo, offerPriceType);
         pList.Add(offerPriceTypeInfo);
     }
 }
Beispiel #4
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List< OfferPriceTypeInfo> pList, OfferPriceTypeCollection pCollection)
 {
     foreach (OfferPriceType offerPriceType in pCollection)
     {
         OfferPriceTypeInfo offerPriceTypeInfo = new OfferPriceTypeInfo();
         LoadFromDAL(offerPriceTypeInfo, offerPriceType );
         pList.Add(offerPriceTypeInfo);
     }
 }
Beispiel #5
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<OfferPriceTypeInfo> GetPagedList(int pPageIndex,int pPageSize,SortDirection pOrderBy,string pSortExpression,out int pRecordCount)
        {
            if(pPageIndex<=1)
            pPageIndex=1;
            List< OfferPriceTypeInfo> list = new List< OfferPriceTypeInfo>();

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

            foreach (OfferPriceType  offerPriceType  in collection)
            {
                OfferPriceTypeInfo offerPriceTypeInfo = new OfferPriceTypeInfo();
                LoadFromDAL(offerPriceTypeInfo,   offerPriceType);
                list.Add(offerPriceTypeInfo);
            }
            pRecordCount=q.GetRecordCount();

            return list;
        }
Beispiel #6
0
 /// <summary>
 /// 获得数据列表
 /// </summary>
 /// <returns></returns>
 public static List<OfferPriceTypeInfo> GetList()
 {
     string cacheKey = GetCacheKey();
     //本实体已经注册成缓存实体,并且缓存存在的时候,直接从缓存取
     if (CachedEntityCommander.IsTypeRegistered(typeof(OfferPriceTypeInfo)) && CachedEntityCommander.GetCache(cacheKey) != null)
     {
         return CachedEntityCommander.GetCache(cacheKey) as List< OfferPriceTypeInfo>;
     }
     else
     {
         List< OfferPriceTypeInfo>  list =new List< OfferPriceTypeInfo>();
         OfferPriceTypeCollection  collection=new  OfferPriceTypeCollection();
         Query qry = new Query(OfferPriceType.Schema);
         collection.LoadAndCloseReader(qry.ExecuteReader());
         foreach(OfferPriceType offerPriceType in collection)
         {
             OfferPriceTypeInfo offerPriceTypeInfo= new OfferPriceTypeInfo();
             LoadFromDAL(offerPriceTypeInfo,offerPriceType);
             list.Add(offerPriceTypeInfo);
         }
       	//生成缓存
         if (CachedEntityCommander.IsTypeRegistered(typeof(OfferPriceTypeInfo)))
         {
             CachedEntityCommander.SetCache(cacheKey, list);
         }
         return list;
     }
 }