Skip to content

Instantly share code, notes, and snippets.

@sh1605
sh1605 / CosmosTransactionalBatch.cs
Last active January 6, 2020 17:40 — forked from deborahc/CosmosTransactionalBatch.cs
Do a transactional batch of operations against the same partition key value in Azure Cosmos DB .NET SDK
using Microsoft.Azure.Cosmos;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
// Use the transactional batch capability in .NET SDK V3.4 or higher
namespace CosmosBatchSample
{
class Program