Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 2.42 KB

File metadata and controls

49 lines (41 loc) · 2.42 KB

Meadows ORM is an ORM system for Garry's Mod based on the Atomic Framework, which allows you to easily integrate it into your Atomic projects.

Features

  • Declarative style - you do not need to write SQL code
  • Automatic values escaping - you do not need to be care of SQL injections
  • Relations support
  • Based on coroutines (async)
  • Easy to embed in your project
  • Prisma-like interface to interact with your database
  • Indexes support
  • [Caching] support
    • *Indexes allows you to get values from cache with O(1) complexity
  • Joins support - you can write complex queries with ease
  • Prebuilded queries

Examples

Basics

Advanced

  • Relations — relationships between tables
  • Entity — custom entity creation
  • Cache — cached queries and CRUD operations
  • JSON — working with JSON data