I am trying to use system.dynamic.linq to create dynamic sorting....this, is the query that I use:...var query = dalSession.Query<T>().AsQueryable();
var res = (from x in query orderby "x.FirstName" select x)
...this is the mysql output:...select
aff...