Azavea.Open.DAO.AbstractDaLayer.CreateQuery C# (CSharp) Method

CreateQuery() public abstract method

Builds the query based on a serializable criteria. The Query object is particular to the implementation, but may contain things like the parameters parsed out, or whatever makes sense to this FastDaoLayer. You can think of this method as a method to convert from the generic DaoCriteria into the specific details necessary for querying.
public abstract CreateQuery ( ClassMapping mapping, DaoCriteria crit ) : IDaQuery
mapping ClassMapping The mapping of the table for which to build the query string.
crit Azavea.Open.DAO.Criteria.DaoCriteria The criteria to use to find the desired objects.
return IDaQuery
        public abstract IDaQuery CreateQuery(ClassMapping mapping, DaoCriteria crit);