I have a list with data that contains mixed numbers and strings, when i sort using
var list = thelist.OrderBy(p=>p.ColumnWithValues)
I would get results in the following order:
> 1, 1 item, 10, 2, 3, 4, 5, a, another 1, b
But i want them to be in the order below:
> 1, 2, 3, 4, 5, 10, 1 item,a, another 1, b
How would I go about doing this? I'm not even sure what to try with a list of multiple properties
update:
I've fixed my sample data, is what i'm looking to do possible?