{"id":18278794,"url":"https://github.com/dbnetlink/dbnetsuitecore.templates","last_synced_at":"2026-03-19T03:40:21.340Z","repository":{"id":205299505,"uuid":"713830466","full_name":"dbnetlink/DbNetSuiteCore.Templates","owner":"dbnetlink","description":"DbNetSuiteCore.Templates","archived":false,"fork":false,"pushed_at":"2025-10-25T10:02:42.000Z","size":56784,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T12:05:31.363Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbnetlink.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-03T10:22:30.000Z","updated_at":"2025-10-25T10:02:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"e4bbecce-112b-4fdb-8204-fd8d3fcf2bdd","html_url":"https://github.com/dbnetlink/DbNetSuiteCore.Templates","commit_stats":null,"previous_names":["dbnetlink/dbnetsuitecore.templates"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dbnetlink/DbNetSuiteCore.Templates","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbnetlink%2FDbNetSuiteCore.Templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbnetlink%2FDbNetSuiteCore.Templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbnetlink%2FDbNetSuiteCore.Templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbnetlink%2FDbNetSuiteCore.Templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbnetlink","download_url":"https://codeload.github.com/dbnetlink/DbNetSuiteCore.Templates/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbnetlink%2FDbNetSuiteCore.Templates/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28661874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T12:26:15.410Z","updated_at":"2026-03-19T03:40:21.334Z","avatar_url":"https://github.com/dbnetlink.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# DbNetSuiteCore\n\n**DbNetSuiteCore** is a set of ASP.Net Core application UI development components for Razor pages, MVC and Blazor Server and are designed to enable the rapid development of data driven web applications. **DbNetSuiteCore** currently supports the following data sources MSSQL, MySQL, MariaDB, PostgreSQL, Oracle, MongoDB and SQLite databases along with JSON (files and API), CSV and Excel files and the file system itself.\n\nSimply add DbNetSuiteCore to your pipeline as follows:\n```c#\n{\n    using DbNetSuiteCore.Middleware;                    // \u003c= Add this line\n\n    var builder = WebApplication.CreateBuilder(args);\n\n    builder.Services.AddDbNetSuiteCore();               // \u003c= Add this line\n\n    builder.Services.AddRazorPages();\n\n    var app = builder.Build();\n\n    app.UseDbNetSuiteCore();                            // \u003c= Add this line\n\n    app.UseHttpsRedirection();\n    app.UseStaticFiles();\n    app.UseRouting();\n    app.UseAuthorization();\n    app.MapRazorPages();\n    app.Run();\n}\n```\nYou can then add a component to your Razor page or MVC view  as follows:\n```razor\n@page\n@using DbNetSuiteCore.Enums\n@using DbNetSuiteCore.Models\n\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    @DbNetSuiteCore.Resources.StyleSheet() @* Add the stylesheet *@\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cmain\u003e\n@{\n    GridModel customerGrid = new GridModel(DataSourceType.SQLite, \"Northwind\", \"Customers\");\n    @(await DbNetSuiteCore.Control.Create(HttpContext).Render(customerGrid))\n}\n    \u003c/main\u003e\n    @DbNetSuiteCore.Resources.ClientScript() @* Add the client-side library *@\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n```razor\n\nMVC view should use Context instead of HttpContext\n...\n@{\n    GridModel customerGrid = new GridModel(DataSourceType.SQLite, \"Northwind\", \"Customers\");\n    @(await DbNetSuiteCore.Control.Create(Context).Render(customerGrid))\n}\n...\n```\n\nFor demos [click here](https://dbnetsuitecore.com/) and for the documentation [click here](https://github.com/dbnetlink/DbNetSuiteCore2/wiki) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbnetlink%2Fdbnetsuitecore.templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbnetlink%2Fdbnetsuitecore.templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbnetlink%2Fdbnetsuitecore.templates/lists"}