osu/osu.Game/Scoring/ScoreStore.cs

24 lines
787 B
C#
Raw Normal View History

// 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
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
{
public class ScoreStore : MutableDatabaseBackedStoreWithFileIncludes<ScoreInfo, ScoreFileInfo>
2018-04-13 09:19:50 +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)
=> base.AddIncludesForConsumption(query)
2018-11-30 07:11:09 +00:00
.Include(s => s.Beatmap)
.Include(s => s.Ruleset);
2018-04-13 09:19:50 +00:00
}
}