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
SharpConnector is a .NET library designed to streamline integration with NoSQL databases. It provides a unified interface that simplifies database operations, eliminating the need to develop custom logic for each specific database connector. Since each NoSQL database has its own unique characteristics—such as being document-oriented or key-value-based—SharpConnector abstracts these differences, providing a consistent and simplified access layer to accelerate development.
12
+
SharpConnector is a .NET library designed to streamline integration with NoSQL databases. It provides a unified interface that simplifies database operations, eliminating the need to develop custom logic for each specific database connector. Since each NoSQL database has its own unique characteristics, such as being document-oriented or key-value-based, SharpConnector abstracts these differences, providing a consistent and simplified access layer to accelerate development.
13
13
14
14
## Features
15
15
@@ -130,25 +130,25 @@ Then, add the specif `ConnectorConfig` node within your *appsettings.json* file:
130
130
```
131
131
132
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
-
```
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
144
145
145
Once configured, create a new SharpConnector client, specifying the payload type (e.g., string):
0 commit comments