LINQPadQueryPlanVisualizer 2.0.0
See the version list below for details.
dotnet add package LINQPadQueryPlanVisualizer --version 2.0.0
NuGet\Install-Package LINQPadQueryPlanVisualizer -Version 2.0.0
<PackageReference Include="LINQPadQueryPlanVisualizer" Version="2.0.0" />
paket add LINQPadQueryPlanVisualizer --version 2.0.0
#r "nuget: LINQPadQueryPlanVisualizer, 2.0.0"
// Install LINQPadQueryPlanVisualizer as a Cake Addin #addin nuget:?package=LINQPadQueryPlanVisualizer&version=2.0.0 // Install LINQPadQueryPlanVisualizer as a Cake Tool #tool nuget:?package=LINQPadQueryPlanVisualizer&version=2.0.0
LINQPad.QueryPlanVisualizer
SQL Server and PostgreSQL query execution plan visualizer for LINQPad
Features
- View query execution plan inside LINQPad
- View missing indexes for query
- Share plan to https://www.brentozar.com/pastetheplan/ or https://explain.dalibo.com/
- Create missing indexes directly from LINQPad
- Open plan in SQL Server Management Studio or another default app
- Save plan to disk
Getting Started
If you use LINQPad 6, you must use version 2.0 of this library. For LINQPad 5, you must use version 1.0
The library can show query plans for LINQ to SQL
driver and Entity Framework Core 5
.
Install from NuGet
If you have a Developer or higher edition of LINQPad, you can use the LINQPadQueryPlanVisualizer
package from NuGet
to add the visualizer to your queries.
Install as plugin
To install the visualizer as a LINQPad plugin, download the latest release and drop the visualizer dll directly inside LINQPad's plugins folder (by default found at My Documents\LINQPad Plugins\NetCore3 for LINQPad 6 and My Documents\LINQPad Plugins\Framework 4.6 for LINQPad 5). The plugin will be automatically available in all your queries.
Viewing query plan
To view query plan or missing indexes, call static QueryPlanVisualizer.DumpPlan(query)
method or call DumpPlan
extension method on an IQueryable
instance. You will also need to add ExecutionPlanVisualizer
to the namespaces list (click F4 to open the dialog). If you want to dump query result as well, pass true
as a second parameter.
Product | Versions 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- LINQPad.Runtime (>= 6.7.5)
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added Support LINQPad 6
Added Support PostgreSQL