diff --git a/Storage/Storage/LCQuery.cs b/Storage/Storage/LCQuery.cs index c9396f7..b04d457 100644 --- a/Storage/Storage/LCQuery.cs +++ b/Storage/Storage/LCQuery.cs @@ -351,7 +351,14 @@ namespace LeanCloud.Storage { throw new ArgumentNullException(nameof(objectId)); } string path = $"classes/{ClassName}/{objectId}"; - Dictionary response = await LCApplication.HttpClient.Get>(path); + Dictionary queryParams = null; + string includes = Condition.BuildIncludes(); + if (!string.IsNullOrEmpty(includes)) { + queryParams = new Dictionary { + { "include", includes } + }; + } + Dictionary response = await LCApplication.HttpClient.Get>(path, queryParams: queryParams); return DecodeLCObject(response); }