2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
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
|
|
|
|
{
|
2018-11-28 15:47:10 +08:00
|
|
|
|
public class ScoreStore : MutableDatabaseBackedStore<Score>
|
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 15:47:10 +08:00
|
|
|
|
protected override IQueryable<Score> AddIncludesForConsumption(IQueryable<Score> query)
|
|
|
|
|
=> base.AddIncludesForConsumption(query).Include(s => s.Files).ThenInclude(f => f.FileInfo);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|