mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Connection -> context
This commit is contained in:
@ -10,12 +10,12 @@ namespace osu.Game.Database
|
||||
public abstract class DatabaseBackedStore
|
||||
{
|
||||
protected readonly Storage Storage;
|
||||
protected readonly OsuDbContext Connection;
|
||||
protected readonly OsuDbContext Context;
|
||||
|
||||
protected DatabaseBackedStore(OsuDbContext connection, Storage storage = null)
|
||||
protected DatabaseBackedStore(OsuDbContext context, Storage storage = null)
|
||||
{
|
||||
Storage = storage;
|
||||
Connection = connection;
|
||||
Context = context;
|
||||
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user