public object Get(GetTenants query)
{
return AutoQuery.Execute(query, AutoQuery.CreateQuery(query, Request));
}
How would I specify a default order by on the Name column? I don’t want to pass this in with the request. I’d like to somehow specify this in the above block of code.