Categorygithub.com/nesterow/dal
repositorypackage
0.0.0
Repository: https://github.com/nesterow/dal.git
Documentation: pkg.go.dev

# README

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" })
];