Rezoom.SQL.Provider 1.0.0

dotnet add package Rezoom.SQL.Provider --version 1.0.0
                    
NuGet\Install-Package Rezoom.SQL.Provider -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rezoom.SQL.Provider" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rezoom.SQL.Provider" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Rezoom.SQL.Provider" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rezoom.SQL.Provider --version 1.0.0
                    
#r "nuget: Rezoom.SQL.Provider, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Rezoom.SQL.Provider@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rezoom.SQL.Provider&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Rezoom.SQL.Provider&version=1.0.0
                    
Install as a Cake Tool

Tutorial & full documentation

Query playground -- try out the SQL dialect live!

Statically typed SQL for F#

Rezoom.SQL is an F# ORM for SQL databases.

It integrates with the F# compiler via a generative type provider to statically typecheck its own dialect of SQL. It knows how to translate this SQL dialect to various backends. Currently it supports SQLite, SQL Server, and PostgreSQL.

The type provider makes it fast and easy to write SQL statements, run them, and consume their results from your F# code with full type safety. You don't need to install any editor extensions or custom tooling, just add a NuGet package and you're off and running writing code like this:

animated example usage to write queries

Database schema inferred from migration scripts

In order to typecheck your queries, Rezoom.SQL has to know your database schema (so it can know, for example, that the Id column in the Users table is an int). It learns the schema by reading your migration scripts and observing what tables and views are created, columns added, and so on.

When developing the first iteration of your application (or a new feature with its own migration script), it's easy to sketch out a model then go back and change it as you code, without having to touch a real database until you're ready to run.

Here's an example. You might want to refresh the page to start the GIF from the beginning.

animated example usage to write queries

Because this is a generative type provider, it makes plain old .NET types you can use from other languages. That is, you can write an F# project that uses Rezoom.SQL and defines your migrations and queries, then reference that from C# or VB.NET projects and use the generated query types with no problem in those langages. There is even an option to represent nullable types with C#-style System.Nullable<T> instead of FSharpOption<T> to make this scenario work extra smoothly.

Check out the query playground to see what kinds of SQL you can write.

The productivity of static typing

When you make schema changes -- for example, replacing FirstName and LastName fields with a single FullName field -- it's comforting to know the compiler will point out the queries you need to update.

The typechecker also tightens up the feedback loop, so you don't waste your time tracking down typos and trivial SQL mistakes you'd normally only encounter at runtime.

Here are just a handful of possible errors you'll be informed of at compile time and can fix in seconds. There are currently over 45 different error types that can be detected at compile time.

Mistyped table names

example error on mistyped table name

Incompatible data types

example error on comparing string to int

Selecting columns not included in a GROUP BY clause

example error on selecting column not found in group by clause

Flexible migration order for working in teams

Since Rezoom.SQL understands the language, it knows that some migrations like alter table X add column Y and alter table X add column Z can be run in any order and produce the same effects.

When you're working with a team, you can take advantage of this to add the tables and columns you need for the feature you're coding, while your other team members do the same for their features -- without having to decide the One True Migration Order when you merge.

See details here.

Integration with Rezoom

You can use Rezoom.SQL by itself, as in the example code above.

But as the name implies, it's designed to work with Rezoom. When you use it with Rezoom, you can take advantage of automatic caching and combine units of business logic to share round trips to the database.

Automatic batching

With Rezoom, you build up a Plan to represent a transaction, which may involve multiple SQL commands (or web API calls, or other high-latency data manipulation).

If you have one Plan called threeTrip that makes 3 queries, and another called twoTrip that makes 2 queries, you can choose whether to combine them sequentially for 5 round trips to the database...

let sequential =
    plan {
        let! x = threeTrip
        let! y = twoTrip
        return (x, y)
    }

sequential execution diagram

Or concurrently, for 3 round trips to the database. The first two query batches sent to the database will include pending queries from both threePlan and twoTrip:

let concurrent =
    plan {
        let! x, y = threeTrip, twoTrip
        return (x, y)
    }

sequential execution diagram

Automatic caching

Each statically typed query comes with some useful info for caching:

  • A compiler-generated ID
  • A boolean indicating whether it could make sense to cache (has no side effects, does not use rand(), newid(), etc)
  • A bitmask of the tables it reads from
  • A bitmask of the tables it writes to

Rezoom uses this cache info to avoid unnecessarily re-querying for the same data during the execution of a Plan (i.e. within a transaction).

This means if you have 30 different functions that call LoadUserPermissions(currentUserId), only 1 query for permissions will actually be run when you use those functions together in a transaction. Unless, of course, you edit the permissions table during the course of the transaction, in which case the cached result will automatically be invalidated and the permissions re-queried next time they are requested.

This lets you safely check all the invariants you need for each method in your domain layer, without fear of causing mountains of redundant queries, and without any of the effort of writing your own caching layer.

Get started

To get started using RZSQL, read the tutorial. It'll get you up and running in 5 minutes or your money back.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Rezoom.SQL.Provider:

Package Downloads
Rezoom.SQL.Provider.SQLite

Convenience meta-package: Rezoom.SQL.Provider with the Microsoft.Data.Sqlite driver for SQLite.

Rezoom.SQL.Provider.TSQL

Convenience meta-package: Rezoom.SQL.Provider with the Microsoft.Data.SqlClient driver for MS SQL Server.

Rezoom.SQL.Provider.Postgres

Convenience meta-package: Rezoom.SQL.Provider with the Npgsql driver for PostgreSQL.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 230 5/16/2026
0.7.2.40976 5,160 7/3/2018
0.7.1.10316 2,028 5/8/2018
0.7.0.36923 2,454 12/1/2017
0.6.2.41728 1,569 8/11/2017
0.6.1.22661 2,226 7/30/2017
0.6.0.35237 1,465 7/29/2017
0.5.2.2716 1,499 7/19/2017
0.5.1.2675 1,869 6/21/2017
0.5.0.42555 1,434 5/12/2017
0.4.7.39338 1,474 5/3/2017
0.4.6.37120 1,499 4/6/2017
0.4.5.36481 1,487 4/6/2017
0.4.4.2148 1,486 4/5/2017
0.4.3.479 1,522 4/5/2017
0.4.2.1810 1,470 4/4/2017
0.4.1.38942 1,522 4/3/2017
0.4.0.37849 1,570 4/2/2017
0.3.3.37116 1,594 3/27/2017
0.3.2.350 1,517 3/24/2017
Loading failed

1.0.0: ALC-aware assembly resolution for .NET 8+ TP loading. Tracks modernized Rezoom.SQL.Compiler / Mapping. See the Rezoom.SQL CHANGELOG.md for the full 1.0.0 story.