DataRelation does not support LEFT JOIN. Is this true?

  • Thread starter Thread starter Toni
  • Start date Start date
T

Toni

Hello folks,

we have been trying to use DataRelation that returns LEFT JOIN result
instead of INNER JOIN which seems to be the default behaviour.

Is there a way to do this?


TIA,
Toni
 
Hi,

Do you need to create relation between DataTables where it will be like a
left join? In this case you need to define PK in a left (parent) table and
FK constraint in a right (child) table. Than create relation based on
fields, involved into PK and FK. It will work
 
Back
Top