Skip to content

Filter entities

Sergey Korney edited this page Mar 20, 2017 · 2 revisions

We choose only entities with the name 'test'

List<TestEntity> list = Mapper.queryAll(TestEntity.class,
                new String[] {"name"},
                new String[] {"="},
                new String[] {"test"}
        );

Clone this wiki locally