प्रश्नों को 2 में विभाजित करने और विलय या ऐसा कुछ भी करने की आवश्यकता नहीं है। बस क्वेरी को बदलने की जरूरत है
परिदृश्य पर विचार करें: मेरे पास मशीन के नाम के साथ 2 इकाई प्रकार थे: टिनकान स्टेटमेंट्स, और टिंचन_एगेंट्स
इकाई पर 5 इकाई संदर्भ फ़ील्ड
उनमें से 4 नियमित इकाई संदर्भ क्षेत्र हैं और 5 वां (tincan_object) एक बहु-इकाई-प्रकार संदर्भ क्षेत्र है, प्रत्येक संदर्भ फ़ील्ड प्रकार 'एजेंट' की संस्थाओं का संदर्भ देता है।
Tincan_object संदर्भ क्षेत्र एजेंटों और गतिविधियों (एक तीसरी इकाई प्रकार) को संदर्भित कर सकता है। एक एजेंट के पास एक संपत्ति object_type है, जो या तो एजेंट या समूह हो सकता है।
मैं किसी भी संदर्भ क्षेत्र में किसी भी संभावित एजेंटों को संदर्भित करने वाला कोई भी वक्तव्य ढूंढना चाहता हूं। हमें fieldConditions के बीच एक OR ऑपरेटर की आवश्यकता होती है, लेकिन हमें बहु-इकाई प्रकार के संदर्भ फ़ील्ड के object_type की जांच करने और यह सुनिश्चित करने की भी आवश्यकता है कि यह दो संभावनाओं में से एक है।
नीचे दिए गए कोड सबसे सरल संभव का प्रतिनिधित्व करते हैं, हमारे समाधान में क्वेरी में कई अन्य स्थितियां, फ़ील्ड्स आदि थे ... इसलिए कोड को शर्तों के आदेश पर नहीं गिनने की आवश्यकता थी, या यहां तक कि अगर इन सभी क्षेत्रों की गणना की जा रही थी।
$query = new EntityFieldQuery();
$query->entityCondition('entity_type', 'tincan_statement');
$all_agents = array(4,10); //entity_ids to search for
$query->addTag('tincan_statement_get_agents');
$query->fieldCondition('tincan_actor', 'target_id', $all_agents, 'IN');
//need OR between fields conditions
$query->fieldCondition('tincan_authority', 'target_id', $all_agents, 'IN');
//need OR between fields conditions
$query->fieldCondition('tincan_instructor', 'target_id', $all_agents, 'IN');
//need OR between fields conditions
$query->fieldCondition('tincan_team', 'target_id', $all_agents, 'IN');
//need OR between fields conditions
//but then nested in the OR structure we need an AND for two columns of the multientity type reference field tincan_object
$query->fieldCondition('tincan_object', 'target_id', $all_agents, 'IN');
$query->fieldCondition('tincan_object', 'object_type', array('Agent', 'Group'), 'IN');
$results = $query->$execute();
समाधान:
उपरोक्त EntityFieldQuery में सूचना
$query->addTag('tincan_statement_get_agents');
यह क्वेरी को टैग करता है, हुक_क्वेरी_एजीए_एल्टर () के कार्यान्वयन की अनुमति देता है
/**
* Implements hook_query_TAG_alter()
* alters the query for finding agents with or without the related_agents flag
* used for Statement API Get processor EntityFieldQuery
*/
function tincan_lrs_query_tincan_statement_get_agents_alter(QueryAlterableInterface $query) {
//need to or the search for all the fields (actor, object, authority, instructor, team)
// the object_type of the object field needs to be Agent OR Group
$conditions =& $query->conditions();
// dsm($conditions); //dsm() is your friend! comes with devel module
$agent_grouping_condition = db_or();
$object_parameters = array();
$x = 0;
foreach ($conditions as $key => $condition) {
if (is_numeric($key) && isset($condition['field']) && is_scalar($condition['field'])) {
if ( (strpos($condition['field'], 'tincan_object_object_type') !== FALSE ||
strpos($condition['field'], 'tincan_object_target_id') !== FALSE ) && $condition['operator'] == 'IN') {
//u
unset($conditions[$key]);
$object_parameters[$x]['field'] = $condition['field'];
$object_parameters[$x]['value'] = $condition['value'];
$object_parameters[$x]['operator'] = $condition['operator'];
$x += 1;
}
if(strpos($condition['field'], 'tincan_actor_target_id') !== FALSE ||
strpos($condition['field'], 'tincan_instructor_target_id') !== FALSE ||
strpos($condition['field'], 'tincan_team_target_id') !== FALSE ||
strpos($condition['field'], 'tincan_authority_target_id') !== FALSE ) {
unset($conditions[$key]);
$agent_grouping_condition->condition($condition['field'], $condition['value'], $condition['operator']);
}
}
}
// create new AND condition to nest in our OR condition set for the object parameters
$object_condition = db_and();
foreach($object_parameters as $key => $param) {
$object_condition->condition($param['field'], $param['value'], $param['operator']);
}
$agent_grouping_condition->condition($object_condition);
$query->condition($agent_grouping_condition);
//By default EntityFieldQuery uses inner joins, change to left
$tables =& $query->getTables();
foreach($tables as $key => $table) {
if (strpos($key, 'field_data_tincan_object') !== FALSE ||
strpos($key, 'field_data_tincan_actor') !== FALSE ||
strpos($key, 'field_data_tincan_authority') !== FALSE ||
strpos($key, 'field_data_tincan_instructor') !== FALSE ||
strpos($key, 'field_data_tincan_team') !== FALSE ) {
if(!is_null($table['join type'])) {
$tables[$key]['join type'] = 'LEFT';
}
}
}
}