Skip to content

Commit 89f419d

Browse files
committed
Update readme in storage provider
1 parent f87fac0 commit 89f419d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Readme.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ Currently, there are 4 Storage-Provider:
9898
* RavenDb - As the name suggests for RavenDb. RavenDb automatically creates all the documents, if a database name is provided.
9999
* Sqlite - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
100100
* SqlServer - Based on EF Core, it can be easily adapted for other Sql Dialects. The tables are automatically created.
101+
* MySql - Based on EF Core - also supports MariaDB.
101102

102103
The default (when you clone the repository) is the `InMemory` option. That means every time you restart the service, all posts and related objects are gone.
103104

@@ -231,8 +232,10 @@ Note the ConnectionString format of SQL Server needs to be consistent:
231232
```
232233
"ConnectionString": "Data Source=sql;Initial Catalog=master;User ID=sa;Password=<YOURPASSWORD>;TrustServerCertificate=True;MultiSubnetFailover=True"
233234
```
234-
For MySql Change following
235+
236+
For MySql use the following:
237+
235238
```
236239
"PersistenceProvider": "MySql"
237-
"ConnectionString": "Server=YOURSERVER;User ID=YOURUSERID;Password=YOURPASSWORD;Database=YOURDATABAS"
240+
"ConnectionString": "Server=YOURSERVER;User ID=YOURUSERID;Password=YOURPASSWORD;Database=YOURDATABASE"
238241
```

0 commit comments

Comments
 (0)