PgHintPlan 0.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package PgHintPlan --version 0.0.3
NuGet\Install-Package PgHintPlan -Version 0.0.3
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="PgHintPlan" Version="0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PgHintPlan --version 0.0.3
#r "nuget: PgHintPlan, 0.0.3"
#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.
// Install PgHintPlan as a Cake Addin
#addin nuget:?package=PgHintPlan&version=0.0.3

// Install PgHintPlan as a Cake Tool
#tool nuget:?package=PgHintPlan&version=0.0.3

PgHintPlan

Getting Started

Run

dotnet add package PgHintPlan.EntityFrameworkCore

Import the library

using PgHintPlan.EntityFrameworkCore;

Enable the extension

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.UsePgHintPlan();
}

Configure the connection

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
    optionsBuilder.UsePgHintPlan();
    optionsBuilder.UseNpgsql();
}

Disable Hash Join

var items = await ctx.Items.EnableHashJoin(false).ToListAsync();

Force nested loop for the joins on the tables

var DATA = await ctx.Products
                .Join(ctx.Items,
                (p) => p.Id,
                (i) => i.ProductId,
                (p, i) => new
                {
                    ProductId = p.Id,
                    Id        = i.Id
                })
                .NestLoop(ctx.Items.EntityType, ctx.Products.EntityType)
                .ToListAsync();

Force index scan on the table

var index = ctx.Items.EntityType.GetIndexes().FirstOrDefault();
var items = await ctx.Items.IndexScan(ctx.Items.EntityType,index).ToListAsync();
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on PgHintPlan:

Package Downloads
PgHintPlan.EntityFrameworkCore

pg_hint_plan support for EntityFrameworkCore

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 118 2/2/2024
1.0.2 81 2/2/2024
1.0.1 89 2/2/2024
0.0.3 79 2/1/2024
0.0.2 83 2/1/2024
0.0.1 83 2/1/2024