/// <summary> /// Constructs SQL SELECT by automatically matching columns between specified source model and target projection. /// </summary> /// <param name="from">The source model.</param> /// <param name="to">The target projection.</param> /// <returns>This aggregate query builder for fluent coding.</returns> public new DbAggregateQueryBuilder AutoSelect(Model from, Projection to) { base.AutoSelect(from, to); return(this); }