2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2018-11-28 15:47:10 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
using osu.Game.Database;
|
|
|
|
|
|
2018-11-28 15:12:57 +08:00
|
|
|
|
namespace osu.Game.Scoring
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-01 09:25:21 +08:00
|
|
|
|
public class ScoreStore : MutableDatabaseBackedStoreWithFileIncludes<ScoreInfo, ScoreFileInfo>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-28 15:47:10 +08:00
|
|
|
|
public ScoreStore(IDatabaseContextFactory factory, Storage storage)
|
|
|
|
|
: base(factory, storage)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-28 17:33:01 +08:00
|
|
|
|
protected override IQueryable<ScoreInfo> AddIncludesForConsumption(IQueryable<ScoreInfo> query)
|
2018-11-28 19:41:48 +08:00
|
|
|
|
=> base.AddIncludesForConsumption(query)
|
2018-11-30 15:11:09 +08:00
|
|
|
|
.Include(s => s.Beatmap)
|
2018-11-28 19:41:48 +08:00
|
|
|
|
.Include(s => s.Ruleset);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|