示例#1
0
        public ProductCollection FetchByID(object ProductId)
        {
            ProductCollection coll = new ProductCollection().Where("ProductId", ProductId).Load();

            return(coll);
        }