Is this possible to create new {variable = x.something}
and specify variable name dynamically? For example:
var name = "dynamicName";
var result = context.select(x=> new {name.ToString() = x.something })
In this way we would have a list where property name is dynamicName. So is this somehow possible?