build method
Finish building a Query. Call Query.close() after you're done with it to free resources.
Implementation
Query<T> build() {
_applyCondition();
try {
return Query<T>._(_store, _cBuilder, _entity);
} finally {
_close();
}
}