Skip to content

Commit c6106de

Browse files
committed
docs: update README
1 parent 4881db4 commit c6106de

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Through SharpConnector, you can use a consistent interface to perform Insert, Ge
3939
* **RavenDB (document-oriented)**
4040
* **Couchbase (document-oriented)**
4141
* **DynbamoDb (key-value or document-oriented)**
42+
* **ArangoDB (multi-model)**
4243

4344
SharpConnector thus simplifies the development process, providing flexibility and compatibility across diverse NoSQL paradigms without the need to handle specific database implementations.
4445

@@ -128,6 +129,19 @@ Then, add the specif `ConnectorConfig` node within your *appsettings.json* file:
128129
}
129130
```
130131

132+
- ArangoDB
133+
```json
134+
{
135+
"ConnectorConfig": {
136+
"Instance": "ArangoDb",
137+
"ConnectionString": "http://localhost:8529",
138+
"Username": "username",
139+
"Password": "password",
140+
"CollectionName": "test"
141+
}
142+
}
143+
```
144+
131145
Once configured, create a new SharpConnector client, specifying the payload type (e.g., string):
132146

133147
```csharp
@@ -169,8 +183,9 @@ Each of these libraries operates under a specific license, which governs its usa
169183
* **RavenDB**, ACID Document Database, see **license** [here](https://github.com/ravendb/ravendb/blob/v6.2/LICENSE.txt)
170184
* **Couchbase**, the official Couchbase SDK for .NET Core and Full Frameworks, see **license** [here](https://github.com/couchbase/couchbase-net-client/blob/master/LICENSE)
171185
* **DynamoDb**, the official AWS SDK for .NET, see **license** [here](https://github.com/aws/aws-sdk-net/blob/main/License.txt)
186+
* **ArangoDB**, a consistent, comprehensive, minimal driver for ArangoDB, see **license** [here](https://github.com/ArangoDB-Community/arangodb-net-standard/blob/master/LICENSE)
172187

173188
Each library is included to enhance the functionality of SharpConnector while adhering to its licensing terms.
174189

175190
### Contact
176-
Please contact at francesco.delre[at]protonmail.com for any details.
191+
Please contact at francesco.delre[at]protonmail.com for any details.

0 commit comments

Comments
 (0)