コード例 #1
0
        /// <summary>
        ///     Serializes the key list
        /// </summary>
        protected virtual async Task SerializeIndexesAsync()
        {
            var dictionary = IndexList.ToDictionary(item => item.Key, item => item.Index);

            await Driver.SerializeIndexAsync(typeof(T), Name, dictionary).ConfigureAwait(false);
        }