
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
linq2db.cli
Advanced tools
NOTE: This is not a library you could reference from your project, but command line utility, installed using
dotnet toolcommand (see installation notes).
See this page for more detailed help.
Requires .NET 8 or higher.
Install as global tool:
dotnet tool install -g linq2db.cli
Update:
dotnet tool update -g linq2db.cli
General information on .NET Tools could be found here
The tool ships as per-RID packages (win-x64, win-x86, win-arm64, plus Linux + macOS variants). A bare dotnet tool install -g linq2db.cli picks one based on your SDK architecture (usually x64).
The following providers REQUIRE a 32-bit process — install the win-x86 variant if you use any of them:
Microsoft.Jet.OLEDB (legacy Access .mdb databases — Jet is 32-bit-only)Microsoft.ACE.OLEDB.12.0 / .16.0 when matching 32-bit Microsoft Office is installed (provider bitness must match Office bitness)Install the x86 variant explicitly:
dotnet tool install -g linq2db.cli --arch x86
A single tool ID can only have one architecture installed under -g; reinstalling replaces. To keep both x86 and x64 available, install each to a separate path and manage PATH order yourself:
dotnet tool install linq2db.cli --tool-path %USERPROFILE%\tools\x64 --arch x64
dotnet tool install linq2db.cli --tool-path %USERPROFILE%\tools\x86 --arch x86
To invoke tool use dotnet-linq2db <PARAMETERS> or dotnet linq2db <PARAMETERS> command.
Available commands:
dotnet linq2db help: prints general helpdotnet linq2db help scaffold: prints help for scaffold commanddotnet linq2db scaffold <options>: performs database model scaffoldingdotnet linq2db template [-o template_path]: creates base T4 template file for scaffolding customization codeFor list of available options, use dotnet linq2db help scaffold command.
This command uses minimal set of options, required for scaffolding (database provider and connection string) and generates database model classes in current folder.
dotnet linq2db scaffold -p SQLite -c "Data Source=c:\Databases\MyDatabase.sqlite"
This command demonstrates use of configuration file with scaffold options combined with command line options.
dotnet linq2db scaffold -i database.json -c "Data Source=c:\Databases\MyDatabase.sqlite"
database.json file:
{
"general": {
"provider": "SQLite",
"connection": "Data Source=c:\\Databases\\TestDatabase.sqlite",
"output": "c:\\MyProject\\DbModel",
"overwrite": true
}
}
Here you can see that connection string passed using both command line and json config file. In such cases option passed in command line takes precedence.
Scaffold configs (response files) are convenient in many ways:
FAQs
LINQ to DB CLI is a dotnet tool for Linq To DB database model scaffolding.
We found that linq2db.cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.