- attached example.py
If you have use the synonym feature of the ORM, eagerload doesn't have any affect if you use the synonym name. Take a look at the test script for an example. I create a column called "_bar" and a synonym called "bar" than refers to it. If I do eagerload("_bar") things work normally, if I do eagarload("bar") there isn't a join.
Example script