I have a view in SQL Server that contains a one (e.g. product) to many (e.g. vendors) relationship. As a result, one product may be displayed several times. Is it possible to perform the following query in LLBLGen 1.x? The product table isn't normalized 100% as it may contain two entries for products with the same name but different specs (e.g. color).
SELECT ProductName, COUNT(*) FROM
(SELECT ProductID, ProductName
FROM ProductView
GROUP BY ProductID, ProductName) AS MyTable
GROUP BY ProductName