Hello,
I have a "PointLayer" with attributes(ObjectId,Name, Geometry) which is related to a SDE Table "Information" has the following attributes ( Owner, Created Date, Description, Title, IsLocal).
PointLayer(0)
FIELDS
--OBJECTID
-->Name
Relationships
Information(0) -- Related To Information(1)
I want to execute a search with Geometry filter on PointLayer and attribute filter on Information.
Search(Geometry=Point(x,y) and Name='xyz' and Owner='abc' and IsLocal=1)
Do I have any option to do this in one ESRI task, The result should have the geometry and attributes of all related records.
I don't want to use QueryRelatedRecords for each relationship filter.
Post the best method to do this kind of search.