score:8

Accepted answer

how about:

multiorders.values.tolist() 

score:0

@nvoigt solution is dead on, but you could also just deal with the warning by declaring type parameters explicitly:

return multiorders.selectmany<orderdraft,orderdraft>(s => s.value).tolist<orderdraft>;


Related Query