Interface EntityQueryModel


public interface EntityQueryModel
Provides entities based on query conditions. The default data source can be overridden by using dataSource().
tableModel.queryModel().dataSource().set(queryModel -> {
	 EntityConnection connection = queryModel.connectionProvider().connection();

  return connection.select(Employee.NAME.equalTo("John"));
});
See Also: