Within my application I have an Entity / table
that has a Name field (among several other fields). I want a list of Strings of all the unique names found in that table.
Right now the only thing I can think of is to load all the results into a list of entity objects
, iterate over them, and store the names in a Set, and then convert this Set into a List.
It seems inefficient though. Does GreenDao
support a feature like this natively or must all queries return Entity objects
?