using System; using System.Linq; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Sorting; using MediaBrowser.Model.Querying; namespace Emby.Server.Implementations.Sorting { /// /// Class AlbumArtistComparer /// public class AlbumArtistComparer : IBaseItemComparer { /// /// Compares the specified x. /// /// The x. /// The y. /// System.Int32. public int Compare(BaseItem x, BaseItem y) { return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase); } /// /// Gets the value. /// /// The x. /// System.String. private static string GetValue(BaseItem x) { var audio = x as IHasAlbumArtist; return audio?.AlbumArtists.FirstOrDefault(); } /// /// Gets the name. /// /// The name. public string Name => ItemSortBy.AlbumArtist; } }