Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbnetlink/dbnetsuitecore
https://github.com/dbnetlink/dbnetsuitecore
Last synced: about 22 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/dbnetlink/dbnetsuitecore
- Owner: dbnetlink
- Created: 2023-05-17T17:54:22.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-24T16:21:16.000Z (7 months ago)
- Last Synced: 2024-11-05T12:26:08.667Z (about 2 months ago)
- Language: HTML
- Size: 46.7 MB
- Stars: 1
- 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 lineusing 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://dbnetsuitecore.com/).