Verso.Ado 1.0.6

dotnet add package Verso.Ado --version 1.0.6
                    
NuGet\Install-Package Verso.Ado -Version 1.0.6
                    
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="Verso.Ado" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Verso.Ado" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="Verso.Ado" />
                    
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 Verso.Ado --version 1.0.6
                    
#r "nuget: Verso.Ado, 1.0.6"
                    
#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 Verso.Ado@1.0.6
                    
#: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=Verso.Ado&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=Verso.Ado&version=1.0.6
                    
Install as a Cake Tool

Verso.Ado

SQL database connectivity extension for Verso notebooks.

Overview

Provider-agnostic SQL support built on the public Verso extension interfaces. Connect to any ADO.NET database, execute SQL with paginated result tables, share variables between SQL and C# cells, inspect schema metadata, and scaffold EF Core DbContext classes at runtime.

Features

  • Connection management via #!sql-connect and #!sql-disconnect with named connections and provider auto-discovery
  • SQL kernel with execution, @parameter binding from C# variables, GO batch separators, and row limiting
  • IntelliSense for SQL keywords, table/column names, and @variable suggestions
  • Paginated HTML result tables with column type tooltips, NULL styling, and truncation warnings
  • CSV and JSON export toolbar actions
  • Schema inspection via #!sql-schema
  • EF Core scaffolding via #!sql-scaffold
  • Polyglot Notebooks migration — automatic conversion of #!connect and #!sql patterns during .ipynb import

Installation

dotnet add package Verso.Ado

This package depends only on Verso.Abstractions and System.Data.Common. Supply your own ADO.NET provider (e.g. Microsoft.Data.SqlClient, Npgsql) via #r "nuget:" in your notebook.

Quick Start

#!sql-connect "Server=localhost;Database=Northwind" --name db --provider SqlClient
SELECT TOP 10 * FROM Customers WHERE Country = @country
Product 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.6 0 3/4/2026
1.0.5 53 2/28/2026
1.0.4 79 2/23/2026
1.0.3 78 2/22/2026
1.0.2 88 2/21/2026
1.0.1 84 2/21/2026
1.0.0 83 2/20/2026