From 6f7ba55f8010e37c197ec0db2f86756041c78d55 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 25 Oct 2017 22:19:47 +0900 Subject: [PATCH] Fill out xmldoc --- osu.Game/Database/DatabaseBackedStore.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Database/DatabaseBackedStore.cs b/osu.Game/Database/DatabaseBackedStore.cs index 2944b9eeca..bc1b7132eb 100644 --- a/osu.Game/Database/DatabaseBackedStore.cs +++ b/osu.Game/Database/DatabaseBackedStore.cs @@ -24,9 +24,9 @@ namespace osu.Game.Database /// /// Refresh an instance potentially from a different thread with a local context-tracked instance. /// - /// - /// - /// + /// The object to use as a reference when negotiating a local instance. + /// An optional lookup source which will be used to query and populate a freshly retrieved replacement. If not provided, the refreshed object will still be returned but will not have any includes. + /// A valid EF-stored type. protected virtual void Refresh(ref T obj, IEnumerable lookupSource = null) where T : class, IHasPrimaryKey { var context = GetContext();