J'essaye de joindre trois tables mais je ne comprends pas la méthode ...
J'ai terminé joindre 2 tables
var entryPoint = dbContext.tbl_EntryPoint
.Join(dbContext.tbl_Entry,
c => c.EID,
cm => cm.EID,
(c, cm) => new
{
UID = cm.OwnerUID,
TID = cm.TID,
EID = c.EID,
}).
Where(a => a.UID == user.UID).Take(10);
Je voudrais inclure la table tbl_Title avec TID PK et obtenir le champ Titre .
Merci beaucoup