Typo in example in ORM documentation

Issue #3114 closed
wolfgang p created an issue

On http://docs.sqlalchemy.org/en/rel_0_9/orm/loading.html#sqlalchemy.orm.subqueryload_all there is an example for method chaining. It contains a typo. There ought to be a comma (not a period) between the two subqueryloads, I think.

Comments (3)

  1. Mike Bayer repo owner

    nope, that is the API, method chaining means you can link loader options together now, such that preivously:

    subqueryload_all("a.b")
    

    is now:

     subqueryload("a").subqueryload("b")
    
  2. Log in to comment