I don’t think you can pass this “in” to this request, however you can execute a normal request
var oList = from w in Os
select w
Then, when the user takes some action, you can simply place an order after this fact.
oList.OrderBy(o => o.ClassTitle)
or
oList.OrderByDescending(o => o.ClassTitle)
UPDATE:
, , Where. , . #,
public static IEnumerable<Os> ExecuteWhere (this Table<Os> table, Expression<Func<Os, bool>> predicate)
{
return table.AsQueryable<Os>().Where(predicate);
}
, :
oList.ExecuteWhere(a => a.ClassTitle == "Test")