[Sqlalchemy-tickets] Issue #3142: with_entities improvement (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Kirill I. <iss...@bi...> - 2014-07-28 04:53:33
|
New issue 3142: with_entities improvement https://bitbucket.org/zzzeek/sqlalchemy/issue/3142/with_entities-improvement Kirill Ivantsov: Hello there! I'm looking the way how to access related object field with use of with_entities method. I want to use this like ``` #!python lim_results = self.product.query.with_entities(models.Product.category.name).all() ``` Could i override this method? |