예제 #1
0
        public override StorageQueryResult <T> ExecuteQuery(string context, int?pageSize = null)
        {
            var queryContext = TableStorageQueryContext.Create(context, pageSize);

            return(ExecuteQuery(queryContext));
        }
예제 #2
0
        public override async Task <StorageQueryResult <T> > ExecuteQueryAsync(string context, int?pageSize = null)
        {
            var queryContext = TableStorageQueryContext.Create(context, pageSize);

            return(await ExecuteQueryAsync(queryContext).ConfigureAwait(false));
        }