1
一個快速的問題,可能會或可能不容易回答。亞音速3.0查詢限制與MySQL c#.net LinQ
目前,爲了在有限的結果集數據返回到使用亞音速我打電話參考我使用如下類似的功能:
_DataSet = from CatSet in t2_aspnet_shopping_item_category.All()
join CatProdAssignedLink in t2_aspnet_shopping_link_categoryproduct.All() on CatSet.CategoryID equals CatProdAssignedLink.CategoryID
join ProdSet in t2_aspnet_shopping_item_product.All() on CatProdAssignedLink.ProductID equals ProdSet.ProductID
where ProdSet.ProductID == __ProductID
orderby CatProdAssignedLink.LinkID ascending
select CatSet;
,並從數據集中的第一項。
有沒有辦法將查詢初始限制到一定數量的行?我使用MySQL作爲基礎數據庫。