SELECTs the requested entities from the database
auto mountains = em.find!Mountain() .orderBy("height") .limit(25) .selectVia(db); foreach (mt; mountains) { // […] }
See Implementation
SELECTs the requested entities from the database