An open API service indexing awesome lists of open source software.

https://github.com/saifsaidi/litedb.tables

LiteDB.Tables - Display LiteDB Content as Interactive Tables
https://github.com/saifsaidi/litedb.tables

dotnet litedb

Last synced: 7 months ago
JSON representation

LiteDB.Tables - Display LiteDB Content as Interactive Tables

Awesome Lists containing this project

README

          

# LiteDb.Tables
- Display litedb as tables or json in **web-based interfaces**.
- Export tables to **Excel**.
- Sort, Search data.

## Usage

```bash
// LiteDb.Tables Services
builder.Services.AddLiteDbTables(options =>
{
options.ConnectionString = "Filename=MyDatabase.db;Connection=shared;";
});

```

```bash
app.MapLiteDbTables();
```

## Endpoints

- /litedb/tables: Get a list of tables with row count and connection string.
- /litedb/tables/json: Get a list of tables in JSON format.
- /litedb/{tableName}/html: Get the table rendered as an HTML page with interactive features.
- /litedb/{tableName}/json: Get the table data in JSON format.

## Demo

![Screenshot 2025-01-18 at 00-30-48 persons](https://github.com/user-attachments/assets/2a64a99e-b11a-45a9-b8dc-4ec178c525c7)