We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2530393 commit cc85b84Copy full SHA for cc85b84
1 file changed
README.md
@@ -100,9 +100,9 @@ let main argv =
100
} |> Async.RunSynchronously
101
```
102
103
-### Delete
+### DeleteItem
104
105
-```fsharp
+```f#
106
open FSharp.CosmosDb
107
108
let connStr = "..."
@@ -116,6 +116,19 @@ let updateUser id partitionKey =
116
|> Cosmos.execAsync
117
118
119
+### DeleteContainer
120
121
+open FSharp.CosmosDb
122
+
123
+let connStr = "..."
124
125
+connStr
126
+|> Cosmos.container "ContainerName"
127
+|> Cosmos.deleteContainer
128
+|> Cosmos.execAsync
129
+|> Async.Ignore
130
+```
131
132
# FSharp.CosmosDb.Analyzer 💡
133
134
[](https://www.nuget.org/packages/FSharp.CosmosDb)
0 commit comments