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.
- 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
- Joins support - you can write complex queries
- Based on coroutines (async)
- Easy to embed in your project
- Prisma-like interface to interact with your database
local users = users:findMany({
where = {
group = "superadmin"
}
})
assert(#users == 4)See the detailed example in the example.lua file
