You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select $->COBIE? as cobie frombis.PhysicalElement pe
join
(selectel.ecinstanceidas id,
frombis.elementas el ) as aa onpe.TypeDefinition.id =aa.idjoinbis.physicalPartition pp onpp.ecinstanceid=pe.model.id
group by cobie
we get error
Error: Expression 'ECClassId' in ECSQL statement is ambiguous.
Which basically mean that $->COBIE need to be <alias>.$->COBIE or pe.$->COBIE. This is because instance query need ECInstanceId and ECClassId and there are two ECClassId in scope. pp.ECClassId and pe.ECClassId
Describe the bug
for query
we get error
Which basically mean that
$->COBIE
need to be<alias>.$->COBIE
orpe.$->COBIE
. This is because instance query needECInstanceId
andECClassId
and there are twoECClassId
in scope.pp.ECClassId
andpe.ECClassId
reported by @glenworrall
The text was updated successfully, but these errors were encountered: