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
Hello,
With EDMX migration code I fail in joining two tables: using Method syntax the properties of the 2nd table do not appear and prevent defining the InnerKeySelctor (Only the External Declaration options appear).
This causes an error and I cannot compile.
Example:
var list = db.PP.Where(pp => pp.F0 == 1).Join(db.OP, pp => pp.F1, op => op. , (pp, op) => new {pp, op}).Select(pp => pp.F3_ID).ToList(); Here for op the properteis do not appear.
Surprisingly, using Query syntax the properties appear and the join is performed ok.
Please advise.
The text was updated successfully, but these errors were encountered:
.Net Core 3.0 isn't supported yet, I have a couple of problems I still have to solve (but currently at a stalemate as I have no clue how to proceed on this). You can follow the progress at #67.
Hello,
With EDMX migration code I fail in joining two tables: using Method syntax the properties of the 2nd table do not appear and prevent defining the InnerKeySelctor (Only the External Declaration options appear).
This causes an error and I cannot compile.
Example:
var list = db.PP.Where(pp => pp.F0 == 1).Join(db.OP, pp => pp.F1, op => op. , (pp, op) => new {pp, op}).Select(pp => pp.F3_ID).ToList();
Here for op the properteis do not appear.
Surprisingly, using Query syntax the properties appear and the join is performed ok.
Please advise.
The text was updated successfully, but these errors were encountered: