https://github.com/dbnetlink/dbnetsuitecoreapp
https://github.com/dbnetlink/dbnetsuitecoreapp
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dbnetlink/dbnetsuitecoreapp
- Owner: dbnetlink
- Created: 2023-05-22T14:47:32.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-28T11:19:06.000Z (over 2 years ago)
- Last Synced: 2025-08-25T17:02:50.219Z (10 months ago)
- Language: HTML
- Size: 5.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
```c#
{
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](https://dbnetsuitecoreapp.azurewebsites.net/).