2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-11-28 07:47:10 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
|
2018-11-28 07:12:57 +00:00
|
|
|
|
namespace osu.Game.Scoring
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-03-01 01:25:21 +00:00
|
|
|
|
public class ScoreStore : MutableDatabaseBackedStoreWithFileIncludes<ScoreInfo, ScoreFileInfo>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-11-28 07:47:10 +00:00
|
|
|
|
public ScoreStore(IDatabaseContextFactory factory, Storage storage)
|
|
|
|
|
: base(factory, storage)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-28 09:33:01 +00:00
|
|
|
|
protected override IQueryable<ScoreInfo> AddIncludesForConsumption(IQueryable<ScoreInfo> query)
|
2018-11-28 11:41:48 +00:00
|
|
|
|
=> base.AddIncludesForConsumption(query)
|
2018-11-30 07:11:09 +00:00
|
|
|
|
.Include(s => s.Beatmap)
|
2020-06-13 09:18:46 +00:00
|
|
|
|
.Include(s => s.Beatmap).ThenInclude(b => b.Metadata)
|
|
|
|
|
.Include(s => s.Beatmap).ThenInclude(b => b.BeatmapSet).ThenInclude(s => s.Metadata)
|
2018-11-28 11:41:48 +00:00
|
|
|
|
.Include(s => s.Ruleset);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|