Hacker News new | ask | show | jobs
by birdstheword5 1242 days ago
Hello! I've been looking for a library like this for C# and another for Python - I'm not sure which terms to Google to find them!
3 comments

For Python, it's SQLAlchemy Core, the SQL-generation part of the SQLAlchemy ORM.

https://docs.sqlalchemy.org/en/20/core/

For C# that's basically LINQ, no?
No, usually linq is used in combination with an OEM (e.g. entity Framework) to avoid writing raw sql. From the parent comment, I thought he meant something more like sqlx for rust