Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit 1ef2cec

Browse files
committed
2 parents 4c54797 + 4089d44 commit 1ef2cec

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,13 @@ db.DeleteById<User>(1, 2, 3);
205205
You can use the following methods to create and drop parts of your database:
206206

207207
```csharp
208+
// databases (does not work for OracleDB and Sqlite)
209+
db.CreateDatabase("test_db");
210+
db.CreateDatabaseIfNotExists("test_db");
211+
212+
db.DropDatabaseIfExists("test_db");
213+
db.DropDatabase("test_db");
214+
208215
// tables
209216
db.CreateTable<User>();
210217
db.CreateTables(typeof(User), typeof(Address));

0 commit comments

Comments
 (0)