Changeset 356 for elixir/trunk/TODO
- Timestamp:
- 07/08/08 11:07:14 (4 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/TODO (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/TODO
r347 r356 84 84 instead of the acts_as_taggable Jonathan demonstrated 85 85 86 - implement something like: 87 88 class A(Entity): 89 has_many('b', of_kind='B') 90 has_many('b_filtered', of_kind='B', filter=lambda c: c.extra < 10) 91 class B(Entity): 92 has_field('extra', Integer) 93 belongs_to('a', of_kind='A') 94 95 this is the more or less the same as what is described at: 86 - support custom selectable on relationships, as is done at: 96 87 97 88 http://spyced.blogspot.com/2007/01/why-sqlalchemy-impresses-me.html
