Пример #1
0
        /// <summary>
        /// 获得数据列表
        /// </summary>
        /// <returns></returns>
        public static List <OfferPriceInfo> GetList()
        {
            string cacheKey = GetCacheKey();

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

            Query q = OfferPrice.CreateQuery();

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

            collection.LoadAndCloseReader(q.ExecuteReader());

            foreach (OfferPrice offerPrice  in collection)
            {
                OfferPriceInfo offerPriceInfo = new OfferPriceInfo();
                LoadFromDAL(offerPriceInfo, offerPrice);
                list.Add(offerPriceInfo);
            }
            pRecordCount = q.GetRecordCount();

            return(list);
        }
Пример #3
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List <OfferPriceInfo> pList, OfferPriceCollection pCollection)
 {
     foreach (OfferPrice offerPrice in pCollection)
     {
         OfferPriceInfo offerPriceInfo = new OfferPriceInfo();
         LoadFromDAL(offerPriceInfo, offerPrice);
         pList.Add(offerPriceInfo);
     }
 }
Пример #4
0
 /// <summary>
 /// 批量装载
 /// </summary>
 internal static void LoadFromDALPatch(List< OfferPriceInfo> pList, OfferPriceCollection pCollection)
 {
     foreach (OfferPrice offerPrice in pCollection)
     {
         OfferPriceInfo offerPriceInfo = new OfferPriceInfo();
         LoadFromDAL(offerPriceInfo, offerPrice );
         pList.Add(offerPriceInfo);
     }
 }
Пример #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<OfferPriceInfo> GetPagedList(int pPageIndex,int pPageSize,SortDirection pOrderBy,string pSortExpression,out int pRecordCount)
        {
            if(pPageIndex<=1)
            pPageIndex=1;
            List< OfferPriceInfo> list = new List< OfferPriceInfo>();

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

            foreach (OfferPrice  offerPrice  in collection)
            {
                OfferPriceInfo offerPriceInfo = new OfferPriceInfo();
                LoadFromDAL(offerPriceInfo,   offerPrice);
                list.Add(offerPriceInfo);
            }
            pRecordCount=q.GetRecordCount();

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