.NET SDK for Azure Cosmos DB for the core SQL API
Перейти к файлу
Kiran Kumar Kolli 17916aa504 Fault testing with quorum reader code 2024-07-25 18:04:31 -07:00
.github [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
Microsoft.Azure.Cosmos Fault testing with quorum reader code 2024-07-25 18:04:31 -07:00
Microsoft.Azure.Cosmos.Encryption [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
Microsoft.Azure.Cosmos.Encryption.Custom [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
Microsoft.Azure.Cosmos.Samples Fault testing with quorum reader code 2024-07-25 18:04:31 -07:00
docs [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
templates [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
.editorconfig editorcofig: Adds editorcofig rules for all the VS defaults (#1827) 2020-09-18 11:53:35 -07:00
.gitattribute [INTERNAL] Line endings: Adds gitattribute to normalize line endings (#3062) 2022-03-03 20:09:51 +00:00
.gitignore Initial commit 2018-11-05 10:03:17 -08:00
.sscignore [Internal] Msdata/Direct: Refactors msdata branch with latest v3 and direct release (#3726) 2023-02-24 06:18:44 -08:00
35MSSharedLib1024.snk Remove Microsoft.Azure.Direct.MyGet dependency (#760) 2019-09-10 19:57:58 +05:30
CODEOWNERS [Internal] Msdata/Direct: Refactors msdata/direct branch with latest v3 master and `Cosmos.Direct` Release version `3.32.0` (#4200) 2023-12-01 06:33:41 +00:00
CONTRIBUTING.md [Internal] Msdata/Direct: Refactors msdata branch with latest v3 and direct release (#3726) 2023-02-24 06:18:44 -08:00
CredScanSuppressions.json Azure dev-ops YML pipelines (#634) 2019-08-06 00:22:57 +05:30
Directory.Build.props [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
Exceptions.md Documentation: Adds retry statements to exception document (#2076) 2020-12-21 10:20:28 -08:00
LICENSE Initial commit 2018-11-05 10:03:20 -08:00
Microsoft.Azure.Cosmos.sln Fault testing with quorum reader code 2024-07-25 18:04:31 -07:00
PULL_REQUEST_TEMPLATE.md [Internal] PR Lint: Fixes to use new title regex (#1699) 2020-07-14 13:51:25 -07:00
README.md [Internal] Msdata/Direct: Refactors msdata/direct branch with latest v3 master and `Cosmos.Direct` Release version `3.32.0` (#4200) 2023-12-01 06:33:41 +00:00
SECURITY.md Microsoft mandatory file (#3203) 2022-05-19 10:45:45 -07:00
SdkDesignGuidelines.md Documentation: Adds SDK guidelines (#1803) 2020-08-26 21:11:27 +05:30
ThirdPartyNotice.txt [Internal] Parser: Adds Antlr Dependancy (#1691) 2020-09-23 09:33:21 -07:00
UpdateContracts.ps1 [Internal] Msdata/Direct: Refactors msdata/direct branch with latest v3 master and `Cosmos.Direct` Release version `3.32.0` (#4200) 2023-12-01 06:33:41 +00:00
UpdateDotNetVersion.ps1 .NET 6: Refactors test and samples to use .NET 6 (#2986) 2022-01-19 11:29:59 -08:00
azure-pipelines-cron.yml Cron job (MacOS, Linux, Winows) every 6Hrs (#660) 2019-08-13 03:47:28 +05:30
azure-pipelines-ctl-publishing.yml [Internal] Msdata/Direct: Refactors msdata/direct branch with latest v3 master and Cosmos.Direct v3.30.8 (#3856) 2023-05-17 14:11:54 -07:00
azure-pipelines-encryption-custom.yml [INTERNAL] Pipeline: Adds SBOM generation (#3057) 2022-03-03 19:26:08 +00:00
azure-pipelines-encryption.yml [INTERNAL] Pipeline: Adds SBOM generation (#3057) 2022-03-03 19:26:08 +00:00
azure-pipelines-functional.yml [Internal] Pipelines: Fixes pipeline to not run on documentation (#3425) 2022-08-29 21:14:49 +00:00
azure-pipelines-nightly.yml [Internal] Msdata/Direct: Refactors msdata/direct branch with latest v3 master and Cosmos.Direct Release v3.31.5 (#4152) 2023-10-23 22:02:37 -07:00
azure-pipelines-official.yml [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
azure-pipelines-rolling.yml [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
azure-pipelines.yml [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
changelog.md [Internal] Direct : Refactores msdata/direct branch (#4465) 2024-05-21 08:14:35 -07:00
repo.config Merged PR 178986: Config files required to onboard OneBranch Ownership Enforcer: repo.config and root directory owner. 2019-01-15 21:01:08 +00:00
testkey.snk Remove Microsoft.Azure.Direct.MyGet dependency (#760) 2019-09-10 19:57:58 +05:30

README.md

NuGet NuGet Prerelease

Microsoft Azure Cosmos DB .NET SDK Version 3

This client library enables client applications to connect to Azure Cosmos DB for NoSQL. Azure Cosmos DB is a globally distributed, multi-model database service. For more information, refer to https://azure.microsoft.com/services/cosmos-db/.

CosmosClient client = new CosmosClient("https://mycosmosaccount.documents.azure.com:443/", "mysupersecretkey");
Database database = await client.CreateDatabaseIfNotExistsAsync("MyDatabaseName");
Container container = await database.CreateContainerIfNotExistsAsync(
    "MyContainerName",
    "/partitionKeyPath",
    400);

// Create an item
dynamic testItem = new { id = "MyTestItemId", partitionKeyPath = "MyTestPkValue", details = "it's working", status = "done" };
ItemResponse<dynamic> createResponse = await container.CreateItemAsync(testItem);

// Query for an item
using (FeedIterator<dynamic> feedIterator = container.GetItemQueryIterator<dynamic>(
    "select * from T where T.status = 'done'"))
{
    while (feedIterator.HasMoreResults)
    {
        FeedResponse<dynamic> response = await feedIterator.ReadNextAsync();
        foreach (var item in response)
        {
            Console.WriteLine(item);
        }
    }
}

Install via Nuget.org

Install-Package Microsoft.Azure.Cosmos

For available versions, see SDK versioning.

Microsoft Open Source Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct.

Resources:

Contributing

For details on contributing to this repository, see the contributing guide.

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.