1
Làm thế nào Pony (ORM) thực hiện các thủ thuật của nó?
Pony ORM thực hiện một thủ thuật hay là chuyển đổi một biểu thức trình tạo thành SQL. Thí dụ: >>> select(p for p in Person if p.name.startswith('Paul')) .order_by(Person.name)[:2] SELECT "p"."id", "p"."name", "p"."age" FROM "Person" "p" WHERE "p"."name" LIKE "Paul%" ORDER BY "p"."name" LIMIT 2 [Person[3], Person[1]] >>> Tôi biết …