DbNetSuiteCore 0.9.1-alpha
See the version list below for details.
dotnet add package DbNetSuiteCore --version 0.9.1-alpha
NuGet\Install-Package DbNetSuiteCore -Version 0.9.1-alpha
<PackageReference Include="DbNetSuiteCore" Version="0.9.1-alpha" />
<PackageVersion Include="DbNetSuiteCore" Version="0.9.1-alpha" />
<PackageReference Include="DbNetSuiteCore" />
paket add DbNetSuiteCore --version 0.9.1-alpha
#r "nuget: DbNetSuiteCore, 0.9.1-alpha"
#:package DbNetSuiteCore@0.9.1-alpha
#addin nuget:?package=DbNetSuiteCore&version=0.9.1-alpha&prerelease
#tool nuget:?package=DbNetSuiteCore&version=0.9.1-alpha&prerelease
DbNetSuiteCore
DbNetSuiteCore is a .Net Core middleware library that can be used to create data-driven grid components using just a few lines of C# the library is full self-contained and can be integrated with to any .Net Core web application with just a couple of lines of code
using DbNetLink.Middleware;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
builder.Services.AddRazorPages();
builder.Services.AddDbNetSuiteCore();
WebApplication app = builder.Build();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseDbNetSuiteCore();
app.UseEndpoints(endpoints =>
{
endpoints.MapRazorPages();
});
app.Run();
The solution comprises of the DbNetSuiteCore library and a sample application running against an SQLite database
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. 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. 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. |
-
net6.0
- ClosedXML (>= 0.100.3)
- DocumentFormat.OpenXml (>= 2.18.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Mvc (>= 2.2.0)
- Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (>= 6.0.10)
- Microsoft.Data.Sqlite (>= 6.0.10)
- Microsoft.Extensions.FileProviders.Embedded (>= 6.0.10)
- System.Data.Odbc (>= 6.0.1)
- System.Data.OleDb (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.4)
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 | 117 | 2/2/2026 |
| 2.0.81 | 107 | 1/31/2026 |
| 2.0.80 | 100 | 1/29/2026 |
| 2.0.79 | 114 | 1/22/2026 |
| 2.0.78 | 310 | 12/18/2025 |
| 2.0.75 | 228 | 12/3/2025 |
| 2.0.74 | 322 | 11/13/2025 |
| 2.0.73 | 239 | 11/5/2025 |
| 2.0.72 | 232 | 10/29/2025 |
| 2.0.65 | 233 | 10/27/2025 |
| 2.0.64 | 221 | 10/26/2025 |
| 2.0.63 | 212 | 10/22/2025 |
| 2.0.62 | 210 | 10/9/2025 |
| 2.0.61 | 218 | 10/5/2025 |
| 2.0.60 | 205 | 10/5/2025 |
| 2.0.59 | 144 | 10/4/2025 |
| 2.0.58 | 337 | 9/24/2025 |
| 2.0.57 | 326 | 9/24/2025 |
| 2.0.56 | 197 | 9/6/2025 |
| 0.9.1-alpha | 241 | 4/27/2023 |
BETA version. Currently still under active development.