Search code examples
dynamics-crmfetchxml

FetchXML Doing Joins


Let's say I have this:

<entity name = "account">

...
...

<link-entity name="opportunity" from ="accountid" to ="accountid" link-type="outer">

How do I know if this is a left outer join, a right outer join, or a full outer join?


Solution

  • It is left outer join. Reference

    And right outer join is not supported. Reference

    Same applies to full outer join. Community discussion