You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ Through SharpConnector, you can use a consistent interface to perform Insert, Ge
39
39
***RavenDB (document-oriented)**
40
40
***Couchbase (document-oriented)**
41
41
***DynbamoDb (key-value or document-oriented)**
42
+
***ArangoDB (multi-model)**
42
43
43
44
SharpConnector thus simplifies the development process, providing flexibility and compatibility across diverse NoSQL paradigms without the need to handle specific database implementations.
44
45
@@ -128,6 +129,19 @@ Then, add the specif `ConnectorConfig` node within your *appsettings.json* file:
128
129
}
129
130
```
130
131
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
+
131
145
Once configured, create a new SharpConnector client, specifying the payload type (e.g., string):
132
146
133
147
```csharp
@@ -169,8 +183,9 @@ Each of these libraries operates under a specific license, which governs its usa
169
183
***RavenDB**, ACID Document Database, see **license**[here](https://github.com/ravendb/ravendb/blob/v6.2/LICENSE.txt)
170
184
***Couchbase**, the official Couchbase SDK for .NET Core and Full Frameworks, see **license**[here](https://github.com/couchbase/couchbase-net-client/blob/master/LICENSE)
171
185
***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)
172
187
173
188
Each library is included to enhance the functionality of SharpConnector while adhering to its licensing terms.
174
189
175
190
### 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