linq2db.cli
6.3.0
Prefix Reserved
dotnet tool install --global linq2db.cli --version 6.3.0
dotnet new tool-manifest
dotnet tool install --local linq2db.cli --version 6.3.0
#tool dotnet:?package=linq2db.cli&version=6.3.0
nuke :add-package linq2db.cli --version 6.3.0
LINQ to DB CLI 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.
Installation
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
Choosing 32-bit vs 64-bit (Windows)
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.mdbdatabases — Jet is 32-bit-only)Microsoft.ACE.OLEDB.12.0/.16.0when matching 32-bit Microsoft Office is installed (provider bitness must match Office bitness)- SQL Server Compact Edition — driver must match process bitness
- SAP HANA — driver must match process bitness; the HANA ODBC driver ships under different names for x86 vs x64, and the native dotnet client is also bitness-specific
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
Use
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 forscaffoldcommanddotnet linq2db scaffold <options>: performs database model scaffoldingdotnet linq2db template [-o template_path]: creates base T4 template file for scaffolding customization code
For list of available options, use dotnet linq2db help scaffold command.
Usage Examples
Generate SQLite database model in current folder
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"
Generate SQLite database model using response file
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:
- you can store scaffolding options for your project in source control and share with other developers
- with many options it is hard to work with command line
- some options not available from CLI or hard to use due to CLI nature (e.g. various issues with escaping of parameters)
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 6.3.0 | 421 | 5/18/2026 |
| 6.2.1 | 3,734 | 3/17/2026 |
| 6.2.0 | 562 | 3/12/2026 |
| 6.1.0 | 8,231 | 12/15/2025 |
| 6.0.0 | 1,399 | 12/5/2025 |
| 6.0.0-rc.3 | 409 | 8/14/2025 |
| 6.0.0-rc.2 | 156 | 7/31/2025 |
| 6.0.0-rc.1 | 202 | 7/17/2025 |
| 6.0.0-preview.4 | 2,582 | 3/26/2025 |
| 6.0.0-preview.3 | 410 | 1/28/2025 |
| 6.0.0-preview.2 | 299 | 1/22/2025 |
| 6.0.0-preview.1 | 656 | 6/17/2024 |
| 5.4.1.9 | 3,586 | 10/17/2025 |
| 5.4.1 | 59,290 | 4/7/2024 |
| 5.4.0 | 20,279 | 2/20/2024 |
| 5.3.2 | 5,086 | 10/18/2023 |
| 5.3.1 | 669 | 10/16/2023 |
| 5.3.0 | 809 | 10/12/2023 |
| 5.2.2 | 6,505 | 6/8/2023 |