Skip to content

Instantly share code, notes, and snippets.

@philipphager
Last active March 25, 2017 13:53
Show Gist options
  • Save philipphager/1b6809a1fc8e22a25cfd1e04cf147099 to your computer and use it in GitHub Desktop.
Save philipphager/1b6809a1fc8e22a25cfd1e04cf147099 to your computer and use it in GitHub Desktop.
@AutoValue public abstract class LibraryInfo implements Library.SelectByWithAppCountModel {
public static final RowMapper<LibraryInfo> MAPPER =
new LibraryModel.SelectWithAppCountMapper<>(LibraryInfo::create);
public static LibraryInfo create(String id, String title, long appCount) {
return new AutoValue_LibraryInfo(id, title, appCount);
}
}
# SQLDelight:
Library.sq
selectWithAppCount:
SELECT Library.id, Library.title, Count(appId) AS appCount
FROM Library LEFT OUTER JOIN LibraryApp
ON Library.id = LibraryApp.libraryId
WHERE Library.type = ?
GROUP BY Library.id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment