this is a simple question (I think), but I have not been able to find a solution. I know with other types of queries, you can add a limit clause that makes the query only re
var productQuery = (from b in solutionContext.Version
where b.Product.ID != 1
&& b.VersionNumber == b.Product.ActiveNumber
orderby b.Product.LastNumber
select b).Take(25);