/// <summary> /// Adds MongoDB storage of <typeparamref name="TValue"/> value type with <typeparamref name="TKey"/> key type. /// </summary> public static StorageBuilder AddMongo <TKey, TValue>(this StorageBuilder builder) => builder .AddMongo(typeof(TKey), typeof(TValue));