Last active
March 25, 2017 13:53
-
-
Save philipphager/1b6809a1fc8e22a25cfd1e04cf147099 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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