SQLite supports doing case insensitive sorting using ORDER BY Column COLLATE NOCASE ASC. It would be nice to have the ability to use this in the OrderBy and ThenBy methods so we do not have to write queries by hand to use this.
Good suggestion, but pay attention to the fact that "COLLATE NOCASE" works only with ASCII.
I would extend this issue with using expression in the OrderBy like ( t=> t.Name.ToLower()).
SQLite supports doing case insensitive sorting using
ORDER BY Column COLLATE NOCASE ASC
. It would be nice to have the ability to use this in theOrderBy
andThenBy
methods so we do not have to write queries by hand to use this.