TCDev API Generator
  • 😎Welcome!
  • 🧙Lets get started
  • 1️⃣1⃣ Configuration & Setup
    • 🔧Configuration Options
  • 2️⃣2⃣ Database Options
  • 3️⃣3⃣ Create your first API
  • ⁉️Samples
  • Reference
    • 🔧Configuration Options
    • 🤏API Behaviour
    • 🗃️Customizing Database
    • ❗Additional functionality
    • ⭐Hooks & Events
    • 🔓Authentication
Powered by GitBook
On this page

Was this helpful?

Lets get started

Quick and easy first steps with the library

Install the library

The best way to use the API Generator is to just use the Nuget package:

Install required dependencies

dotnet add package TCDev.APIGenerator dotnet add package TCDev.APIGenerator.Data dotnet add package TCDev.APIGenerator.Schema

Install further dependencies on demand The APIGenerator comes with a few optional dependencies out of which you need to pick at least the database ones to use the API properly. Install either of these for the matching database: TCDev.APIGenerator.Data.SQL TCDev.APIGenerator.Data.SQLite TCDev.APIGenerator.Data.Postgres TCDev.APIGenerator.Data.InMemory Further available packages for additional features: TCDev.APIGenerator.OData // If you want to use any OData features

Another option is to just use the packages for the Database you want to use directly, it will auto-install the needed dependencies, you can start like this: dotnet add package TCDev.APIGenerator.Data.SQL

dotnet add package TCDev.APIGenerator.OData

PreviousWelcome!Next1⃣ Configuration & Setup

Last updated 2 years ago

Was this helpful?

🧙