You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Question,
I am using the following to get releases of a release group using: ReleaseGroup releaseGroupList =ReleaseGroup.GetAsync(releaseGroup.Id, "artists", "releases");``
and then uses releaseGroupList.Releases with LINQ to get `Offical` status,
Is there a more elegant way to do a method?
The text was updated successfully, but these errors were encountered:
varquery=newQueryParameters<Release>(){{"rgid", releaseGroupId }};// Get releases with status = official.
query.Add("status","official");varreleases= Release.SearchAsync(query);
Question,
I am using the following to get releases of a release group using:
ReleaseGroup releaseGroupList =
ReleaseGroup.GetAsync(releaseGroup.Id, "artists", "releases");``and then uses
releaseGroupList.Releases
with LINQ to get `Offical` status,Is there a more elegant way to do a method?
The text was updated successfully, but these errors were encountered: