├── .fantomasignore ├── global.json ├── docsSrc ├── content │ ├── logo.png │ ├── fsdocs-custom.css │ ├── fsdocs-light.css │ ├── navbar-fixed-left.css │ ├── fsdocs-dark.css │ ├── theme-toggle.js │ ├── logo.svg │ └── fsdocs-main.css ├── _menu-item_template.html ├── How_Tos │ ├── Doing_Another_Thing.md │ └── Doing_A_Thing.md ├── _menu_template.html ├── Tutorials │ └── Getting_Started.md ├── index.md ├── Explanations │ └── Background.md └── _template.html ├── .vscode ├── settings.json └── extensions.json ├── tests ├── Cosmos.Tests │ ├── Attributes.fs │ ├── Tests.fs │ └── FSharp.Azure.Cosmos.Tests.fsproj └── Directory.Build.props ├── FSharp.Azure.Cosmos.slnf ├── .git-blame-ignore-revs ├── FSharp.Azure.Cosmos.slnx ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── ISSUE_TEMPLATE.md ├── workflows │ ├── publish_release.yml │ ├── build.yml │ ├── fsdocs-gh-pages.yml │ └── publish_ci.yml ├── PULL_REQUEST_TEMPLATE.md └── copilot-instructions.md ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── src ├── Directory.Build.props └── Cosmos │ ├── AssemblyInfo.fs │ ├── IterationExtensions.fs │ ├── UniqueKey.fs │ ├── CosmosResponse.fs │ ├── TaskSeq.fs │ ├── FSharp.Azure.Cosmos.fsproj │ ├── ReadMany.fs │ ├── Create.fs │ ├── Delete.fs │ ├── Read.fs │ ├── Patch.fs │ ├── Cosmos.fs │ ├── Replace.fs │ └── Upsert.fs ├── .gitattributes ├── .config └── dotnet-tools.json ├── LICENSE ├── CHANGELOG.md ├── Directory.Packages.props ├── Directory.Build.props ├── Directory.Build.targets ├── README.md ├── .gitignore └── .editorconfig /.fantomasignore: -------------------------------------------------------------------------------- 1 | # Ignore AssemblyInfo files 2 | AssemblyInfo.fs 3 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "9.0.300", 4 | "rollForward": "latestMinor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /docsSrc/content/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Azure.Cosmos/HEAD/docsSrc/content/logo.png -------------------------------------------------------------------------------- /docsSrc/_menu-item_template.html: -------------------------------------------------------------------------------- 1 |
PM> Install-Package FSharp.Azure.Cosmos18 |
Step-by-step guide to get started with FSharp.Azure.Cosmos.
31 |Guides you through the steps involved in addressing key problems and use-cases.
42 |Discusses key topics and concepts at a fairly high level and provide useful background information and explanation..
53 |Contain technical reference for APIs.
64 |