All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.query.IBaseOrmQuery Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.query;

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * @author Francesco Cina
 *
 * 08/lug/2011
 */
public interface IBaseOrmQuery extends IQuery {

	/**
	 * Add join tables to the from clause. 
	 * @return
	 */
	public abstract IJoin join() throws OrmException;

	/**
	 * Set the where clause.
	 * @return
	 */
	public abstract IExpression where() throws OrmException;

	/**
	 * Set the order by clause.
	 * @return
	 */
	public abstract IOrderBy orderBy() throws OrmException;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy