Hi,
Some of my views are reversed as entity because I want to be able to use them in Linq query.
Because theses "entities" are in fact views, they haven't any foreign keyand so I can't use the
LeftJoin(XXXEntity.Relations.YYYY)
syntax but must use the following one
LeftJoin(qf.XXX).On(....)
In one of mys query, I want to use QuerySpec and add the same view (as entity) twice but can't figure how to set an alias in this case.
var query = qf.GenieCivilView
.From(qf.GenieCivilView
.LeftJoin(qf.StationView, "ALIAS").On(StationViewFields.Id == GenieCivilViewFields.IdStation)
To summary, I want to set an alias on a entity (corresponding to a view) in a query using QuerySpec. Is there a way to do it or not ?
Thanks in advance
- LLBLGEN : 5.6 (5.6.0) RTM - build 2019/08/20
- Database : Oracle 11g