DbNetSuiteCore 0.9.469-beta

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

DbNetSuiteCore

DbNetSuiteCore is a .Net Core middleware Nuget package that can be used to add database driven web-reporting to any ASP.NET Core web application in minutes with just a few lines of code.

{
    using DbNetLink.Middleware;           // <= Add this line

    using Microsoft.AspNetCore.Builder;
    using Microsoft.Extensions.DependencyInjection;
    
    WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
    builder.Services.AddRazorPages();
    builder.Services.AddDbNetSuiteCore(); // <= Add this line
    
    WebApplication app = builder.Build();
    app.UseHttpsRedirection();
    app.UseStaticFiles();
    app.UseRouting();
    app.UseAuthorization();
    app.UseDbNetSuiteCore();              // <= Add this line
       
    app.UseEndpoints(endpoints =>
    {
	    endpoints.MapRazorPages();
    });

    app.Run();
}

The solution comprises of the DbNetSuiteCore library and a sample application running against an SQLite database

For more information and demos click here.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.  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
2.0.82 106 2/2/2026
2.0.81 99 1/31/2026
2.0.80 94 1/29/2026
2.0.79 101 1/22/2026
2.0.78 300 12/18/2025
2.0.75 217 12/3/2025
2.0.74 316 11/13/2025
2.0.73 229 11/5/2025
2.0.72 224 10/29/2025
2.0.65 223 10/27/2025
2.0.64 213 10/26/2025
2.0.63 205 10/22/2025
2.0.62 202 10/9/2025
2.0.61 212 10/5/2025
2.0.60 197 10/5/2025
2.0.59 137 10/4/2025
2.0.58 327 9/24/2025
2.0.57 316 9/24/2025
2.0.56 190 9/6/2025
0.9.469-beta 217 9/17/2023
Loading failed

Beta version. Currently still under active development.