I am using Linq2Sql lately and must say its pretty sleek
Account account= ormAccount.ConvertAll(
oa =>
new Account()
{
Name = oa.Name,
Number= oa.Number,
}).ToList();
One line where i would previously do a
foreach ( OrmAccount in …){
}