mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add multiple genres to Albums
This commit is contained in:
parent
39da741a80
commit
5e54925520
15 changed files with 102 additions and 79 deletions
|
@ -25,11 +25,10 @@ func NewGenreRepository(ctx context.Context, o orm.Ormer) model.GenreRepository
|
|||
|
||||
func (r *genreRepository) GetAll() (model.Genres, error) {
|
||||
sq := Select("*",
|
||||
"(select count(1) from album where album.genre = genre.name) as album_count",
|
||||
"count(distinct a.album_id) as album_count",
|
||||
"count(distinct f.media_file_id) as song_count").
|
||||
From(r.tableName).
|
||||
// TODO Use relation table
|
||||
// LeftJoin("album_genres a on a.genre_id = genre.id").
|
||||
LeftJoin("album_genres a on a.genre_id = genre.id").
|
||||
LeftJoin("media_file_genres f on f.genre_id = genre.id").
|
||||
GroupBy("genre.id")
|
||||
res := model.Genres{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue