Method AddAdditionalQuery
AddAdditionalQuery()
Add an additional query description to a single EntityQuery.
Declaration
public EntityQueryBuilder AddAdditionalQuery()
Returns
Type | Description |
---|---|
EntityQueryBuilder | Returns the amended EntityQuery. |
Remarks
The ability to construct an EntityQuery from multiple query descriptions is preserved for backwards compatibility, but the use of this feature is strongly discouraged in user projects. Queries with multiple query descriptions are not guaranteed to function correctly in all contexts.
The resulting EntityQuery will match all entities matched by any individual query description. In terms of
set theory, the query matches the union of its query descriptions, not the intersection.
The EntityQuery created from this builder matches entities that have a Parent component
but no Child component OR have a Child component but no Parent component.