Skip to content

Commit

Permalink
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -330,6 +330,14 @@ dotnet run

The **connection string** of each provider is documented in its nuget `README`

Example snippet to create a database using SQLite looks like:

```csharp
var connection = "Data Source=todo_db.sqlite3";
var schema = DatabaseSchema.Create<TodoClient>();
var database = new SQLiteDatabase("todo_db", connection, schema);
```

<br/>

## 🚀 **Examples**

0 comments on commit fb1c156

Please sign in to comment.