Tagged Questions
7
votes
1answer
224 views
Is EntityFieldQuery really this inefficient?
I am an admitted newbie to the Entity API, but am trying to cure that. I'm working on a site that uses a number of content types with various fields attached to them; nothing fancy. So, when I want ...
2
votes
1answer
139 views
Best way to set up data architecture
I have a system where (to start) I have three types of data I need to store. I'm familiar with relational databases so I'm going to describe it in those terms. The Author table just has a couple ...
1
vote
2answers
937 views
EntityFieldQuery fieldCondition
I have the following code:
$query = new EntityFieldQuery();
$result = $query
->entityCondition('entity_type', 'field_collection_item', '=')
->propertyCondition('field_name', ...