Creates a PartitionResolver that automatically creates collections as they fill up. Default fillFactor is 90%. Prefix: "Collection."
Наследование: IPartitionResolver
 public async Task<IHttpActionResult> SpilloverPartitionResolver()
 {
     string[] collections = AppSettingsConfig.MainCollection.Split(',');
     var database = await DocumentClientHelper.GetNewDatabaseAsync(_client, AppSettingsConfig.Db);
     SpilloverPartitionResolver spilloverResolver = new SpilloverPartitionResolver(_client, database);
     _client.PartitionResolvers[database.SelfLink] = spilloverResolver;
     return Ok();
 }