Hello,
Is there any function in F# similar to LINQ fluent syntax for sorting by multiple expressions:
myList.OrderBy(fun x->x.Something).ThenBy(fun x->x.SomethingElse)
I'd love something like:
myList
|> Seq.sort_by(fun x->x.Something)
|> Seq.then_by(fun x->x.SomethingElse)
Thx