ECClass filter
Filter ECClassId
by set of classes in polymorphic or non-polymorphic manner.
Syntax: <classId> IS [NOT] ( [ALL|ONLY] <class-name>[, ...])
Select element where it is of type PUMP
or PIPE
.
SELECT * FROM [BisCore].[Element] WHERE [ECClassId] IS (plant.PUMP, plant.PIPE)
Select element where it is exactly of type PUMP
or PIPE
.
SELECT * FROM [BisCore].[Element] WHERE [ECClassId] IS (ONLY plant.PUMP, ONLY plant.PIPE)
Find all the element that is not of type PUMP
or PIPE
SELECT * FROM [BisCore].[Element] WHERE [ECClassId] IS NOT (plant.PUMP, plant.PIPE)
Last Updated: 15 May, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.