I\'d like to use a LinqDataSource control on a page and limit the amount of records returned. I know if I use code behind I could do something like this:
LinqDataSource
protected void DocsData_Selecting(object sender, LinqDataSourceSelectEventArgs e) { e.Arguments.MaximumRows = 5; }