The standard LINQ does not support this - you must download the library called Dynamic LINQ or create the expression tree manually. Dynamic LINQ allows you to call queries like:
var query = Entities.Table.Select("new(Column1,Column2)");
, LINQ - . Entity SQL LINQ .