mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 19:57:25 +09:00
24 lines
888 B
C#
24 lines
888 B
C#
// 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.
|
|
|
|
using System.Linq;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using osu.Framework.Platform;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public abstract class MutableDatabaseBackedStoreWithFileIncludes<T, U> : MutableDatabaseBackedStore<T>
|
|
where T : class, IHasPrimaryKey, ISoftDelete, IHasFiles<U>
|
|
where U : INamedFileInfo
|
|
{
|
|
protected MutableDatabaseBackedStoreWithFileIncludes(IDatabaseContextFactory contextFactory, Storage storage = null)
|
|
: base(contextFactory, storage)
|
|
{
|
|
}
|
|
|
|
protected override IQueryable<T> AddIncludesForConsumption(IQueryable<T> query) =>
|
|
base.AddIncludesForConsumption(query)
|
|
.Include(s => s.Files).ThenInclude(f => f.FileInfo);
|
|
}
|
|
}
|