I'm studying "Expression Tree" but I'm not managing to perform these expressions:...// first case
someList.Select(p => p.SomeProperty);
...and...// second case
someList.Select(p => new OtherClass
{
SomeProperty = p.SomeProperty
})
...To the "first ca...