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
If the join expression is defined in the model class, it should be possible to write it as shown below.
varquery=Sql.From(()=>od).InnerJoin(()=>o)
Note that if there are multiple table joins (for example, creator and updater), this method cannot be used and a runtime error will occur.
Also, if you do not want to use the join expression defined in the model class, you should be able to avoid this by defining it manually. (Previous specifications)
The text was updated successfully, but these errors were encountered:
We would like to be able to omit the table join if the join expression is defined in the model class.
Currently, this kind of writing is necessary.
If the join expression is defined in the model class, it should be possible to write it as shown below.
Note that if there are multiple table joins (for example, creator and updater), this method cannot be used and a runtime error will occur.
Also, if you do not want to use the join expression defined in the model class, you should be able to avoid this by defining it manually. (Previous specifications)
The text was updated successfully, but these errors were encountered: