Package Description
License
—
Deps
1
Install Size
—
Vulns
✓ 0
Published
Jan 5, 2026
Get Started
$ dotnet add package DbWrestlerReadme
DbWrestler
Makes it easy to wrestle with LocalDB.
It's just
var localDb = new LocalDb();
var instance = localDb.GetInstance(instanceName: "MSSQLLocalDB");
instance.CreateIfNotExists();
var database = instance.GetDatabase(databaseName: "test_db");
database.CreateIfNotExists();
var connectionString = database.ConnectionString;
// off you go 👍
and off you go 👍