Here are the examples of the csharp api class System.Data.Common.CommandTrees.ExpressionBuilder.DbExpressionBuilder.CreateThenBy(System.Data.Common.CommandTrees.DbSortExpression, System.Func, bool, string, bool) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
4 Examples
0
1. Example
View licensepublic static DbSortExpression ThenBy(this DbSortExpression source, Func<DbExpression, DbExpression> sortKey) { return CreateThenBy(source, sortKey, true, null, false); }
0
2. Example
View licensepublic static DbSortExpression ThenBy(this DbSortExpression source, Func<DbExpression, DbExpression> sortKey, string collation) { return CreateThenBy(source, sortKey, true, collation, true); }
0
3. Example
View licensepublic static DbSortExpression ThenByDescending(this DbSortExpression source, Func<DbExpression, DbExpression> sortKey) { return CreateThenBy(source, sortKey, false, null, false); }
0
4. Example
View licensepublic static DbSortExpression ThenByDescending(this DbSortExpression source, Func<DbExpression, DbExpression> sortKey, string collation) { return CreateThenBy(source, sortKey, false, collation, true); }