dal/README.md
2024-08-21 03:28:40 +02:00

338 B

DAL [WIP]

Data Accees Layer for SQL databases written in Go.

NodeJs Client

Mongodb inspired query interface:

const query = Db.In("users")
  .Find({
    fullname: { $glob: "*son" },
  })
  .Query();

// Result:
console.log(users)[
  ({ id: 25, fullname: "John Menson" }, { id: 76, fullname: "John Johnson" })
];