Esempio n. 1
0
 public JoinBuilder(DbCommand command, Dialect dialect, Expression <Func <T, T2, bool> > filter, TableCollection tables)
     : base(command, dialect, filter.Body, tables, false, true)
 {
 }
        public static IQuery CreateSelectQuery(TableCollection tables, IDataMapper dataMapper, string where, ISortQueryBuilder orderBy, bool useAltName)
        {
            Dialect dialect = CreateDialect(dataMapper);

            return(new SelectQuery(dialect, tables, where, orderBy, useAltName));
        }