yes i believe that LLBLGenProDataSource make it but how ?
ok assume that i have a query :
SELECT p.ProductID, p.ProductName, p.QuantityPerUnit, p.UnitPrice, p.UnitsInStock, p.Discontinued, c.CategoryName, o.ShipName
FROM [Products] p join [Categories] c on p.CategoryID = c.CategoryID join [OrderDetail] d on p.ProductID=d.ProductID join [Order] o on d.OrderID=o.OrderID where p.SupplierID =@SupplierID and o.ShipCountry=@Country
i want to design in gridview template column this results.In sqldatasource , i write this query in selectparameter , but llbgenprodatasource how make it ? if u show me a little example i am very pleasure
thank u .