Skip to content

Instantly share code, notes, and snippets.

@appcoreopc
Created August 14, 2020 19:18
Show Gist options
  • Save appcoreopc/bffef3a7cb367d0d18295e89bacdfd1e to your computer and use it in GitHub Desktop.
Save appcoreopc/bffef3a7cb367d0d18295e89bacdfd1e to your computer and use it in GitHub Desktop.
var entryPoint = (from ep in dbContext.tbl_EntryPoint
join e in dbContext.tbl_Entry on ep.EID equals e.EID
join t in dbContext.tbl_Title on e.TID equals t.TID
where e.OwnerID == user.UID
select new {
UID = e.OwnerID,
TID = e.TID,
Title = t.Title,
EID = e.EID
}).Take(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment