I noticed that if a user adds a filter/sort to a grid and you browse off the page and back the AutoQueryGrid will issue two requests, the first as if there is no filter (or sort) and the second with the saved filter.
Also, it would be nice to have a setting to not save filters between page loads.
<AutoQueryGrid @ref="grid" Model="JobGrid"
ConfigureQuery="(x) => ((JobsRequest)x).SearchTerm = searchTerm"
Apis="Apis.AutoQuery<JobsRequest>()" AllowSelection=false ShowPreferences=false>
<Columns>
<!-- Custom class -->
<Column Field="(JobGrid x) => x.Id"></Column>
<Column Field="(JobGrid x) => x.CustomerName" Title="Customer"></Column>
</Columns>
</AutoQueryGrid>