TabBlazor.QuickTable.EntityFramework 0.15.26-beta

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

TabBlazor.QuickTable.EntityFramework

Entity Framework Core integration for TabBlazor QuickTable. Adds an async query executor so QuickTable can page, sort, and filter IQueryable<T> sources backed by EF Core without buffering the full result set.

Docs · GitHub

Install

dotnet add package TabBlazor.QuickTable.EntityFramework

Setup

Register the EF adapter alongside AddTabBlazor:

builder.Services.AddTabBlazor();
builder.Services.AddQuickTableEntityFrameworkAdapter();

Now QuickTable will execute IQueryable<T> items providers using EF Core's async APIs (ToListAsync, CountAsync, etc.).

Example

<QuickTable Items="db.Customers" Pagination="pagination">
    <PropertyColumn Property="c => c.Name" Sortable="true" />
    <PropertyColumn Property="c => c.Email" />
</QuickTable>

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
0.15.26-beta 27 5/11/2026
0.15.24-beta 28 5/11/2026
0.15.22-beta 35 5/6/2026
0.15.19-beta 41 5/5/2026
0.15.14-beta 45 5/5/2026
0.15.5-beta 54 4/15/2026
0.14.68-beta 59 3/31/2026
0.14.64-beta 58 3/6/2026
0.14.61-beta 61 2/11/2026
0.14.59-beta 76 1/19/2026
0.14.57-beta 188 12/22/2025
0.14.49-beta 259 10/19/2025
0.14.42-beta 253 2/7/2025
0.14.37-beta 130 2/6/2025
0.14.35-beta 129 2/3/2025
0.14.33-beta 115 1/28/2025
0.14.31-beta 121 1/28/2025
0.14.29-beta 115 1/28/2025
0.14.28-beta 118 1/23/2025
0.14.26-beta 151 1/3/2025
Loading failed