redb

(★ 23)

Typed object storage for .NET. Schema = C# class. Full LINQ. Zero migrations. Postgres & MSSQL.

File Explorer

  • .gitignore
  • CHANGELOG.md
  • COLLATION.md
  • CONTRIBUTING.md
  • DATETIME.md
  • Directory.Build.props
  • LICENSE
  • NOTICE
  • README.md
  • redb.sln
  • ROADMAP.md
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

dotnet add package

View Details ▼

Add or update a .NET package reference in a project file.

dotnet add package {{package}}

Add a package to the project in the current directory:

dotnet add {{path/to/file.csproj}} package {{package}}

Add a package to a specific project:

dotnet add package {{package}} {{[-v|--version]}} {{1.0.0}}

Add a specific version of a package to the project:

🔍

dotnet run

View Details ▼

Run a .NET application without explicit compile or launch commands.

dotnet run

Run the project in the current directory:

dotnet run --project {{path/to/file.csproj}}

Run a specific project:

dotnet run -- {{arg1=foo arg2=bar ...}}

Run the project with specific arguments:

🔍

dotnet tool

View Details ▼

Manage .NET tools and search published tools in NuGet.

dotnet tool install {{[-g|--global]}} {{dotnetsay}}

Install a global tool (don't use `--global` for local tools):

dotnet tool restore

Install tools defined in the local tool manifest:

dotnet tool update {{[-g|--global]}} {{tool_name}}

Update a specific global tool (don't use `--global` for local tools):

🔍

dotnet

View Details ▼

Cross platform .NET tools for .NET Core.
Some subcommands such as `build` have their own usage documentation.

dotnet new {{template_short_name}}

Initialize a new .NET project:

dotnet restore

Restore NuGet packages:

dotnet run

Build and execute the .NET project in the current directory:

// repository documentation