Exemplo n.º 1
0
        public void GetPageDataDataTableTest()
        {
            PageCriteria page = new PageCriteria();

            page.TableName = "ProductInfo p left join  ProductClassInfo c on p.ClassId=c.ClassId"
                             + " left join  SellerStockPile s on s.ProductId = p.ProductId"
                             + " left join  PictureInfo i on i.PicId = p.Picture1";
            page.Fields      = "p.ProductId,p.ProductCode,p.ProductFullName,c.Name as ClassName,i.Resource as picName,s.Quantity,p.ProductSpec,p.Price1,i.Format,p.SellerId";
            page.Condition   = "";
            page.PrimaryKey  = "p.ProductId";
            page.PageSize    = 10;
            page.CurrentPage = 1;
            var ret = BaseBll <object> .GetPageDataDataTable(page, 0, out _errMsg);

            Assert.IsTrue(ret != null);
        }