Check serverside leftjoins
Check serverside leftjoins
in Editor
Hi, I have a question about .net editor left joins. In my code I don't know how many and which left joins will be. And can be situations when I need to join same table few times. So I want to check editor already have left joined table. I get the list by editor.LeftJoin(). But I can't see any private field like name of joined table. Can I get this info in code?
Answers
Hmmm. Editor doesn't "make" left joins itself. You have to code them. Looking at your code you should be able to see what left joins you got.
https://editor.datatables.net/manual/net/joins#Left-Join
Just to add to that:
The first parameter of the
.LeftJoin()method tells Editor what the joined table name should be.But you mention a private property - are you looking to try and access that information externally? Why?
Allan