March 4th, 2021

.NET Interactive with SQL!| .NET Notebooks in Visual Studio Code

Maria Naggaga
Senior Program Manager

***Please note this post is outdated. The .NET Interactive Notebooks Extension is now named Polyglot Notebooks. See here to learn more: https://devblogs.microsoft.com/dotnet/dotnet-interactive-notebooks-is-now-polyglot-notebooks/ ***

In our last post, we announced that you can create .NET Notebooks in Visual Studio Code. Today we are announcing that .NET Interactive now ships with T-SQL support in addition to C#, F#, PowerShell, JavaScript, and HTML.

The .NET Interactive team has collaborated with the Azure Data Studio team to bring SQL integration to .NET Notebooks. SQL notebooks combine the benefits of querying data with the rich visualization of notebooks.

Getting Started

First, you’ll need a Microsoft SQL Server or Azure SQL database. If you already have a SQL database, you can use that. If not, you can follow along with the examples below by installing the following:

Creating a new SQL Connection in VS Code

Once you have the requirements listed above installed, you are ready to start using SQL in .NET Interactive Notebooks in VS Code.

To create a new notebook, open the Command Palette(Ctrl+Shift+P on Windows or Cmd-Shift-P on macOS), and select .NET Interactive: Create new blank notebook. You can also create a new notebook with Ctrl+Shift+Alt+N key combination.

Every notebook has a default language. In our case, it’s C# (.NET Interactive), and we will need to switch the language to SQL (.NET Interactive). To change the language in a cell, you can either use a magic command in Jupyter (e.g. #!sql) or the VS Code notebook language selector. The language selector is in the lower right corner of the cell. Click on it and pick SQL (.NET Interactive) from the language list.

Language List

Test the SQL cell out by writing a simple SQL select statement; SELECT * FROM table_name and run the cell. SQL Cell Info

Once the cell execution is complete, a list of instructions appears on connecting to a SQL database.

Connecting to a SQL database

The SQL language support in .NET Interactive is added by installing the Microsoft.DotNet.Interactive.SqlServer package. We can do this by adding a new C# (.NET Interactive) cell and running(Click on +Code to add a new cell):

#r "nuget:Microsoft.DotNet.Interactive.SqlServer,*-*"

To learn more about connecting to a Microsoft SQL Server Database, execute the help command in a new cell.

#!connect mssql -h

help command

Now that we have all the prerequisites listed above, we can connect to database. To establish a connection, you will need a --kernel-name and the connection string to the database.

In a new C# (.NET Interactive) cell, establish a connection and label it adventureworks and add the connection string. Once this cell is executed the #!sql-adventureworks sub- kernel is available for use. connect database

We have our database connected so, let’s create a new SQL(.NET Interactive) cell and write a select query that would grab all the Adventure Works database data. Enter this SELECT * FROM AdventureWorksLT2019 and execute the cell.

add SQL Magic

After the cell runs, you will notice an info message in the available connections in the output. In this case, we only have the #!sql-adventureworks sub-kernel, but you can connect have multiple databases in a single notebook.

Querying and Visualizing Data

In a new SQL (.NET Interactive) cell, you can now specify your connection using #!sql-adventureworks magic command followed by a query against the AdventureWorks database. You will notice in the image below that since we have specified the SQL sub-kernel, we get code completion on the database tables and columns!

code completion

Once you have completed writing your SQL query,run the cell. The results of the query are displayed using the nteract Data Explorer,providing a rich interactive filter and visualization experience where the user can explore their data in a number of ways.

  • Filter and sort by column – Click on Show Filters
  • Using the toolbar, select a preferred visualization: visualization

Entity Framework Core in a SQL Notebook

EF Core is the data access API of choice for .NET developers. Bringing EF Core and SQL together in .NET Interactive Notebooks provides users the quick iteration of notebooks while providing strongly typed APIs, code completion over tables and columns, and Language-Integrated-Query (LINQ). Quickly explore your data’s shape and schema, craft queries with filtering, sorting, aggregations, and projections that seamlessly translate to SQL, and return results for analysis and visualization.

As an example, I am going to demo how you can start leveraging EF Core and quickly. I will demonstrate how you can use --create-dbcontext option to scaffold a DbContext that you can access in the C# cell.

Start by adding a new C#(.NET Interactive) cell and establish a new connection to your database label it adventureworksEF. In addition to giving a new --kernel-name, you will need the include the --create-dbcontext option.

Your new connection should look like the code snippet below; once you are done, run the cell.

#!connect mssql --create-dbcontext --kernel-name adventureworksEF <connectionString>

db context

The cell above does the following:

  • Scaffolds a DbContext and initializes an instance of it called adventureworksEF in the C# kernel.
  • Installs the Microsoft.EntityFrameworkCore.Design version package.
  • Adds a new sub-kernel #!sql-kernel-name.

In a new C# (.NET Interactive) cell, you can now start exploring and querying your data using the adventureworksEF DbContext. You will notice in the image that we continue to get code completion over tables and columns and get visualizations of our data. The visualizations are generated through dataFrame.Explore() from the nteract data explorer.

db context explore

Now, since we know the shape of our data, I can write a LINQ to query all the data in my table of a particular order number. For example

var qty = adventureworksEF.SalesOrderDetail.Where(q => q.OrderQty.Equals(4)).ToList(); qty.ExploreWithNteract()

;

LINQ

And there you have it! A simple demonstration on how you can leverage .NET Interactive notebooks with SQL and EF Core.

This brings support for T-SQL syntax highlighting, IntelliSense, and results grid support in a multi-language notebook.

Resources

Happy interactive programming!

Author

Maria Naggaga
Senior Program Manager

Maria Naggaga is a Program Manager on the Visual Studio .NET Team working on ASP.NET and .NET Interactive

20 comments

Discussion is closed. Login to edit/delete existing comments.

  • Travis Laborde

    I disagree wholeheartedly with the "this isn't useful" sentiment. This is great! Can't imagine anyone using it?

    I have a pile of LINQPad scripts compiled over the years for "doing stuff" and for "troubleshooting" and bug investigations and such. When certain bugs come to my attention, I respond faster by opening the appropriate LINQPad script which already has some of the things I want to "check first." Things like:

    Scripts like these are...

    Read more
  • David Taylor

    Thanks for all the effort Maria, but it would be so much more lovely to have a native .NET approach to interactive documentation, using the more recent work of the wider .NET team, rather than attempting to use the .ipynb json serialization format for the notebooks with the C# scripting dialect.

    Now that the .NET team is getting the live IL patching implemented (required for the hot reload effort in .NET 6....and even working in the...

    Read more
  • Alfredo Cancino Morales

    hi, please help me in theme Entity Framework of this example:
    1) yes work: #!connect mssql --kernel-name mydatabase "Persist Security Info=False; Integrated Security=true; Initial Catalog=AdventureWorks2019; Server=localhost"

    2) yes work: #!sql-mydatabase
    select * from AdventureWorks2019.Sales.Customer
    yes show data

    3)#!connect mssql --create-dbcontext --kernel-name mydatabaseEF "Persist Security Info=false; Integrated Security=true; Initial Catalog=AdventureWorks2019; Server=localhost"
    yes work: Scaffolding a DBContext....
    Installed package Microsoft.EntityFrameworkCore.Design version 3.1.8
    Kernel added: #!sql-mydatabaseEF

    3) but to use mydatabaseEF.SalesPerson.Explore();
    dont show data.

    I have Visual Studio Code
    Version:1.55.0 (user setup)

    Thanks...

    Read more
    • Elon Mallin

      Had the same problem: https://github.com/dotnet/interactive/issues/1283
      Explore() has a bug but is also obsolete and being removed.
      Use ExploreWithNteract().Display() or ExploreWithSandDance().Display() instead.

      • Alfredo Cancino Morales

        Hi Mr Elon Mallin; thanks a lot, now works.

  • Wild Michael

    I love the idea of this and it works very well so far, the perfect tool to interactively explore the data and iteratively create complex queries. However, do you have any idea when the Microsoft.DotNet.Interactive.SqlServer package will switch from EntityFrameworkCore 3.1.8 to 5.0.4? Just having IQueryable.ToQueryString() available would be very useful, for example.

    • Maria NaggagaMicrosoft employee Author

      Glad you are like the experience. Yes, we plan to update EF Core package and are tracking the issue.

  • Stepan Hakobyan

    Not working.
    Does not install the package. And I see is “SyntaxError: invalid syntax”
    (((

  • Jerzy Stachera

    What about support to postgresql or mysql ?

    • Jon SequeiraMicrosoft employee

      Adding support for other kinds of databases is trivial for statement execution. You can see our SQLite example here.

      Completion support like we've enabled for T-SQL takes a bit more work. This preview laid the groundwork for other SQL variants and query languages by integrating with the SQL Tools Service.

      Read more
  • hitesh davey

    MS team is adding too many features in Azure Data Studio which are only useful to a very small number of developers but not adding a more useful feature like result aggregate to result-pane.

    Show excel-like Result Aggregate (Sum/Count/Min/Max/Avg/Nullabe & non-nullable count) on status bar pane. This will be one of the most productive and useful features every SQL developer will like. Think about this.

  • Richard Deeming

    Well, that fails at the first hurdle:

    r “nuget:Microsoft.DotNet.Interactive.SqlServer,

    0.5s

    Installing package Microsoft.DotNet.Interactive.SqlServer, version
    PackageManagement Error 3217 Timed out resolving packages, process: ‘C:\Program Files\dotnet\dotnet.exe’ ‘msbuild -v:quiet -restore “C:\Users\richa\AppData\Local\Temp\nuget\21364–e3554cfd-8628-41ad-920b-098be79170a3\Project.fsproj” /nologo /t:InteractivePackageManagement’

    • Ziv CaspiMicrosoft employee

      Doesn’t work for me as well. It looks like any non-public NuGet feed in the user’s nuget.config file that requires authentication fails the installation of SQL.

    • Jon SequeiraMicrosoft employee

      Please give it another try. Some people ran afoul of a preview API change in VS Code notebooks that went out at the same time as our announcement. It should all be working now but please file an issue if you’re still hitting this.

      https://github.com/dotnet/interactive/issues

    • saint4eva

      use this

      r “nuget:Microsoft.DotNet.Interactive.SqlServer,

    • Richard Deeming

      And then prevents VS Code from closing:
      “The following dirty editors could not be saved to the backup location…”

      You can’t close VS Code with a “dirty” interactive notebook open. You have to close the file first, then close VS Code.

  • MgSam

    I appreciate all the hard work you guys are putting into .NET Interactive, but I don't have any use-cases for Jupyter Notebooks. Nor does anyone I know in the industry have any use cases for them. They seem like something great for demos at conferences that have little real-world applications outside (maybe) ad-hoc data science.

    What we do use heavily is C# Interactive in Visual Studio. Which was released with little fanfare and then promptly abandoned....

    Read more
    • Jiří Zídek

      I’d also rather see C# Interactive to work with .NET 5 & .NET Standard 2.0 projects (with option which runtime to use). I need C# Interactive to send its debug into output window in VS and being able to invoke line under debugger (e.g. by pressing F11 Step in, instead of pressing Enter).

    • Greg Ingram

      Yup, while I like the progress on things like this… I have to say I’m disappointed on the lack of focus for C# Interactive in Visual Studio. I’ve provided similar feedback as MgSam has suggested many, many times (blogs, UserVoice, VS, GitHub, etc.).

      I really hope (https://github.com/dotnet/roslyn/issues/51480) will be completed and added to Visual Studio.

      One can hope 🙂

    • Przemysław Kamiński

      I totally agree currently developer experience sux in C# that’s the reason why people are migrating to python JavaScript, Noone cares if .NET core is the fastest and most efficient business can pay 20% more if code will be delivered 20% faster…