Skip to content

Instantly share code, notes, and snippets.

@brendan-nobadthing
Created June 2, 2023 01:24
Show Gist options
  • Save brendan-nobadthing/f5af5fb1dedb86583af16437ab12c8c8 to your computer and use it in GitHub Desktop.
Save brendan-nobadthing/f5af5fb1dedb86583af16437ab12c8c8 to your computer and use it in GitHub Desktop.
CosmosDB BulkExecution
var serviceProvider = new ServiceCollection()
.AddSingleton(new CosmosClient(
config["CosmosConnectionString"],
new CosmosClientOptions
{
AllowBulkExecution = true,
ApplicationName = "CosmosPartitionsTest",
ConnectionMode = ConnectionMode.Direct,
EnableContentResponseOnWrite = false
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment