I'm trying to find some functionality that is somewhere between the Container Part and the Taxonomy Field.
What I'd like to do is say that Foo has a field which contains many of Bar. There are two varieties of this, the one to many and many to many. Let's just stick to the simpler one to many version.
At first pass I thought the Container might work, but it seems that a content type is limited to one container part (at least it is through the GUI admin). That means that I can't have foo.products and foo.locations (that'd be two Containers in the same ContentType.)
What might work would be a container field, but I don't see that one of those is available.
The Taxonomy Module might work but that requires that I create Bar as a taxonomy. Then go to content types and add parts to the Bar Term. This just doesn't feel right and it requires that I recreate a bunch of content types as taxonomies.
I think I could achieve this if there were a taxonomy part that I could add to foo, but unfortunately I don't see one of those either.
Maybe I should just bite the bullet and create a custom module with my domain model, but I thought I'd ask here first.
thx, Dan