this post was submitted on 07 Jul 2023
16 points (100.0% liked)
Golang
2194 readers
1 users here now
This is a community dedicated to the go programming language.
Useful Links:
Rules:
- Posts must be relevant to Go
- No NSFW content
- No hate speech, bigotry, etc
- Try to keep discussions on topic
- No spam of tools/companies/advertisements
- It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
That's not a reverse ORM, that's just an ORM. Object relational mapping is independent of query building.
The active record pattern attempts to combine ORM and query building together and does so by driving queries from the models rather than the models being derived from the queries. It might be fair to call this a reverse active record pattern.